/* RESET BÁSICO */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background: #f5f1e8;
  color: #1d1d1d;
}

/* PALETA */
:root {
  --ev-bg: #f5f1e8;
  --ev-bg-soft: #fbf8f1;
  --ev-card: #ffffff;
  --ev-dark: #101010;

  /* antes: #2c3f26 y #d7ae4b */
  --ev-green: #D9B748;  /* color principal nuevo */
  --ev-gold:  #D9B748;  /* mismo tono para todo el acento */

  --ev-border-soft: #efe5d6;
}


/* CONTAINER GENÉRICO */
.ev-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* ================= HEADER ================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 42px;
  display: block;
}

/* NAV */
.header-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

/* links e dropdown */
.nav-link,
.dropdown-toggle {
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

/* sublinhado animado */
.nav-link::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--ev-gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.dropdown-toggle:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.dropdown-toggle:hover,
.nav-link.active {
  color: var(--ev-gold);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.chevron {
  font-size: 0.7rem;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.25s ease;
}

.dropdown-menu {
  position: absolute;
  top: 32px;
  left: 0;
  min-width: 190px;
  background: #181818;
  border-radius: 10px;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  z-index: 1000;
}

.dropdown-menu a {
  color: #f5f5f5;
  font-size: 0.95rem;
  padding: 9px 18px;
  text-decoration: none;
  display: block;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active-sub {
  background: rgba(217, 183, 72, 0.14);
  color: var(--ev-gold);
  transform: translateX(2px);
}

.nav-dropdown:hover .dropdown-menu {
  display: flex;
}

.nav-dropdown:hover .chevron {
  transform: rotate(180deg);
}

/* Hamburguer (desktop: escondido) */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
}

.mobile-menu-btn span {
  width: 26px;
  height: 2px;
  background: #ffffff;
  display: block;
  border-radius: 3px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Botão X (só mobile) */
.mobile-close-btn {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 26px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
}

/* =================== RESPONSIVE MENU =================== */

@media (max-width: 900px) {
  .mobile-menu-btn {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 360px;
    height: 100vh;
    background: #101010;
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 32px 40px;
    gap: 24px;
    transition: right 0.35s ease;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }

  .header-nav.open {
    right: 0;
  }

  .mobile-close-btn {
    display: block;
  }

  .nav-link,
  .dropdown-toggle {
    font-size: 1.05rem;
    width: 100%;
  }

  /* dropdown como acordeão */
  .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown-toggle.active + .dropdown-menu {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0 0 0 10px;
  }

  .dropdown-menu a {
    padding-left: 12px;
  }
}


/* ================= HERO ================= */

.ev-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

/* fondo hero (imagen) */
.ev-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/images/conversas/imersoes/hero.png"); /* AJUSTA AQUÍ LA IMAGEN */
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

/* overlay */
.ev-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

/* Conteúdo */
.ev-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 140px;
}

.ev-hero-content {
 max-width: 640px;
  padding: 0px;
  
}

.ev-label {
   text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  color: var(--ev-gold); /* #D9B748 */
  margin-bottom: 16px;
}

.ev-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3.4rem;
  line-height: 1.1;
  color: var(--ev-gold); /* #D9B748 */
  margin: 0;
}

.ev-hero-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
  max-width: 42rem;
  margin-top: 24px;
}

/* Botones hero compartidos con todo */
.ev-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ================= BOTONES GENERALES ================= */

.ev-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.ev-btn-primary {
  background: #ffffff;
  color: #111;
  border-color: #ffffff;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.4);
}

.ev-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.ev-btn-ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.ev-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ================= SEÇÕES GERAIS ================= */

.ev-section {
  padding: 80px 0;
}

/* ================= SOBRE AS IMERSÕES ================= */

.ev-sobre {
  background: var(--ev-bg);
}

.ev-sobre-card {
  background: var(--ev-card);
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--ev-border-soft);
  margin-top: -50px;
  margin-bottom: 48px;
  position: relative;
}

.ev-sobre-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #3a3a3a;
}

.ev-sobre-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 40px;
}

.ev-sobre-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--ev-green);
}

.ev-sobre-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ev-sobre-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #3f3f3f;
}

.ev-sobre-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--ev-green);
}

/* highlight box direita */
.ev-sobre-col-highlight {
  display: flex;
  align-items: center;
}

.ev-sobre-highlight {
  background: var(--ev-bg-soft);
  border-radius: 14px;
  padding: 22px 24px;
  border: 1px solid var(--ev-border-soft);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
  position: relative;
}

.ev-sobre-highlight-badge {
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, var(--ev-green), transparent);
}

.ev-sobre-highlight p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ================= TÍTULOS DE SEÇÃO ================= */

.ev-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.ev-section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin-bottom: 8px;
  color: var(--ev-green);
}

.ev-section-subtitle {
  font-size: 0.98rem;
  color: #666;
}

/* ================= GALERIA ================= */

.ev-galeria {
  background: #f7f8fa;
}

.ev-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-item {
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* ================= LIGHTBOX ================= */

.ev-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.ev-lightbox.is-open {
  display: flex;
}

.ev-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.ev-lightbox-image {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Botones lightbox */
.ev-lightbox-close,
.ev-lightbox-prev,
.ev-lightbox-next {
  position: absolute;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.ev-lightbox-close {
  top: 28px;
  right: 28px;
}

.ev-lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.ev-lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* ================= VÍDEO VERTICAL ================= */

.ev-video {
  background: #ffffff;
}

.ev-video-card {
  max-width: 420px;
  margin: 0 auto;
  background: #f5f1e8;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.ev-video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}

.ev-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= CTA ================= */

.ev-cta {
  background: #f7f8fa;
  padding: 70px 0;
}

.ev-cta-inner {
  text-align: center;
}

.ev-cta-inner h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin-bottom: 20px;
  color: var(--ev-green);
}

/* ================= FOOTER ================= */

.ev-footer {
  background: #f0e8d3;
  padding: 60px 0 30px;
  font-size: 0.95rem;
}

.ev-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}

.ev-footer-logo {
  display: block;
  max-width: 190px;     /* ajusta el ancho del logo si hace falta */
  height: auto;
  margin: 0 0 12px;
}


.ev-footer-text {
  margin: 0;
  max-width: 360px;
  color: #444;
  line-height: 1.7;
}

.ev-footer-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  color: #555;
}

.ev-footer-links,
.ev-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ev-footer-links li,
.ev-footer-contact li {
  margin-bottom: 8px;
}

.ev-footer-links a {
  text-decoration: none;
  color: #333;
  transition: transform 0.2s ease, color 0.2s ease;
}

.ev-footer-links a:hover {
  color: var(--ev-green);
  transform: translateX(3px);
}

.ev-footer-contact li {
  color: #333;
}

.ev-footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: #666;
}

.ev-footer-bottom strong {
  color: #333;
}

/* ================= RESPONSIVO ================= */

@media (max-width: 960px) {
  .ev-sobre-grid {
    grid-template-columns: 1fr;
  }

  .ev-sobre-card {
    margin-top: -30px;
  }

  .ev-hero-inner {
    padding-bottom: 70px;
  }

  .ev-hero-content {
    max-width: 460px;
  }
}

@media (max-width: 800px) {
  .ev-nav-toggle {
    display: flex;
  }

  .ev-nav {
    position: absolute;
    top: 62px;
    right: 20px;
    background: rgba(0, 0, 0, 0.85);
    padding: 14px 20px;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    gap: 12px;
  }

  .ev-nav.open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .ev-hero-inner {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .ev-hero-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 18px 24px;
  }

  .ev-hero-title {
    font-size: 2.2rem;
  }

  .ev-hero-actions {
    flex-direction: column;
  }

  .ev-btn {
    width: 100%;
    justify-content: center;
  }

  .ev-section {
    padding: 60px 0;
  }

  .ev-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .ev-footer-text {
    margin: 0 auto;
  }
}

/* ================= BOTÓN WHATSAPP FLOTANTE ================= */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45);
  text-decoration: none;
  z-index: 1000;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.6);
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 20px;
    bottom: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}