==========================================================================
   VARIÁVEIS E RESET GLOBAL
   ========================================================================== */
:root {
    --primary: #0b7dda;
    --primary-dark: #075a99;
    --accent: #00b894;
    --bg: #f5f7fb;
    --surface: #ffffff;
    --surface-soft: #f8f9ff;
    --text: #222;
    --muted: #666;
    --radius: 12px;
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 10px 28px rgba(0, 0, 0, 0.14);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, sans-serif;
}
body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 1rem;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}
/* ========== FUNDO ANIMADO COM RENDER 12.JPG ========== */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background: url('Render 12.jpg') center center / cover no-repeat;
    animation: kenBurns 25s ease-in-out infinite alternate;
    will-change: transform;
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.82) 0%,
        rgba(30, 41, 59, 0.75) 40%,
        rgba(11, 125, 218, 0.45) 100%
    );
    backdrop-filter: blur(2px);
}
@keyframes kenBurns {
    0%   { transform: scale(1)   translate(0, 0); }
    50%  { transform: scale(1.08) translate(-1.5%, -1%); }
    100% { transform: scale(1.12) translate(1%, -2%); }
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}
a { text-decoration: none; color: inherit; }
/* ==========================================================================
   ESTRUTURA DA PÁGINA E LAYOUT
   ========================================================================== */
.page {
    max-width: 960px;
    margin: 0 auto;
    padding: 16px 16px 100px;
    position: relative;
    z-index: 1;
}
section {
    margin-top: 16px !important;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255,255,255,0.6);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    animation: sectionFadeIn 0.7s ease-out both;
}
@keyframes sectionFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* Staggered entrance for each section */
section:nth-child(1)  { animation-delay: 0.1s; }
section:nth-child(2)  { animation-delay: 0.25s; }
section:nth-child(3)  { animation-delay: 0.4s; }
section:nth-child(4)  { animation-delay: 0.55s; }
section:nth-child(5)  { animation-delay: 0.7s; }
section:nth-child(6)  { animation-delay: 0.85s; }
section:nth-child(7)  { animation-delay: 1.0s; }
section h2 {
    font-size: clamp(1.35rem, 2.7vw, 1.8rem);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.25;
}
/* ==========================================================================
   SEÇÃO HERO
   ========================================================================== */
.hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    padding: 40px 20px 0px !important;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 20%, rgba(11, 125, 218, 0.55), transparent 100%),
        radial-gradient(circle at 80% 10%, rgba(0, 184, 148, 0.4), transparent 100%),
        linear-gradient(135deg, rgba(44, 62, 80, 0.92), rgba(52, 73, 94, 0.88) 100%, rgba(31, 42, 56, 0.95));
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
    animation: fadeIn 2s ease-out forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero::after {
    display: none !important;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    animation: slideUp 1.2s ease-out forwards;
}
.hero-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.hero h1 {
    font-size: clamp(1.9rem, 5.4vw, 2.7rem);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.15;
}
.hero-list { list-style-type: none; margin-bottom: 20px; 

}
.hero-list li {
    font-size: 1.05re; color: #ffffff !important;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-list li::before { content: ""; color: #ffffff; font-weight: 800; 
}
video {
    width: min(100%, 800px);
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius);
    background: #000;
}
/* ==========================================================================
   COMPONENTES DE CARD E GRID
   ======================================================================== */
.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 12px;
}
.card {
    background: rgba(248, 249, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card-title {
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary-dark);
    font-size: 1.2rem;
}
#sua-casa .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
#sua-casa .card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#sua-casa img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
    background: #e9edf5;
}
/* ==========================================================================
   BOTÕES E ELEMENTOS DE INTERFACE
   ========================================================================== */
.btn-primary {
    display: inline-block;
    background: #ffeaa7;
    color: #000;
    padding:8px 22px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn-secondary {
    display: inline-block;
    background: #1e7e34 !important;
    color: #fff;
    padding: 8px 22px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn-secondary:hover {
    background: #145a26 !important;
    transform: translateY(-2px);
}
/* ==========================================================================
   FORMULÁRIOS DE CAPTURA
   ========================================================================== */
form { display: grid; gap: 14px; }
label { font-weight: 500; display: block; margin-bottom: 4px; }
input, select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #dcdde1;
    font-size: 1.1rem;
}
.radio-group {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 5px 0;
}
.radio-group label {
    display: inline;
    margin-bottom: 0;
    cursor: pointer;
}
.radio-group input[type="radio"] {
    width: auto;
    display: inline-block;
    margin-right: 6px;
}
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}
.checkbox-container input {
    width: auto;
    margin-top: 5px;
}
.error {
    color: #e74c3c;
    font-size: 0.9rem;
    display: none;
    margin-top: -10px;
}
.btn-submit {
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    padding: 14px 22px;
    border: none;
    font-size: 1.3rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn-submit:disabled {
    background: #b2bec3;
    cursor: not-allowed;
}
.disclaimer { font-size: 0.9rem; color: var(--muted); margin-top: 8px; }
/* ==========================================================================
   RODAPÉ
   ========================================================================== */
footer {
    margin: 32px 0 16px;
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}
footer p { margin-bottom: 4px; color: rgba(255, 255, 255, 0.85); }
a:focus-visible,
button:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
    outline: 3px solid rgba(11, 125, 218, 0.45);
    outline-offset: 2px;
}
.btn-primary:active,
.btn-secondary:active,
.card:active {
    transform: translateY(1px) scale(0.99);
}
/* ==========================================================================
   ANIMAÇÕES E RESPONSIVIDADE
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (hover: hover) and (pointer: fine) {
    section:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-hover);
        border-color: rgba(255, 255, 255, 0.5);
    }
    .card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(7, 90, 153, 0.16);
        border-color: rgba(11, 125, 218, 0.28);
    }
    .btn-primary:hover {
        background: #fdcb6e;
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    }
    .btn-secondary:hover {
        background: #334155;
        transform: translateY(-2px);
    }
    .btn-submit:not(:disabled):hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(7, 90, 153, 0.24);
    }
}
@media (max-width: 719px) {
    .page {
        padding: 12px 12px 88px;
    }
    section {
        margin-top: 20px;
        padding: 16px;
    }
    .hero {
        padding: 28px 16px 44px;
    }
    .hero h1 {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }
    .hero-list li {
        font-size: 1rem;
    }
    .cards {
        gap: 12px;
    }
    .card {
        padding: 14px;
    }
    #sua-casa .cards {
        grid-template-columns: 1fr;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 360px;
        text-align: center;
    }
    footer {
        margin-top: 24px;
        font-size: 0.95rem;
    }
}
@media (min-width: 720px) {
    .hero { padding: 60px 40px 140px; }
    .cards { grid-template-columns: repeat(3, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
 					CARROSSEL 
=========================================================================== */
#sua-casa .cards {
    display: none;
}
/* ==========================================================================
   CARROSSEL (AJUSTADO PARA O SEU HTML)
   ========================================================================== */
.meu-carrossel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
}

.meu-carrossel-slides {
    display: flex;
    transition: transform 0.6s ease;
}

.meu-slide {
    min-width: 100%;
    position: relative;
}

.meu-slide img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.meu-legenda {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 40px 20px 16px;
    text-align: center;
    font-weight: 600;
}

.meu-bolinhas {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.meu-bola {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
}

.meu-bola.ativa { background: var(--primary); border-color: var(--primary); }

/* REMOÇÃO DAS SETAS (meu-seta) */
.meu-seta, .meu-seta-esq, .meu-seta-dir {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}