/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2440;
  --primary-light: #2a5a8c;
  --accent: #c9a84c;
  --accent-light: #dfc06a;
  --text: #2d3748;
  --text-light: #718096;
  --text-white: #f7fafc;
  --bg: #ffffff;
  --bg-light: #f8f9fb;
  --bg-dark: #0f2440;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

.highlight {
  color: var(--accent);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}

.btn--primary {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--white {
  background: #fff;
  color: var(--primary-dark);
  border-color: #fff;
  font-weight: 700;
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.btn--whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header--scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
}

.logo__tagline {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary);
}

.nav__link--cta {
  background: var(--accent);
  color: var(--primary-dark) !important;
  font-weight: 600;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 720px;
}

.hero__subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__trust {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
}

.hero__trust-item strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.hero__trust-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== SOBRE ===== */
.sobre {
  padding: 100px 0;
  background: var(--bg);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.sobre__photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sobre__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre__content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.sobre__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.sobre__highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sobre__highlight-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre__highlight-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.sobre__highlight-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.sobre__highlight-item span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== AREAS ===== */
.areas {
  padding: 100px 0;
  background: var(--bg-light);
}

.areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.area-card {
  background: var(--bg);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.area-card:hover::before {
  transform: scaleX(1);
}

.area-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.area-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--text-white);
}

.area-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.area-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.area-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.area-card__link:hover {
  color: var(--primary);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.cta-section__inner {
  text-align: center;
}

.cta-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: 100px 0;
  background: var(--bg);
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.depoimento-card {
  background: var(--bg-light);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.depoimento-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.depoimento-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.depoimento-card__stars svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.depoimento-card__text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.depoimento-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depoimento-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.depoimento-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.depoimento-card__author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== CONTATO ===== */
.contato {
  padding: 100px 0;
  background: var(--bg-light);
}

.contato__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.contato__form {
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
}

.contato__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contato__info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contato__info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(26, 58, 92, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contato__info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.contato__info-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--primary-dark);
}

.contato__info-card a,
.contato__info-card span {
  font-size: 0.88rem;
  color: var(--text-light);
}

.contato__info-card a:hover {
  color: var(--accent);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  padding-top: 60px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 300px;
}

.footer__brand .logo__name {
  color: #fff;
}

.footer h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer__links a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__social-icons {
  display: flex;
  gap: 12px;
}

.footer__social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer__social-icons a:hover {
  background: var(--accent);
}

.footer__social-icons svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__social-icons a:hover svg {
  color: var(--primary-dark);
}

.footer__bottom {
  padding: 20px 0;
}

.footer__bottom p {
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible,
.no-js .fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FORM SUCCESS ===== */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  width: 60px;
  height: 60px;
  color: #25D366;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .areas__grid,
  .depoimentos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    transform: translateY(-110%);
    transition: var(--transition);
    box-shadow: var(--shadow);
  }

  .nav.open {
    transform: translateY(0);
  }

  .nav__list {
    flex-direction: column;
    gap: 4px;
  }

  .nav__link {
    display: block;
    padding: 12px 16px;
  }

  .nav__link--cta {
    text-align: center;
    margin-left: 0;
    margin-top: 8px;
  }

  .hero__content {
    padding: 100px 0 60px;
  }

  .hero__trust {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    text-align: center;
    justify-content: center;
  }

  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre__image {
    max-width: 320px;
    margin: 0 auto;
  }

  .areas__grid,
  .depoimentos__grid {
    grid-template-columns: 1fr;
  }

  .contato__grid {
    grid-template-columns: 1fr;
  }

  .contato__form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero__trust {
    flex-direction: column;
    gap: 16px;
  }

  .hero__trust-item {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .hero__trust-item strong {
    font-size: 1.5rem;
  }
}
