/* Home — maurobueno.com (mesmo espírito do currículo) */

.home-page p {
  color: var(--cv-text);
  font-size: 1rem;
  line-height: 1.65;
}

.home-top-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
}

.home-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 0.85rem;
}

.home-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.home-nav a:hover {
  color: var(--cv-gold);
}

.home-nav .cv-btn {
  margin-left: 0.25rem;
}

.home-hero {
  padding: 2.5rem 0 1rem;
  background: linear-gradient(160deg, #fff 0%, #eef3f7 100%);
  border-bottom: 1px solid var(--cv-border);
}

.home-hero-card {
  background: var(--cv-card);
  border: 1px solid var(--cv-border);
  border-radius: var(--cv-radius);
  box-shadow: var(--cv-shadow);
  padding: 2rem 2.25rem;
  position: relative;
  overflow: hidden;
}

.home-hero-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--cv-accent), var(--cv-navy));
}

.home-hero-main {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.home-photo {
  width: 160px;
  height: 160px;
  flex: 0 0 auto;
}

.home-kicker {
  color: var(--cv-navy) !important;
  font-size: 0.88rem !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem !important;
}

.home-hero-text h1 {
  font-family: "PoppinsTitle", "Poppins", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: var(--cv-navy);
  line-height: 1.25;
  margin: 0 0 0.85rem;
}

.home-lead {
  color: var(--cv-muted) !important;
  font-size: 1.05rem !important;
  max-width: 46rem;
  margin-bottom: 1.25rem !important;
}

.home-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.home-btn-dark {
  background: var(--cv-navy);
  color: #fff !important;
  border: 1px solid var(--cv-navy);
}

.home-btn-dark:hover {
  background: var(--cv-navy-deep);
  color: #fff !important;
}

.home-btn-ghost {
  background: transparent;
  color: var(--cv-navy) !important;
  border: 1px solid var(--cv-border);
}

.home-btn-ghost:hover {
  border-color: var(--cv-navy);
  background: #f0f5f9;
  color: var(--cv-navy) !important;
}

.home-btn-ghost-light {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.home-btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}

.home-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  font-size: 0.92rem;
  color: var(--cv-muted);
}

.home-meta a {
  color: var(--cv-navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.home-meta a:hover {
  border-bottom-color: var(--cv-navy);
}

.home-section {
  padding: 3rem 0;
}

.home-section-alt {
  background: #fff;
  border-top: 1px solid var(--cv-border);
  border-bottom: 1px solid var(--cv-border);
}

.home-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.home-section-head.text-start {
  margin-left: 0;
  text-align: left;
}

.home-section-head h2 {
  font-family: "PoppinsTitle", "Poppins", sans-serif;
  font-size: 1.55rem;
  color: var(--cv-navy);
  margin-bottom: 0.5rem;
}

.home-section-head p {
  color: var(--cv-muted) !important;
  margin: 0;
}

.home-about-text {
  color: var(--cv-text) !important;
  margin-bottom: 1rem !important;
}

.home-card {
  background: var(--cv-card);
  border: 1px solid var(--cv-border);
  border-radius: var(--cv-radius);
  box-shadow: var(--cv-shadow);
  padding: 1.5rem 1.4rem;
  height: 100%;
}

.home-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cv-navy), var(--cv-navy-deep));
  color: var(--cv-gold);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.home-card h3 {
  font-family: "PoppinsTitle", "Poppins", sans-serif;
  font-size: 1.15rem;
  color: var(--cv-navy);
  margin-bottom: 0.65rem;
}

.home-card p {
  color: var(--cv-muted) !important;
  font-size: 0.95rem !important;
  margin-bottom: 0.85rem !important;
}

.home-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.home-card li {
  color: var(--cv-text);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.home-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.home-stat {
  background: var(--cv-card);
  border: 1px solid var(--cv-border);
  border-radius: var(--cv-radius);
  box-shadow: var(--cv-shadow);
  padding: 1.25rem 1.1rem;
}

.home-stat strong {
  display: block;
  font-family: "PoppinsTitle", "Poppins", sans-serif;
  font-size: 1.8rem;
  color: var(--cv-navy);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.home-stat span {
  color: var(--cv-muted);
  font-size: 0.9rem;
}

.home-cv-banner {
  background: linear-gradient(135deg, var(--cv-navy-deep), var(--cv-navy));
  color: #fff;
  border-radius: var(--cv-radius);
  padding: 2rem 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  box-shadow: var(--cv-shadow);
}

.home-cv-banner h2 {
  font-family: "PoppinsTitle", "Poppins", sans-serif;
  font-size: 1.45rem;
  margin: 0 0 0.4rem;
  color: #fff;
}

.home-cv-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 32rem;
}

.home-cv-banner .home-cta-row {
  margin-bottom: 0;
}

/* Footer */
.home-footer {
  background: linear-gradient(135deg, var(--cv-navy-deep), #0a2233);
  color: #fff;
  padding: 3rem 0 1.5rem;
  margin-top: 1rem;
}

.home-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.home-footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 4px;
}

.home-footer-brand strong {
  display: block;
  font-family: "PoppinsTitle", "Poppins", sans-serif;
  font-size: 1.05rem;
}

.home-footer-brand span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.home-footer-note {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.92rem !important;
  margin: 0;
}

.home-footer-title {
  font-family: "PoppinsTitle", "Poppins", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cv-gold);
  margin-bottom: 0.85rem;
}

.home-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-footer-list li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.home-footer-list a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.home-footer-list a:hover {
  color: var(--cv-gold);
  border-bottom-color: var(--cv-gold);
}

.home-footer-partner {
  margin-top: 1.25rem;
}

.home-footer-partner img {
  width: 88px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.home-footer-partner a:hover img {
  opacity: 1;
}

.home-footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 991.98px) {
  .home-top-actions,
  .home-nav {
    justify-content: flex-start;
  }

  .home-top-actions {
    margin-top: 0.75rem;
  }
}

@media (max-width: 767.98px) {
  .home-hero-main {
    flex-direction: column;
    text-align: center;
  }

  .home-cta-row,
  .home-meta {
    justify-content: center;
  }

  .home-hero-card {
    padding: 1.5rem;
  }

  .home-photo {
    width: 130px;
    height: 130px;
  }

  .home-cv-banner {
    padding: 1.5rem;
    text-align: center;
    justify-content: center;
  }

  .home-cv-banner .home-cta-row {
    justify-content: center;
  }

  .home-stats {
    grid-template-columns: 1fr 1fr;
  }
}
