/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000000;
}

/* Topo / Navbar */
.topo {
    background: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid #b30000;
}

.topo h1 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.topo span {
    font-size: 0.9rem;
    color: #bbb;
}

/* Hero Section - Onde fica a sua imagem fundo-paula.png */
/* Ajuste da Hero para não cobrir o rosto e alinhar o texto */
.hero {
    position: relative;
    width: 100%;
    min-height: 70vh; /* Altura equilibrada */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centraliza a imagem e garante que ela não estoure */
    background: url("img-perfil.jpeg") center center/cover no-repeat;
    color: white;
    padding: 180px 20px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Gradiente que escurece o centro para destacar o texto, mas mantém as bordas mais visíveis */
    background: radial-gradient(circle, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    text-align: center;
}

.hero h2 {
    font-size: 2.8rem; /* Tamanho de destaque */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Sombra no texto para leitura perfeita */
}

.hero p {
    font-size: 1.2rem;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Garante que o botão na hero não fique gigante */
.hero .botao-whatsapp {
    padding: 15px 40px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Botões de Conversão */
.botao-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
}

.botao-whatsapp:hover {
    transform: translateY(-3px);
    background: #1ebd5b;
}

/* Seções de Serviços */
section {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

section h3 {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 20px;
    border-left: 8px solid #b30000;
    padding-left: 15px;
}

.sec-img {
    display: block;
    width: 100%;
    /* Ajuste aqui: 380px é um tamanho médio excelente para não dominar a tela */
    max-width: 380px; 
    height: auto;
    margin: 20px auto; /* Centraliza a imagem e dá espaçamento */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Sombra leve para profundidade */
    transition: transform 0.3s ease;
}

.sec-img:hover {
    transform: scale(1.02); /* Efeito sutil ao passar o mouse */
}

ul {
    list-style: none;
    margin: 20px 0;
}

ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

ul li::before {
    content: "✔️ ";
    color: #b30000;
}

/* Footer */
footer {
    background: #000;
    color: #777;
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}

/* Botão Flutuante com Pulso */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 2px 2px 20px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.whatsapp-float img {
    width: 25px;
    margin-right: 10px;
}

/* Seção de Números/Estatísticas */
.stats-section {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    color: #fff;
    padding: 50px 20px !important;
    margin: 40px auto !important;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #25D366;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.4;
}

/* Seção de Depoimentos */
.testimonials-section {
    background: #f9f9f9 !important;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #b30000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    color: #b30000;
    font-weight: bold;
    font-size: 0.95rem;
}

/* Seção FAQ */
.faq-section {
    background: #f9f9f9 !important;
}

.faq-container {
    margin-top: 30px;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: #f5f5f5;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    transition: all 0.3s ease;
    border-left: 4px solid #b30000;
}

.faq-question:hover {
    background: #ececec;
    padding-left: 25px;
}

.faq-question::after {
    content: "▼";
    float: right;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 20px;
    color: #555;
    line-height: 1.7;
    border-top: 1px solid #eee;
}

.faq-answer.active {
    display: block;
}

/* Seção Formulário de Captura */
.capture-form-section {
    background: linear-gradient(135deg, #b30000 0%, #8b0000 100%) !important;
    color: white !important;
    padding: 45px 30px !important;
    margin: 40px auto !important;
    border-radius: 15px;
    max-width: 900px;
}

.capture-form-section h3 {
    color: white !important;
    border-left-color: white !important;
    font-size: 2rem;
}

.capture-form-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.capture-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.capture-form input,
.capture-form select,
.capture-form textarea {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255,255,255,0.95);
    color: #333;
}

.capture-form input::placeholder,
.capture-form textarea::placeholder {
    color: #999;
}

.capture-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
}

.capture-form button {
    grid-column: 1 / -1;
    padding: 15px 30px;
    background: white !important;
    color: #b30000 !important;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.capture-form button:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* CTA Final Melhorado */
.cta-final {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%) !important;
    color: white !important;
    text-align: center !important;
    padding: 50px 30px !important;
    border-radius: 15px;
}

.cta-final h3 {
    color: white !important;
    border-left: none;
    padding-left: 0;
    font-size: 2.2rem;
}

.cta-final p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Responsividade para Celular */
@media (max-width: 768px) {
    .hero h2 { font-size: 1.8rem; }
    section { margin: 20px; padding: 25px; }
    .whatsapp-float span { display: none; }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .capture-form button {
        grid-column: 1;
    }
    .whatsapp-float { padding: 15px; border-radius: 50%; }
}