/* ---- CONFIGURAÇÕES GLOBAIS E VARIÁVEIS DE COR ---- */
:root {
    --vinho: #6b0000;
    --branco: #ffffff;
    --preto: #000000;
    --cinza-claro: #f4f4f4;
    --fonte-titulo: 'Poppins', sans-serif;
    --fonte-texto: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 85px; /* Ajuste para rolagem dos links âncora */
    scroll-behavior: smooth; /* Efeito de rolagem suave */
}

body {
    font-family: var(--fonte-texto);
    background-color: var(--branco);
    padding-top: 85px; /* Espaço para o header fixo */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- ESTILOS DO HEADER ---- */
.main-header {
    background-color: var(--branco);
    padding: 20px 0;
    border-bottom: 1px solid var(--cinza-claro);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--fonte-titulo);
    font-weight: 700;
    font-size: 24px;
    color: var(--preto);
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--preto);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--vinho);
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--vinho);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--vinho);
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-button {
    background-color: var(--vinho);
    color: var(--branco);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #5a0000;
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--preto);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ---- SEÇÃO HERO ---- */
.hero-section {
    height: 100vh; /* Ocupa 100% da altura da tela */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--branco);
    /* Adicione aqui a imagem de fundo que você escolher */
    background-image: url('https://images.unsplash.com/photo-1539037116277-4db20889f2d4?q=80&w=2070');
    background-size: cover;
    background-position: center;
}

/* Camada escura sobre o fundo para garantir a legibilidade do texto */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo preto com 50% de opacidade */
}

/* Conteúdo da seção (texto e botão) */
.hero-content {
    position: relative; /* Garante que o conteúdo fique acima da camada de overlay */
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-family: var(--fonte-titulo);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- RESPONSIVIDADE DA SEÇÃO HERO ---- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-content p {
        font-size: 18px;
    }
}

/* ---- SEÇÃO DE RESULTADOS ---- */
.results-section {
    background-color: var(--vinho);
    color: var(--branco);
    padding: 60px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    align-items: center; /* Alinha verticalmente */
}

.result-item {
    padding: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.result-item:first-child {
    border-left: none;
}

.result-item:last-child {
    border-right: none;
}

.result-number {
    font-family: var(--fonte-titulo);
    font-size: 48px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.result-specialty {
    font-family: var(--fonte-titulo);
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    line-height: 1.2;
}

.result-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* ---- SEÇÃO DE SERVIÇOS ---- */
.services-section {
    padding: 100px 0;
    background-color: var(--branco);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--fonte-titulo);
    font-size: 42px;
    font-weight: 700;
    color: var(--preto);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--branco);
    padding: 40px;
    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;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--fonte-titulo);
    font-size: 22px;
    color: var(--preto);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* ---- SEÇÃO DE DEPOIMENTOS ---- */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--vinho);
}

.testimonials-section .section-header .section-title,
.testimonials-section .section-header .section-subtitle {
    color: var(--branco);
}

.testimonials-carousel {
    padding: 20px 40px 60px 40px;
}

.testimonial-card {
    background-color: var(--branco);
    border-radius: 8px;
    padding: 40px;
    padding-top: 50px;
    margin: 0 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.quote-icon {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 100px;
    font-family: 'Times New Roman', serif;
    color: #f0f0f0;
    z-index: 1;
    line-height: 1;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    color: #333;
    position: relative;
    z-index: 2;
    width: 100%;
}

.testimonial-text strong {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-family: var(--fonte-titulo);
}

.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background-color: var(--branco);
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--branco);
    --swiper-navigation-size: 30px;
}

/* ---- SEÇÃO DE BENEFÍCIOS ---- */
.benefits-section {
    padding: 100px 0;
    background-color: var(--branco);
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.benefits-title-column .section-title {
    font-size: 42px;
}

.title-decorator {
    width: 80px;
    height: 4px;
    background-color: var(--vinho);
    margin-bottom: 30px;
    border-radius: 2px;
}

.benefits-list-column {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-text h4 {
    font-family: var(--fonte-titulo);
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--preto);
}

.benefit-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* ---- SEÇÃO DE BLOG ---- */
.blog-section {
    padding: 100px 0;
    background-color: var(--cinza-claro);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.post-card {
    background-color: var(--branco);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-category {
    background-color: var(--vinho);
    color: var(--branco);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 15px;
}

.card-content h3 {
    font-family: var(--fonte-titulo);
    font-size: 20px;
    color: var(--preto);
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.post-card:hover h3 {
    color: var(--vinho);
}

.post-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    flex-grow: 1;
    margin-bottom: 15px;
}

.post-meta {
    font-size: 13px;
    color: #888;
}

.cta-button-outline {
    background-color: transparent;
    color: var(--vinho);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--vinho);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button-outline:hover {
    background-color: var(--vinho);
    color: var(--branco);
}

/* ---- SEÇÃO DE CONTATO ---- */
.contact-section {
    padding: 100px 0;
    background-color: var(--vinho);
    color: var(--branco);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-column .section-title {
    color: var(--branco);
}

.contact-info-column p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 17px;
}

.contact-details-list a, .contact-details-list span {
    color: var(--branco);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-details-list a:hover {
    opacity: 0.8;
}

.contact-icon {
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--branco);
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    position: absolute;
    left: -9999px;
}

.contact-form-column input,
.contact-form-column textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--branco);
    font-size: 16px;
    font-family: var(--fonte-texto);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form-column input::placeholder,
.contact-form-column textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-column input:focus,
.contact-form-column textarea:focus {
    outline: none;
    border-color: var(--branco);
    background-color: rgba(255, 255, 255, 0.2);
}

.cta-button-inverted {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: var(--branco);
    color: var(--vinho);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button-inverted:hover {
    background-color: var(--cinza-claro);
}

/* ---- RODAPÉ ---- */
.site-footer {
    background-color: var(--preto);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 50px;
}

.footer-column h3, .footer-column h4 {
    font-family: var(--fonte-titulo);
    color: var(--branco);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}

.footer-links a, .footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--vinho);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: var(--branco);
}

/* ---- BOTÃO FLUTUANTE DE WHATSAPP ---- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--vinho);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ---- REGRAS DE RESPONSIVIDADE GERAIS ---- */
@media (max-width: 992px) {
    .header-container {
        /* Ajustes se necessário */
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--branco);
        flex-direction: column;
        text-align: center;
        border-top: 1px solid var(--cinza-claro);
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        gap: 0;
    }

    .main-nav li {
       padding: 15px 0;
       border-bottom: 1px solid var(--cinza-claro);
    }
    
	.cta-desktop {
		display: none;
	}

    .menu-toggle {
        display: flex;
    }
    
    .services-grid, .posts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-container, .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-title-column {
        text-align: center;
    }

    .benefits-title-column .title-decorator {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

	.benefits-photo {
    margin-left: auto;
    margin-right: auto;
}

}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .result-item {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 40px;
    }
    
    .result-item:first-child {
       border-top: none;
       padding-top: 0;
    }
    
    .services-section, .blog-section {
        padding: 80px 0;
    }

    .services-grid, .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
    
    .testimonials-carousel {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .contact-container {
        gap: 60px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-main .social-icons, 
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Estilo para a foto na seção de benefícios */
.benefits-photo {
    width: 100%;
    max-width: 350px;
    display: block;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ---- CORREÇÃO FORÇADA PARA O CARROSSEL DE 3 SLIDES ---- */
@media (min-width: 992px) {
    .testimonials-carousel .swiper-wrapper {
        /* Garante que o container dos slides se alinhe ao começo */
        justify-content: flex-start;
    }

    .testimonials-carousel .swiper-slide {
        /* Força a largura de cada slide para ser 1/3 do container, menos o espaçamento */
        width: calc( (100% - 60px) / 3 );
        min-height: 300px; /* Garante uma altura mínima consistente */
    }
}

/* ---- ESTILO PARA ÍCONE SOCIAL COM TEXTO ---- */
.social-link-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none; /* Garante que não haja sublinhado */
    color: var(--branco);
    font-size: 17px;      /* Define o mesmo tamanho de fonte dos outros contatos */
    font-weight: 400;     /* Garante o mesmo peso da fonte */
    transition: opacity 0.3s ease;
}



/* ---- ESTILOS DA PÁGINA DE OBRIGADO ---- */
.thank-you-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 85px - 250px); /* (Altura da tela) - (altura do header) - (altura aprox. do footer) */
    text-align: center;
    padding: 80px 0;
}

.thank-you-content h1 {
    font-family: var(--fonte-titulo);
    font-size: 42px;
    color: var(--preto);
    margin: 20px 0;
}

.thank-you-content p {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.thank-you-icon svg {
    color: var(--vinho);
}

/* ---- AJUSTES PARA LAYOUT DA PÁGINA DE OBRIGADO ---- */

/* Força o body a ocupar a altura total da tela e a ser um container flexível */
body.obrigado-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Faz a seção principal crescer para ocupar todo o espaço vago, empurrando o footer para baixo */
body.obrigado-page .thank-you-section {
    flex-grow: 1;
}



/* ---- SEÇÃO DE APRESENTAÇÃO / SOBRE ---- */
.about-section {
    padding: 100px 0;
    background-color: var(--cinza-claro);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Coluna da Imagem */
.about-image-column {
    flex: 0 0 40%; /* A imagem ocupa 40% do espaço */
    position: relative;
}

.image-wrapper {
    position: relative;
    padding: 15px; /* Espaço para o acento aparecer */
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    position: relative;
    z-index: 2; /* Fica na frente do acento */
}

.image-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--vinho);
    border-radius: 5px;
    z-index: 1; /* Fica atrás da imagem */
    transform: rotate(-5deg); /* Leve rotação para o toque moderno */
}


/* Coluna do Texto */
.about-text-column {
    flex: 1; /* O texto ocupa o espaço restante */
}

.section-title {
    font-family: var(--fonte-titulo);
    font-size: 42px;
    font-weight: 700;
    color: var(--preto);
    margin-bottom: 15px;
}

.title-decorator {
    width: 80px;
    height: 4px;
    background-color: var(--vinho);
    margin-bottom: 30px;
    border-radius: 2px;
}

.section-paragraph {
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
}


/* ---- RESPONSIVIDADE DA SEÇÃO SOBRE ---- */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column; /* Empilha as colunas */
        gap: 50px;
    }
    .about-image-column, 
    .about-text-column {
        flex: 1 0 100%; /* Cada coluna ocupa 100% da largura */
        max-width: 550px;
    }
    .about-text-column {
      text-align: center; /* Centraliza o texto no mobile */
    }
    .title-decorator {
      margin-left: auto;
      margin-right: auto;
    }
    .section-title {
      font-size: 36px;
    }
}


/* ---- ESTILOS DA LANDING PAGE DA AULA ---- */
.lp-body {
    background-color: #f8f9fa;
    text-align: center;
}

.lp-header {
    background-color: var(--branco);
    padding: 5px 0; /* Espaçamento interno do cabeçalho, ajustado para ser compacto */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-top: 0;
}

.lp-main {
    padding-top: 30px; /* Espaço entre o cabeçalho e o título principal */
    padding-bottom: 60px;
}

.lp-title {
    font-family: var(--fonte-titulo);
    font-size: 42px;
    line-height: 1.3;
    color: var(--preto);
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.lp-subtitle {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px; /* Mantém as bordas arredondadas */
}

.lp-countdown-section {
    background-color: var(--preto);
    color: var(--branco);
    padding: 50px 0;
}

.lp-date-time {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}
.lp-date-time span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.time-block {
    display: flex;
    flex-direction: column;
}

.time-block span:first-child {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}

.time-block span:last-child {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lp-cta {
    padding: 15px 40px;
    font-size: 18px;
    text-transform: uppercase;
}

.lp-topics {
    padding: 80px 0;
    background-color: var(--branco);
}

.lp-topics h2 {
    font-family: var(--fonte-titulo);
    font-size: 36px;
    margin-bottom: 40px;
}

.lp-topics ul {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.lp-topics li {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.lp-topics li svg {
    color: var(--vinho);
    flex-shrink: 0;
}

.lp-form-section {
    background-color: var(--cinza-claro);
    padding: 80px 0;
}

.lp-form-section h2 {
    font-family: var(--fonte-titulo);
    font-size: 36px;
}

.lp-form-section p {
    margin-bottom: 30px;
}

.lp-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lp-form input {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.lp-expert {
    background-color: var(--branco);
    padding: 80px 0;
}

.lp-expert img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--vinho);
}

.lp-expert h3 {
    font-family: var(--fonte-titulo);
    font-size: 28px;
    margin-bottom: 15px;
}

.lp-expert p {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 18px;
}

.lp-footer {
    background-color: var(--preto);
    color: rgba(255, 255, 255, 0.7);
    padding: 20px 0;
    font-size: 14px;
}

/* ESTILOS DA PÁGINA DE OBRIGADO DA AULA */
.lp-main-obrigado {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 77px - 57px); /* header - footer */
}
.steps-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.step-box {
    background-color: var(--branco);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: left;
}
.step-box h2 {
    font-family: var(--fonte-titulo);
    margin-bottom: 15px;
}
.step-important {
    border-left: 5px solid var(--vinho);
}

/* RESPONSIVIDADE PARA A LANDING PAGE */
@media (max-width: 768px) {
    .lp-title { font-size: 32px; }
    .lp-subtitle { font-size: 18px; }
    .countdown-timer { gap: 10px; }
    .time-block span:first-child { font-size: 40px; }
}