:root{
    --bg:#0b0c0d;
    --surface:#101214;
    --surface2:#0e1011;
    --text:rgba(255,255,255,.92);
    --muted:rgba(255,255,255,.70);
    --muted2:rgba(255,255,255,.55);
  
    --gold:#c9a44c;
    --gold-soft:#d8bf7a;
    --border:rgba(201,164,76,.22);
    --border-strong:rgba(201,164,76,.35);
  
    --shadow: 0 18px 45px rgba(0,0,0,.55);
    --radius-lg: 22px;
    --radius-md: 16px;
  
    --display:"Playfair Display", serif;
    --body:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }
  
  /* Reset */
  *{ box-sizing:border-box; }
  html,body{ height:100%; }
  body{
    margin:0;
    font-family:var(--body);
    color:var(--text);
    background:
      radial-gradient(1200px 600px at 50% -10%, rgba(201,164,76,.10), transparent 60%),
      radial-gradient(900px 500px at 15% 20%, rgba(255,255,255,.06), transparent 55%),
      radial-gradient(900px 500px at 85% 65%, rgba(255,255,255,.04), transparent 55%),
      var(--bg);
  }

  :root {
    --accent-gold: #d9b748;
  }
  
  .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(--accent-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(--accent-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(--accent-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;
    }
  }
  
  @media (max-width: 560px) {
    .header-inner {
      padding-inline: 14px;
    }
  }
  
  /* Container */
  .container{
    width:min(1120px, 92vw);
    margin-inline:auto;
  }
  
  /* Helpers */
  .center{ text-align:center; }
  .narrow{ width:min(620px, 92vw); }
  .muted{ color:var(--muted2); }
  .highlight{ color:var(--gold); font-weight:600; }
  
  /* HERO */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
  
    background:
      /* Degradé inferior fuerte */
      linear-gradient(
        to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.55) 35%,
        rgba(0,0,0,0.25) 55%,
        rgba(0,0,0,0.0) 75%
      ),
  
      /* Oscurecimiento lateral izquierdo */
      linear-gradient(
        to right,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.45) 25%,
        rgba(0,0,0,0.15) 50%,
        rgba(0,0,0,0.0) 70%
      );
  }

  /* HERO TEXT SECTION */
.hero-text-section {
    padding-top: 70px;
    padding-bottom: 20px;
  }
  
  .hero-kicker {
    letter-spacing: .28em;
    font-size: 11px;
    color: rgba(255,255,255,.55);
    margin-bottom: 18px;
  }
  
  .hero-main-title {
    font-family: var(--display);
    font-size: clamp(44px, 5vw, 72px);
    margin: 0 0 18px;
    background: linear-gradient(90deg, var(--gold), #fff1c8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .hero-main-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,.78);
    margin: 0;
  }
  /* Sections */
  .section{
    padding: 92px 0;
  }
  .section-surface{
    background:
      radial-gradient(850px 420px at 50% 0%, rgba(255,255,255,.05), transparent 60%),
      var(--surface);
  }
  .section-title{
    font-family: var(--display);
    font-weight:600;
    margin:0 0 10px;
    font-size: clamp(30px, 3.3vw, 48px);
    background: linear-gradient(90deg, var(--gold), #fff1c8);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }
  .section-subtitle{
    margin: 0 auto 44px;
    max-width: 700px;
    color: var(--muted2);
    font-weight:400;
    font-size: 14px;
    line-height: 1.8;
  }
  
  .body-text{
    margin:0;
    font-size: 15px;
    line-height: 1.85;
    font-weight:300;
    color: rgba(255,255,255,.86);
  }
  
  /* Intro boxed */
  .boxed{
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    background: rgba(255,255,255,.015);
  }
  
  /* Cards (Durante 3 dias...) */
  .cards-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .icon-card{
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 18px;
    background: rgba(255,255,255,.015);
    transition: background .22s ease, border-color .22s ease, transform .22s ease;
  }
  .icon-card:hover{
    background: rgba(201,164,76,.06);
    border-color: rgba(201,164,76,.35);
    transform: translateY(-2px);
  }
  .icon-wrap{
    width: 34px;
    height: 34px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    margin-bottom: 10px;
    color: var(--gold);
  }
  .lucide{
    width: 26px;
    height: 26px;
    stroke: currentColor;
    stroke-width: 1.9;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .card-text{
    margin:0;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,.88);
    font-weight: 500;
  }
  
  /* Statement */
  .statement{
    margin:0;
    font-family: var(--display);
    font-size: clamp(22px, 2.6vw, 38px);
    font-style: italic;
    line-height: 1.35;
    color: var(--gold-soft);
  }
  
  /* Two col section (Para quem é) */
  .two-col{
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 64px;
    align-items:center;
  }
  .dot-list{
    list-style:none;
    padding:0;
    margin: 22px 0 0;
    display:flex;
    flex-direction:column;
    gap: 14px;
  }
  .dot-list li{
    display:flex;
    gap: 12px;
    align-items:flex-start;
    color: rgba(255,255,255,.82);
    font-size: 13px;
    line-height: 1.65;
  }
  .dot{
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--gold);
    margin-top: 7px;
    flex: 0 0 auto;
  }
  .quote-box{
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 26px 26px 28px;
    background: rgba(255,255,255,.012);
    min-height: 140px;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  .quote-mark{
    font-family: var(--display);
    font-size: 54px;
    line-height: 1;
    color: rgba(201,164,76,.25);
    margin-bottom: 6px;
  }
  .quote-box p{
    margin:0;
    color: rgba(255,255,255,.86);
    font-weight:300;
    font-size: 14px;
    line-height: 1.75;
  }
  
  /* Pills grid (O que vais viver...) */
  .pill-grid{
    width: min(820px, 92vw);
    margin: 0 auto;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .pill{
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,.012);
    color: rgba(255,255,255,.88);
    font-size: 13px;
    text-align:left;
    transition: background .2s ease, border-color .2s ease;
  }
  .pill:hover{
    background: rgba(201,164,76,.06);
    border-color: rgba(201,164,76,.35);
  }
  .footnote{
    margin: 34px 0 0;
    color: rgba(255,255,255,.55);
    font-style: italic;
    font-size: 12.5px;
  }
  
  /* Dates section */
  .date-title{
    margin: 8px 0 18px;
    font-family: var(--display);
    font-weight:600;
    font-size: clamp(34px, 4.2vw, 64px);
    color: var(--gold-soft);
  }
  .meta{
    margin: 0 0 6px;
    font-size: 14px;
    color: rgba(255,255,255,.78);
  }
  .meta-strong{ color: var(--gold); }
  
  /* How to register */
  .info-list{
    width: min(420px, 92vw);
    margin: 0 auto;
    display:flex;
    flex-direction:column;
    gap: 12px;
    text-align:left;
  }
  .info-item{
    display:flex;
    gap: 12px;
    align-items:flex-start;
    font-size: 13px;
    color: rgba(255,255,255,.78);
    line-height: 1.6;
  }
  
  /* Buttons */
  .cta-row{
    margin-top: 26px;
    display:flex;
    gap: 14px;
    justify-content:center;
    flex-wrap:wrap;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 12px 26px;
    border-radius: 999px;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:.12em;
    font-weight:700;
    font-size: 12px;
    transition: transform .18s ease, filter .18s ease, background .18s ease, border-color .18s ease;
  }
  .btn:hover{ transform: translateY(-2px); }
  .btn-primary{
    background: var(--gold);
    color: rgba(11,12,13,.96);
    box-shadow: 0 18px 35px rgba(0,0,0,.45);
  }
  .btn-primary:hover{ filter: brightness(1.05); }
  .btn-outline{
    border: 1.5px solid rgba(255,255,255,.28);
    color: rgba(255,255,255,.92);
    background: transparent;
  }
  .btn-outline:hover{
    border-color: rgba(255,255,255,.48);
    background: rgba(255,255,255,.04);
  }
  
  /* Footer */
  .site-footer{
    padding: 34px 0 44px;
    border-top: 1px solid rgba(255,255,255,.06);
    background: rgba(11,12,13,.55);
  }
  .footer-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 16px;
  }
  .footer-brand{
    font-family: var(--display);
    color: rgba(255,255,255,.85);
  }
  .footer-text{
    color: rgba(255,255,255,.55);
    font-size: 13px;
  }
  
  /* WhatsApp */
  .whatsapp-float{
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #25d366;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 18px 35px rgba(0,0,0,.45);
    z-index: 80;
    transition: transform .18s ease, filter .18s ease;
  }
  .whatsapp-float:hover{
    transform: translateY(-2px);
    filter: brightness(1.03);
  }
  
  /* Animations */
  @keyframes fadeUp {
    from { opacity:0; transform: translateY(14px); }
    to   { opacity:1; transform: translateY(0); }
  }
  .animate-fade-in-up{
    opacity:0;
    animation: fadeUp .7s ease forwards;
  }
  
  /* Responsive */
  .md-hidden{ display:none; }
  
  @media (max-width: 980px){
    .cards-grid{ grid-template-columns: 1fr 1fr; }
    .two-col{ grid-template-columns: 1fr; gap: 26px; }
    .quote-box{ min-height: auto; }
  }
  
  @media (max-width: 768px){
    .md-hidden{ display:inline-flex; }
  
    /* Drawer nav */
    .nav{
      position: fixed;
      top:0;
      right:0;
      height: 100vh;
      width: min(360px, 82vw);
      background: rgba(11,12,13,.98);
      border-left: 1px solid rgba(255,255,255,.06);
      flex-direction: column;
      align-items: flex-start;
      gap: 18px;
      padding: 78px 22px 22px;
      transform: translateX(110%);
      transition: transform .25s ease;
      z-index: 70;
    }
    .nav.open{ transform: translateX(0); }
  
    .nav-close{
      position:absolute;
      top: 18px;
      right: 18px;
    }
  
    .dropdown-menu{
      position: static;
      width: 100%;
      box-shadow: none;
      margin-top: 10px;
      border-radius: 14px;
    }
    .dropdown-btn{ width: 100%; justify-content: space-between; }
  
    .hero-sub{ margin-bottom: 58px; }
    .pill-grid{ grid-template-columns: 1fr; }
  }
  
  @media (max-width: 520px){
    .cards-grid{ grid-template-columns: 1fr; }
    .footer-inner{ flex-direction: column; align-items:flex-start; }
  }


  .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-col {
    display: flex;
    flex-direction: column;
  }
  
  .ev-footer-logo {
    display: block;
    max-width: 190px;
    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;
  }
  
  /* ======= FOOTER RESPONSIVE FIX ======= */
  
  /* Tablet y menos */
  @media (max-width: 992px) {
    .ev-footer-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }
  
    .ev-footer-logo {
      margin-left: auto;
      margin-right: auto;
    }
  
    .ev-footer-text {
      margin-left: auto;
      margin-right: auto;
    }
  }
  
  /* Mobile chico */
  @media (max-width: 560px) {
    .ev-footer {
      padding: 50px 0 24px;
    }
  
    .ev-footer-title {
      margin-top: 10px;
    }
  
    .ev-footer-links li,
    .ev-footer-contact li {
      margin-bottom: 6px;
    }
  }