/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HEADER */
.header {
  width: 100%;
  background: #f8f8f8;
  padding: 40px 120px;
}

/* NAV */
.nav {
   font-family: 'Cormorant Garamond', sans-serif !important;
   font-weight: 700;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
}

/* MENUS */
.nav-left,
.nav-right {
   font-family: 'Cormorant Garamond', sans-serif !important;
   font-weight: 700;
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav ul {
  list-style: none;
}

/* LINKS */
.nav a {
  font-family: 'Cormorant Garamond', sans-serif !important;
  font-weight: 700;
  text-decoration: none;
  color: #666;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s;
}

/* HOVER LINHA */
.nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #ca7cb0;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.logo a::after {
  content: none !important;
}

/* LOGO */
.logo {
  
 position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.logo img {
  max-height: 90px;
  width: auto;
  display: block;
}

/* manter centrado no desktop */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

/* MENU ESCONDIDO */
.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  background: white;
  border-radius: 10px;
  padding: 10px 0;
  min-width: 200px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;

  list-style: none;
}

/* ITENS */
.dropdown-menu li {
  padding: 10px 20px;
}

.dropdown-menu a {
  font-family: 'Cormorant Garamond', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: none;
}

/* HOVER MOSTRAR */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* evitar desaparecer ao mover rato */
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
}
 :root {
            --primary-color: #2c2c2c;
            --accent-color: #8d754a; /* Tom dourado suave */
            --bg-color: #f9f9f9;
            --text-light: #666;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Lato', sans-serif;
            background-color: var(--bg-color);
            color: var(--primary-color);
        }

     .faq-editorial {
        padding: 120px 0;
        background-color: #fff;
        font-family: 'Lato', sans-serif;
    }

    .faq-wrapper {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.5fr; /* Coluna da esquerda mais estreita */
        gap: 80px;
        padding: 0 20px;
    }

    /* Lado Esquerdo: Título Fixo ou Imagem Estilizada */
    .faq-sidebar h2 {
        font-family: 'Playfair Display', serif;
        font-size: 3.5rem;
        line-height: 1.1;
        top: 50px;
        text-transform: uppercase;
        letter-spacing: -2px;
    }

    .faq-sidebar p {
        margin-top: 30px;
        font-style: italic;
        color: var(--accent-color);
        font-size: 1.2rem;
    }

    /* Lado Direito: As Perguntas */
    .faq-item {
        margin-bottom: 80px;
    }

    .faq-question {
        font-family: 'Playfair Display', serif;
        font-size: 1.6rem;
        margin-bottom: 25px;
        display: block;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        color: var(--primary-color);
    }

    /* O toque de personalidade: Drop Cap (Capitular) */
    .faq-answer {
        line-height: 2;
        color: var(--text-light);
        font-size: 1.05rem;
        text-align: justify;
    }

    .faq-answer::first-letter {
        font-family: 'Playfair Display', serif;
        font-size: 3.5rem;
        float: left;
        margin-right: 15px;
        line-height: 1;
        color: var(--accent-color);
        font-weight: 400;
    }

    /* Imagem de Interrupção para dar ritmo */
    .faq-divider-img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        margin: 40px 0;
        filter: sepia(20%);
    }
   /* BOTÃO HAMBURGUER */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MENU MOBILE */
.mobile-menu {
   font-family: 'Cormorant Garamond', sans-serif !important;
   font-weight: 700;
 position: absolute;
  top: 80px;
  right: 20px;
  width: 260px;

  background: white;
  border-radius: 12px;
  padding: 20px;

  display: none;
  flex-direction: column;

  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  z-index: 9999;
  position: absolute;

  animation: slideDown 0.3s ease;
}

.mobile-menu a {
   font-family: 'Cormorant Garamond', sans-serif !important;
   font-weight: 700;
   padding: 15px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #666;
  font-size: 14px;
  letter-spacing: 2px;
  pointer-events: auto;
}

/* DROPDOWN MOBILE */
.mobile-btn {
   font-family: 'Cormorant Garamond', sans-serif !important;
   font-weight: 700;
  width: 100%;
  text-align: left;
  padding: 12px 0;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.mobile-content {
  display: none;
  flex-direction: column;
  padding-left: 15px;
}

/* ATIVAR */
.mobile-menu.active {
  display: flex;
}

footer {
        background-color: #f9f9f9;
        padding: 80px 20px 40px 20px;
        border-top: 1px solid #eee;
        font-family: 'Lato', sans-serif;
        color: var(--primary-color);
    }

    .footer-grid {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 60px;
    }

    .footer-logo h2 {
        font-family: 'Playfair Display', serif;
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-bottom: 20px;
    }

    .footer-section h4 {
        font-family: 'Playfair Display', serif;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.9rem;
        margin-bottom: 25px;
        color: var(--accent-color);
    }

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

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        text-decoration: none;
        color: var(--text-light);
        transition: color 0.3s;
        font-size: 0.9rem;
    }

    .footer-links a:hover {
        color: var(--primary-color);
    }

    .footer-bottom {
        max-width: 1100px;
        margin: 60px auto 0 auto;
        padding-top: 30px;
        border-top: 1px solid #e0e0e0;
        display: flex;
        justify-content: space-between;
        font-size: 0.75rem;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer-logo img {
    max-width: 180px; /* Ajusta o tamanho do logo conforme o teu gosto */
    height: auto;
    margin-bottom: 20px;
}

/* RESPONSIVO */
/* RESPONSIVO */
@media (max-width: 900px) {

  /* HEADER */
  .nav-left,
  .nav-right {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: 20px;
  }

  .header {
    padding: 20px;
  }

  .nav {
    justify-content: space-between;
  }

  .logo {
    position: static;
    transform: none;
    margin: 0 auto;
    text-align: center;
  }

  /* FAQ LAYOUT */
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-sidebar {
    text-align: center;
  }

  .faq-sidebar h2 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .faq-sidebar p {
    font-size: 1rem;
  }

  .faq-sidebar img {
    margin-top: 30px;
  }

  /* PERGUNTAS */
  .faq-item {
    margin-bottom: 50px;
  }

  .faq-question {
    font-size: 1.3rem;
  }

  .faq-answer {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  /* DROP CAP MENOS AGRESSIVO */
  .faq-answer::first-letter {
    font-size: 2.2rem;
    margin-right: 10px;
  }

  /* IMAGENS */
  .faq-divider-img {
    height: 200px;
    margin: 30px 0;
  }

  /* MENU MOBILE */
  .mobile-menu a,
  .mobile-btn {
    font-family: 'Cormorant Garamond', sans-serif;
    letter-spacing: 2px;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

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

  .logo-footer {
    max-width: 200px;
    margin-bottom: 20px;
  }

  .footer-logo p {
    max-width: 300px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
  }
}
    @keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}