@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:ital,wght@1,700&display=swap');

/* Variáveis Globais */
:root {
    --primary-color: #1A1A1A; /* Preto Vivon */
    --secondary-color: #FFFFFF; /* Branco */
    --accent-color: #BE9E45; /* Dourado Vivon */
    --light-gray: #f4f4f4; /* Cinza claro para fundos alternados */

    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;

    --container-width: 1140px;
    --padding-section: 60px 0;
}

/* Reset Básico e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    line-height: 1.6;
    background-color: var(--secondary-color);
}

h1, h2, h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem; /* Ajustar conforme necessário */
    font-style: italic;
    color: var(--secondary-color);
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #a58a3a; /* Tom mais escuro do dourado */
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

/* Seção 1: Hero */
#hero {
    background: url('images/hero-background.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--padding-section);
    position: relative;
    color: var(--secondary-color);
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Sobreposição escura */
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

.hero-logo {
    max-width: 200px; /* Ajustar tamanho */
    margin-bottom: 30px;
    /* Assumindo que existe um logo branco em images/logo-vivon-branco.svg */
}

#hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 10px auto 30px auto;
}

.pillars {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pillars span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.pillars img {
    width: 20px; /* Ajustar tamanho dos ícones */
    height: 20px;
    /* Ícones precisam ser criados/encontrados */
}

/* Seção 2: Dores e Solução */
#solution {
    padding: var(--padding-section);
    background-color: var(--secondary-color);
}

#solution h2 {
    color: var(--primary-color);
}

#solution .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.columns {
    display: flex;
    gap: 40px;
    align-items: center;
}

.column-text,
.column-image {
    flex: 1;
}

.column-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Seção 3: Aulas */
#classes {
    padding: var(--padding-section);
    background-color: var(--light-gray);
}

.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.class-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.class-card img {
    width: 50px; /* Ajustar tamanho */
    height: 50px;
    margin: 0 auto 15px auto;
    /* Ícones precisam ser criados/encontrados */
}

.class-card h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Seção 4: Benefícios */
#benefits {
    padding: var(--padding-section);
    background-color: var(--secondary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
}

.benefit-item img {
    width: 60px; /* Ajustar tamanho */
    height: 60px;
    margin: 0 auto 15px auto;
    /* Ícones precisam ser criados/encontrados e usar cor --accent-color? */
}

.benefit-item h3 {
    margin-bottom: 10px;
}

/* Seção 5: Para Quem é Indicado */
#target-audience {
    padding: var(--padding-section);
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

#target-audience h2 {
    color: var(--accent-color);
}

#target-audience .columns.reverse {
    flex-direction: row-reverse;
}

#target-audience ul {
    list-style: none;
    padding-left: 0;
}

#target-audience li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

#target-audience li img {
    width: 20px; /* Ajustar tamanho */
    height: 20px;
    /* Ícone checkmark precisa ser criado/encontrado, cor --accent-color? */
}

/* Seção 6: Localização e Mapa */
#final-cta {
    padding: var(--padding-section);
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-align: center;
}

#final-cta h2 {
    color: var(--primary-color);
    font-style: italic;
}

#final-cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 10px auto 30px auto;
}

#final-cta .cta-button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

#final-cta .cta-button:hover {
    background-color: #333; /* Preto um pouco mais claro */
    color: var(--secondary-color);
}

/* Seção 8: Rodapé */
footer {
    padding: 40px 0;
    background-color: var(--primary-color);
    color: var(--light-gray);
    text-align: center;
}

.footer-logo {
    max-width: 150px;
    margin: 0 auto 20px auto;
    /* Precisa de logo branca */
}

.footer-info {
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    margin: 0 10px;
    display: inline-block;
}

.social-links img {
    width: 24px; /* Ajustar tamanho */
    height: 24px;
    transition: transform 0.3s ease;
    /* Ícones precisam ser criados/encontrados, cor branca/dourada? */
}

.social-links a:hover img {
    transform: scale(1.2);
}

.copyright {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .columns,
    #target-audience .columns.reverse {
        flex-direction: column;
        text-align: center;
    }

    .column-image {
        margin-top: 30px;
    }

    #target-audience .columns.reverse {
        flex-direction: column; /* Mantém coluna em mobile */
    }

    #target-audience ul {
        text-align: left; /* Alinha itens da lista à esquerda */
        max-width: 400px;
        margin: 0 auto;
    }

    .pillars {
        gap: 15px;
        justify-content: space-around;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .pillars span {
        font-size: 0.8rem;
    }
}

/* TODO: 
   - Criar/encontrar e adicionar SVGs para todos os ícones (pilares, aulas, benefícios, checkmark, social, logo branco).
   - Ajustar tamanhos/cores dos ícones.
   - Adicionar animações sutis (scroll reveal, hover effects mais elaborados).
   - Testar responsividade em mais dispositivos.
   - Otimizar imagem de fundo do hero.
   - Integrar vídeo do manifesto se possível (talvez em um modal ou seção dedicada).
*/


/* ... (previous styles) ... */

/* Seção 2.5: Vídeo Manifesto */
#manifesto-video {
    padding: var(--padding-section);
    background-color: var(--secondary-color); /* Or var(--light-gray) for alternation */
}

#manifesto-video h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin: 0 auto; /* Center the video wrapper if container is wider */
    max-width: 900px; /* Limit max width for large screens */
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; /* Remove default border */
}

/* Seção 3: Aulas */
#classes {
    padding: var(--padding-section);
    background-color: var(--light-gray);
}

/* ... (rest of the styles) ... */


/* Estilo para Placeholder do Logo no Hero */
.hero-logo-placeholder {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    border: 2px dashed var(--secondary-color);
    padding: 10px 20px;
    display: inline-block;
}

/* Estilo para Placeholder do Logo no Footer */
.footer-logo-placeholder {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-gray);
    margin: 0 auto 20px auto;
    border: 1px dashed var(--light-gray);
    padding: 5px 10px;
    display: inline-block;
    max-width: 150px;
}



/* Seção 6: Localização e Mapa */
#location-map {
    padding: var(--padding-section);
    background-color: var(--light-gray); /* Alternating background */
}

#location-map h2 {
    color: var(--primary-color);
}

#location-map .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden; /* Ensures border-radius applies to iframe */
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.map-wrapper iframe {
    display: block; /* Removes potential bottom space */
}

.address-details {
    text-align: center;
    font-size: 1rem;
    color: #333;
}



/* Estilos para Botões Flutuantes */
.whatsapp-float, .instagram-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366; /* Cor do WhatsApp */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.instagram-float {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    bottom: 110px; /* Posição acima do WhatsApp */
}

.whatsapp-float img, .instagram-float img {
    width: 36px; /* Ajuste o tamanho do ícone conforme necessário */
    height: 36px;
    filter: brightness(0) invert(1); /* Deixa o ícone branco */
}

.whatsapp-float:hover, .instagram-float:hover {
    transform: scale(1.1);
}

