    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --black:    #0a0b0d;
      --navy:     #0d1b2a;
      --blue:     #1a6fa8;
      --blue-lt:  #4db8e8;
      --silver:   #c0ccd8;
      --orange:   #e8883a;
      --gold:     #d4a853;
      --white:    #eef2f7;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Josefin Sans', sans-serif;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── PHOTO BG ── */
    #photo-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      /* background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=80'); */
      background-image: url('imgs/vista_camaroeiro.jpg');
      background-size: cover;
      background-position: center 60%;
      filter: brightness(0.28) saturate(1.3) hue-rotate(195deg);
    }

    /* ── CANVAS BG (overlay animado) ── */
    #bg-canvas {
      position: fixed;
      inset: 0;
      z-index: 1;
      opacity: 0.45;
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 1;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.035;
      pointer-events: none;
    }

    /* ── VIGNETTE ── */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 2;
      background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.75) 100%);
      pointer-events: none;
    }

    /* ── WRAPPER ── */
    .wrapper {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 100vh;
      padding: 0 1.5rem;
    }

    /* ── HEADER / NAV ── */
    header {
      width: 100%;
      max-width: 1100px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 2rem 0 1rem;
      border-bottom: 1px solid rgba(192,204,216,0.12);
      animation: fadeDown 1s ease both;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 1rem;
      text-decoration: none;
    }

    .logo-icon {
      width: 52px;
      height: 52px;
      position: relative;
      flex-shrink: 0;
    }

    .logo-icon svg { width: 100%; height: 100%; }

    .logo-text { line-height: 1; }
    .logo-text span { display: block; }
    .logo-text .portal {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 300;
      font-size: 0.7rem;
      letter-spacing: 0.35em;
      color: var(--silver);
      text-transform: uppercase;
    }
    .logo-text .name {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 1.9rem;
      color: var(--white);
      letter-spacing: 0.05em;
    }
    .logo-text .name em {
      color: var(--orange);
      font-style: normal;
    }
    .logo-text .tagline {
      font-size: 0.55rem;
      letter-spacing: 0.2em;
      color: var(--gold);
      text-transform: uppercase;
      margin-top: 10px;
    }

    .badge {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(26,111,168,0.12);
      border: 1px solid rgba(77,184,232,0.25);
      border-radius: 999px;
      padding: 0.5rem 1.2rem;
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      color: var(--blue-lt);
      text-transform: uppercase;
    }
    .badge-dot {
      width: 7px; height: 7px;
      background: var(--orange);
      border-radius: 50%;
      animation: pulse 2s ease infinite;
    }

    /* ── HERO ── */
    .hero {
      width: 100%;
      max-width: 860px;
      text-align: center;
      padding: 5rem 0 3.5rem;
      animation: fadeUp 1.2s ease 0.3s both;
    }

    .hero-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.4em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 0.3rem;
    }

    .hero h1 strong {
      font-weight: 700;
      color: var(--blue-lt);
      display: block;
    }

    .hero-script {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      color: var(--orange);
      display: block;
      margin: 0.2rem 0 1.8rem;
      line-height: 1.3;
    }

    .hero-desc {
      font-size: 1rem;
      font-weight: 300;
      color: var(--silver);
      line-height: 1.75;
      max-width: 620px;
      margin: 0 auto 2.8rem;
    }
    .hero-desc strong { color: var(--white); font-weight: 600; }

    /* ── DIVIDER LINE ── */
    .divider {
      width: 100%;
      max-width: 860px;
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 3rem;
      opacity: 0.4;
    }
    .divider::before, .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--blue-lt), transparent);
    }
    .divider-diamond {
      width: 6px; height: 6px;
      background: var(--orange);
      transform: rotate(45deg);
    }

    /* ── PILLARS ── */
    .pillars {
      width: 100%;
      max-width: 960px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.2rem;
      margin-bottom: 4rem;
      animation: fadeUp 1.2s ease 0.6s both;
    }

    .pillar {
      background: rgba(13,27,42,0.7);
      border: 1px solid rgba(77,184,232,0.15);
      border-radius: 12px;
      padding: 1.8rem 1.4rem;
      text-align: center;
      backdrop-filter: blur(8px);
      transition: border-color 0.3s, transform 0.3s;
    }
    .pillar:hover {
      border-color: rgba(77,184,232,0.5);
      transform: translateY(-4px);
    }

    .pillar-icon {
      font-size: 2rem;
      margin-bottom: 0.8rem;
      display: block;
    }
    .pillar h3 {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--blue-lt);
      margin-bottom: 0.5rem;
    }
    .pillar p {
      font-size: 0.82rem;
      font-weight: 300;
      color: var(--silver);
      line-height: 1.6;
    }

    .pillar-highlight {
      border-color: rgba(232,136,58,0.35);
      background: rgba(232,136,58,0.06);
    }
    .pillar-highlight:hover { border-color: rgba(232,136,58,0.7); }

    .pillar-highlight-alt {
      border-color: rgba(37,211,102,0.25);
      background: rgba(37,211,102,0.04);
    }
    .pillar-highlight-alt:hover { border-color: rgba(37,211,102,0.55); }

    .pillar-btn {
      display: inline-block;
      margin-top: 1rem;
      padding: 0.5rem 1.1rem;
      border-radius: 999px;
      font-size: 0.7rem;
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      background: linear-gradient(135deg, var(--orange), var(--gold));
      color: var(--black);
      transition: opacity 0.25s, transform 0.25s;
    }
    .pillar-btn:hover { opacity: 0.85; transform: scale(1.04); }

    .pillar-btn-wa {
      background: linear-gradient(135deg, #25d366, #128c4e);
      color: #fff;
      margin-top: 1.5rem;
    }

    /* ── COMING SOON BOX ── */
    .coming-soon {
      width: 100%;
      max-width: 700px;
      background: rgba(13,27,42,0.8);
      border: 1px solid rgba(212,168,83,0.3);
      border-radius: 16px;
      padding: 2.8rem 2.5rem 2.4rem;
      text-align: center;
      backdrop-filter: blur(12px);
      margin-bottom: 3.5rem;
      animation: fadeUp 1.2s ease 0.9s both;
    }

    .coming-soon-label {
      font-size: 0.65rem;
      letter-spacing: 0.38em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .coming-soon h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: clamp(1.5rem, 3.5vw, 2.2rem);
      color: var(--white);
      margin-bottom: 0.8rem;
    }
    .coming-soon p {
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--silver);
      line-height: 1.7;
      margin-bottom: 1.6rem;
    }

    .progress-wrap {
      background: rgba(255,255,255,0.06);
      border-radius: 999px;
      height: 4px;
      overflow: hidden;
      margin-bottom: 0.6rem;
    }
    .progress-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--blue), var(--orange));
      border-radius: 999px;
      animation: growBar 2s ease 1.5s forwards;
    }
    .progress-label {
      font-size: 0.65rem;
      color: var(--silver);
      letter-spacing: 0.1em;
      opacity: 0.6;
    }

    /* ── CONTACT ── */
    .contacts {
      width: 100%;
      max-width: 700px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 3.5rem;
      animation: fadeUp 1.2s ease 1.1s both;
    }
    @media(max-width: 540px){ .contacts { grid-template-columns: 1fr; } }

    .contact-card {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: rgba(13,27,42,0.7);
      border: 1px solid rgba(77,184,232,0.15);
      border-radius: 12px;
      padding: 1.2rem 1.4rem;
      text-decoration: none;
      transition: border-color 0.3s, transform 0.3s;
      backdrop-filter: blur(8px);
    }
    .contact-card:hover { border-color: rgba(77,184,232,0.5); transform: translateY(-3px); }
    .contact-card.whatsapp:hover { border-color: rgba(37,211,102,0.5); }

    .contact-icon {
      width: 42px; height: 42px;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }
    .contact-icon.email-ico { background: rgba(26,111,168,0.2); }
    .contact-icon.wa-ico { background: rgba(37,211,102,0.15); }

    .contact-info { min-width: 0; }
    .contact-info span {
      display: block;
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 3px;
    }
    .contact-info strong {
      display: block;
      font-size: 0.88rem;
      font-weight: 400;
      color: var(--white);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* ── FOOTER ── */
    footer {
      width: 100%;
      max-width: 1100px;
      text-align: center;
      padding: 1.5rem 0 2.5rem;
      border-top: 1px solid rgba(192,204,216,0.08);
      font-size: 0.72rem;
      color: rgba(192,204,216,0.4);
      letter-spacing: 0.1em;
      animation: fadeUp 1.2s ease 1.3s both;
    }
    footer a { color: var(--blue-lt); text-decoration: none; }
    footer .url { color: var(--gold); }

    /* ── ANIMATIONS ── */
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50%      { opacity: 0.5; transform: scale(1.4); }
    }
    @keyframes growBar {
      to { width: 68%; }
    }
    @keyframes shimmer {
      0%   { background-position: -200% center; }
      100% { background-position: 200% center; }
    }

    /* ── SCROLL INDICATOR ── */
    .scroll-hint {
      position: fixed;
      bottom: 1.8rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 20;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      opacity: 0.4;
      animation: fadeUp 1s ease 2s both;
      pointer-events: none;
    }
    .scroll-hint span {
      font-size: 0.55rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--silver);
    }
    .scroll-hint-line {
      width: 1px;
      height: 30px;
      background: linear-gradient(to bottom, var(--blue-lt), transparent);
      animation: scrollLine 2s ease infinite;
    }
    @keyframes scrollLine {
      0%   { transform: scaleY(0); transform-origin: top; }
      50%  { transform: scaleY(1); transform-origin: top; }
      51%  { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

        /* Botão Flutuante WhatsApp */
.wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.wa-float:hover {
    transform: scale(1.1);
    background-color: #128c4e;
}

/* Estilos do Modal Cadastro */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none; /* Escondido por padrão */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--navy);
    border: 1px solid var(--gold);
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: fadeUp 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--silver);
    cursor: pointer;
    background: none;
    border: none;
}

.modal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-lt);
    margin-bottom: 5px;
}

/* Ajuste no Input e Select para garantir visibilidade */
.form-group input, 
.form-group select {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08); /* Fundo levemente mais visível */
    border: 1px solid rgba(192, 204, 216, 0.2);
    border-radius: 8px;
    color: #ffffff; /* Texto sempre branco */
    font-family: 'Josefin Sans', sans-serif;
    outline: none;
    appearance: none; /* Remove a seta padrão em alguns navegadores para customizar */
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23d4a853' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
}

/* Estilização das opções (a lista que abre) */
.form-group select option {
    background-color: var(--navy); /* Fundo escuro igual ao modal */
    color: #ffffff; /* Texto branco */
    padding: 10px;
}

/* Ajuste específico para quando o campo recebe clique */
.form-group input:focus, 
.form-group select:focus {
    border-color: var(--orange);
    background-color: rgba(13, 27, 42, 0.95); /* Garante fundo escuro no foco */
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    border: none;
    border-radius: 8px;
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 136, 58, 0.3);
}

@media (max-width: 768px) {
    .wa-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}