@charset "UTF-8";

/* --- Variáveis Globais --- */
:root {
    --primary-gradient: linear-gradient(92deg, #020818, #567af8, #ffffff);
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --text-color: #000;
    --primary-color: #174b53;
    --accent-color: #567af8;
    --btn-bg: #e1e3df;
    --btn-hover: #174b53;
    --btn-text-hover: #fff;
}

/* --- Reset Básico --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Importante para o layout não quebrar */
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--primary-gradient);
    background-size: 400% 400%;
    animation: gradienteAnimado 15s ease infinite;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    overflow-x: hidden; /* Evita rolagem lateral indesejada */
}

@keyframes gradienteAnimado {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Efeitos de Vidro (Glassmorphism) --- */
.glass-effect {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--glass-border);
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: var(--glass-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
}

/* --- Lógica de Cursor nos Cards --- */
/* Se for um link (a), vira mãozinha e tem hover */
a.glass-card {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

a.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Se for div, cursor padrão */
div.glass-card {
    cursor: default;
}

/* --- Header --- */
.header {
    position: sticky;
    top: 10px;
    width: 95%;
    max-width: 1200px;
    z-index: 100;
    border-radius: 15px;
    margin-top: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Estado Expandido (ao rolar) */
.header.expandido {
    width: 100%;
    max-width: 100%;
    top: 0;
    margin-top: 0;
    border-radius: 0 0 20px 20px; /* Arredonda só embaixo */
    background: rgba(255, 255, 255, 0.85);
    border-top: none;
    border-left: none;
    border-right: none;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px; /* Ajuste o tamanho da logo aqui */
    height: auto;
}

.logo-area h1 {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-login {
    text-decoration: none;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.btn-login:hover {
    transform: scale(1.05);
}

/* --- Conteúdo Principal --- */
main {
    width: 95%;
    max-width: 800px; /* Largura máxima do conteúdo central */
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-presentation-wrapper {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.section-divider {
    border: 0;
    height: 1px;
    background: rgba(0,0,0,0.1);
    margin: 30px 0;
    width: 100%;
}

/* --- Carrosséis --- */
.carousel-container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.hero-carousel, .features-carousel {
    width: 100%;
    overflow: hidden; /* Esconde as imagens que estão ao lado */
    border-radius: 10px;
    position: relative;
}

.header-carousel-text {
    text-align: center;
    margin-bottom: 10px;
}

.carousel-track {
    display: flex; /* Coloca as imagens lado a lado */
    transition: transform 0.5s ease-in-out; /* Animação do slide */
    width: 100%;
}

.carousel-track .carousel-link {
    display: block;
    width: 100%;
    flex-shrink: 0; /* Impede de encolher, igual às imagens */
    cursor: pointer;
}

.carousel-track img {
    width: 100%;
    flex-shrink: 0; /* Impede a imagem de encolher */
    object-fit: cover; /* Ajusta a imagem sem distorcer */
    border-radius: 10px;
    display: block;
}

/* Garante que a imagem dentro do link preencha o link todo */
.carousel-track .carousel-link img {
    width: 100%;
    height: 100%;
    display: block;
    /* As propriedades de borda e object-fit já são herdadas da regra geral de img, 
       mas se precisar forçar, mantenha o padrão visual */
}

/* Indicadores (Bolinhas) */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding-bottom: 5px;
}

.indicator {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
    width: 25px; /* Estica para virar um "pill" */
    border-radius: 10px;
}

/* --- Seções Específicas --- */
.value-prop, .lead-capture {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.system-preview img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(45deg, #567af8, #174b53);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s;
    margin-top: 10px;
}

.btn-cta:hover {
    transform: scale(1.05);
}

/* --- Validação --- */
.validation-section .content-row {
    display: flex;
    flex-direction: column-reverse; /* Mobile: Texto embaixo, Ícone em cima */
    align-items: center;
    text-align: center;
    gap: 15px;
}

.btn-secondary {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* --- Footer --- */
.main-footer {
    width: 95%;
    max-width: 1200px;
    margin-bottom: 20px;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links img {
    width: 30px;
    transition: transform 0.2s;
}

.social-links img:hover {
    transform: translateY(-3px);
}

.legal {
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.legal a {
    color: var(--text-color);
    text-decoration: none;
}

/* --- Media Queries (Desktop) --- */
@media (min-width: 768px) {
    .validation-section .content-row {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 0 20px;
    }
    
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .header-container {
        padding: 15px 40px;
    }
}