/* ============================
   RESET E VARIÁVEIS GLOBAIS
============================ */
:root {
    --primary-color: #43a8a2;
    --primary-hover: #368a84;
    --dark-color: #2d3748;
    --text-color: #4a5568;
    --light-gray-color: #f7fafc;
    --border-color: #e2e8f0;
    --white-color: #ffffff;
    --whatsapp-color: #25d366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }
body { color: var(--text-color); }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================
   COMPONENTES GERAIS
============================ */
.section-header { margin-bottom: 3rem; }

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================
   BOTÕES
============================ */
.btn-primary, .btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* ============================
   WHATSAPP FLUTUANTE
============================ */
/* --- Estilo e Animação para o Botão Flutuante do WhatsApp (v2) --- */
.whatsapp-float {
    position: fixed;
    width: 60px;   /* Tamanho do botão */
    height: 60px;  /* Tamanho do botão */
    bottom: 40px;
    right: 40px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: #FFF;
    border-radius: 12px; /* Cantos arredondados para formar um "squircle" */
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    
    /* APLICAÇÃO DA ANIMAÇÃO */
    animation-name: comical-jump;            /* Nome da animação (definida abaixo) */
    animation-duration: 3s;                  /* Duração total de um ciclo */
    animation-iteration-count: infinite;     /* Repete para sempre */
    animation-timing-function: ease-in-out;  /* Suaviza o início e o fim */
    animation-delay: 3s;                     /* Espera 3s antes de começar a animar */
}

/* DEFINIÇÃO DOS PASSOS DA ANIMAÇÃO ("comical-jump") */
@keyframes comical-jump {
    0% {
        transform: scale(1) rotate(0deg); /* Estado inicial: normal */
    }
    15% {
        transform: scale(1.2) rotate(15deg); /* Primeiro pulo: aumenta e gira para a direita */
    }
    30% {
        transform: scale(1.15) rotate(-15deg); /* Segundo pulo: um pouco menor e gira para a esquerda */
    }
    45% {
        transform: scale(1.2) rotate(10deg); /* Terceiro pulo: volta a girar para a direita */
    }
    60% {
        transform: scale(1) rotate(0deg); /* Volta ao estado normal */
    }
    /* 60% a 100% fica parado, esperando o próximo ciclo */
    100% {
        transform: scale(1) rotate(0deg); /* Garante que termina no estado normal */
    }
}
/* ----------------------------------------------------------------- */

/* ============================
   CABEÇALHO
============================ */
.main-header {
    background-color: var(--white-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.main-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}
.main-menu a:hover { color: var(--primary-color); }

.btn-menu {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 8px;
}
.main-menu a.btn-menu:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* ============================
   HERO SECTION
============================ */
.hero-section {
    padding: 4rem 0;
}
.hero-section .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.hero-image { order: 2; }
.hero-text { order: 1; }

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-color);
}
.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}
.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
}
.hero-image img {
    width: 100%;
    height: auto;
}

/* ============================
   FEATURES SECTION
============================ */
.features-section {
    padding: 5rem 0;
    background-color: var(--light-gray-color);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.features-list ul { list-style: none; }
.features-list li {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.features-list i {
    color: var(--primary-color);
    font-size: 1.5rem;
}
.features-image img {
    width: 100%;
    border-radius: 8px;
}

/* ============================
   ACCORDION SECTION
============================ */
.accordion-section { padding: 5rem 0; }

.accordion {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}
.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    background: var(--light-gray-color);
    border: none;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-color);
    transition: background-color 0.3s;
}
.accordion-header:hover,
.accordion-header.active {
    background-color: #eef5f5;
}
.accordion-header.active i {
    transform: rotate(180deg);
}
.accordion-header i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--white-color);
}
.accordion-content p {
    padding: 1.5rem;
    line-height: 1.6;
}

/* ============================
   EMAIL SECTION
============================ */
.email-section {
    padding: 5rem 0;
    background-color: var(--light-gray-color);
}

.email-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.email-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}
.email-text p {
    line-height: 1.7;
    margin-bottom: 2rem;
}
.email-text ul {
    list-style: none;
    margin-bottom: 2.5rem;
}
.email-text ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.email-text ul li i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.email-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.quick-form-wrapper {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.quick-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.quick-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
}
.quick-form button {
    grid-column: 1 / -1;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.quick-form button:hover {
    background-color: var(--primary-hover);
}
.form-success-message {
    background-color: #e6f3f3;
    color: #0b4f6c;
    border: 1px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

/* ============================
   PRICING SECTION
============================ */
.pricing-section {
    padding: 5rem 0;
    background-color: var(--light-gray-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
}
.pricing-card.popular {
    border-color: var(--primary-color);
    border-width: 2px;
}
.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}
.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.pricing-card span {
    color: var(--text-color);
}
.pricing-card ul {
    list-style: none;
    margin-top: 1.5rem;
    text-align: left;
}
.pricing-card li {
    margin-bottom: 0.8rem;
}
.price-feature {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: var(--dark-color);
}
.logo-feature {
    margin-top: 1rem;
}

/* ============================
   CONTACT SECTION
============================ */
.contact-section { padding: 5rem 0; }

#form-container {
    max-width: 800px;
    margin: 2rem auto 0;
}
.contact-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}
.contact-form textarea {
    grid-column: 1 / -1;
    min-height: 120px;
    resize: vertical;
}
.contact-form button {
    grid-column: 1 / -1;
    width: 100%;
    font-size: 1.1rem;
}

.confirmation-message {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 1.5rem;
    background-color: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}
.confirmation-message i {
    font-size: 6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.confirmation-message h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}
.confirmation-message p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ============================
   FOOTER
============================ */
.wide-footer {
    background-color: var(--dark-color);
    color: #a0aec0;
    padding: 4rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1) grayscale(100%);
}
.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a0aec0;
}

.footer-col h3,
.footer-col h4 {
    color: var(--white-color);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 0.8rem;
}
.footer-col a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col a:hover {
    color: var(--white-color);
}
.footer-col p i {
    color: var(--white-color);
    margin-right: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
}
.footer-legal {
    text-align: left;
}
.footer-cnpj {
    font-size: 0.9rem;
    color: #a0aec0;
    margin-top: 0.25rem;
}
.footer-credit a {
    color: var(--white-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-credit a:hover {
    color: var(--primary-color);
}

/* ============================
   RESPONSIVIDADE
============================ */
@media (max-width: 992px) {
    .hero-section .grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
}

.hero-text { 
    order: 2; /* Texto será o segundo item */
    text-align: center;
}

.hero-image {
    order: 1; /* Imagem será o primeiro item */
    margin-bottom: 2rem;
}
    .hero-buttons {
        justify-content: center;
    }
    .features-content,
    .email-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .email-image {
        order: -1;
        margin-bottom: 3rem;
    }
    .email-text ul li {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .main-menu { display: none; }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .section-title { font-size: 2rem; }
    .hero-text h1 { font-size: 2.5rem; }
    .pricing-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
    }
    .footer-legal {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .quick-form {
        grid-template-columns: 1fr;
    }
}
/* --- Estilos para o Título Dinâmico --- */
.hero-text .dynamic-h1 {
    display: flex;
    flex-direction: column; /* Organiza os textos um abaixo do outro */
    align-items: flex-start; /* Alinha tudo à esquerda */
    margin-bottom: 20px; /* Espaço abaixo do título */
    line-height: 1.2;
}

.hero-text .main-title {
    font-size: 48px; /* Tamanho para "Seu Site Médico Profissional" */
    font-weight: 400;
    color: var(--dark-color);
}

.hero-text .pre-highlight {
    font-size: 24px; /* Tamanho para "por apenas" ou "em apenas" */
    font-weight: 400;
    color: #555;
    margin-top: 10px;
}

.hero-text .highlight-text {
    font-size: 110px; /* Tamanho GRANDE para o destaque */
    font-weight: 800; /* Super negrito */
    color: #3669a4; /* Sua cor personalizada */
    line-height: 1; /* Remove espaçamento extra */
    margin-top: 5px;
}
/* -------------------------------------- */
/* --- Estilos para a Nova Seção de Recursos Detalhada --- */
.detailed-features-section {
    padding: 80px 0;
    background-color: var(--white-color); /* Fundo branco para a seção */
}

.features-plan-wrapper {
    max-width: 900px; /* Largura máxima do bloco */
    margin: 0 auto; /* Centraliza o bloco na página */
    border-radius: 8px;
    overflow: hidden; /* Garante que os cantos arredondados funcionem */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.detailed-features-section .plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark-color); /* Azul escuro do exemplo */
    color: var(--white-color);
    padding: 18px 25px;
}

.detailed-features-section .plan-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.detailed-features-section .plan-header h3 i {
    margin-right: 10px;
    color: #f1c40f; /* Cor amarela para o ícone de gema */
}

.detailed-features-section .recommended-badge {
    background-color: #27ae60; /* Verde do exemplo */
    color: var(--white-color);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
}

.detailed-features-section .recommended-badge i {
    margin-right: 5px;
}

.detailed-features-section .plan-features {
    background-color: var(--white-color);
    padding: 20px 0; /* Espaçamento interno vertical */
}

.detailed-features-section .plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detailed-features-section .plan-features li {
    font-size: 16px;
    color: var(--dark-color);
    padding: 15px 25px;
    border-bottom: 1px solid #ecf0f1; /* Linha divisória sutil */
    background-color: #f8f9fa; /* Cor de fundo levemente diferente */
    margin: 0 20px; /* Cria o efeito de caixas internas */
    border-radius: 5px;
    margin-bottom: 8px; /* Espaço entre as caixas */
}

.detailed-features-section .plan-features li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detailed-features-section .plan-features li strong {
    font-weight: 600;
    color: var(--dark-color);
    margin-right: 8px;
}
/* -------------------------------------------------------- */
/* --- Estilos para a Seção de CTA com Recursos --- */
.final-cta-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Coluna da esquerda maior que a da direita */
    gap: 50px;
    align-items: center;
}

.cta-features h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 15px;
}

.cta-features > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.features-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.feature-item {
    text-align: center;
}

.feature-item img {
    height: 60px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #3669a4; /* Sua cor principal */
    margin-bottom: 8px;
    text-transform: uppercase;
}

.feature-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.cta-form-card {
    background: var(--white-color);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #e9e9e9;
}

.cta-form-card h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
}

.cta-form-card > p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 25px;
    color: #666;
}

.cta-form-card input,
.cta-form-card textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 15px;
}

.cta-form-card button {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    background-color: #3669a4;
    color: white;
    border: none;
    transition: background-color 0.3s;
}

.cta-form-card button:hover {
     background-color: #2c588b; /* Um tom mais escuro para o hover */
}

/* Responsividade para tablets e celulares */
@media (max-width: 992px) {
    .cta-grid {
        grid-template-columns: 1fr; /* Uma coluna só */
    }
}

@media (max-width: 768px) {
    .features-icon-grid {
        grid-template-columns: repeat(2, 1fr); /* Duas colunas em telas menores */
    }
     .cta-features h2 {
        font-size: 30px;
    }
}
/* ------------------------------------------ */
/* --- Estilos para a Nova Seção "Sobre Quem Faz" --- */
.about-me-section {
    padding: 80px 0;
    background-color: #f9f9f9; /* Fundo cinza claro para destacar */
}

.about-me-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Coluna da imagem menor */
    gap: 60px;
    align-items: center;
}

.about-me-image img {
    width: 100%;
    border-radius: 10px; /* Cantos levemente arredondados */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about-me-text .section-title {
    text-align: left; /* Alinha o título principal à esquerda */
}

.about-me-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #3669a4; /* Sua cor principal */
    margin-top: -10px;
    margin-bottom: 25px;
}

.about-me-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.about-me-highlights {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.highlight-item {
    flex: 1;
}

.highlight-item i {
    font-size: 30px;
    color: #3669a4;
    margin-bottom: 15px;
}

.highlight-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.about-me-text .final-note {
    font-style: italic;
    background-color: #eef3f8;
    padding: 15px;
    border-left: 4px solid #3669a4;
    border-radius: 5px;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Responsividade */
@media (max-width: 992px) {
    .about-me-grid {
        grid-template-columns: 1fr; /* Uma coluna só */
        text-align: center;
    }
    .about-me-image {
        max-width: 350px;
        margin: 0 auto 40px auto;
    }
    .about-me-text .section-title,
    .about-me-text h3 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-me-highlights {
        flex-direction: column; /* Destaques um abaixo do outro no celular */
    }
}
/* ---------------------------------------------------- */
/* --- Estilos para a Nova Seção de Garantia (com Ícone) --- */
.guarantee-section {
    padding: 60px 0;
    background-color: var(--white-color);
}

.guarantee-box {
    display: flex;
    align-items: center;
    max-width: 950px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

/* NOVO ESTILO PARA O ÍCONE/SELO */
.guarantee-seal {
    flex-shrink: 0;
    margin-right: 40px;
    width: 150px;
    height: 150px;
    background-color: #eef3f8; /* Fundo azul bem claro */
    border-radius: 50%; /* Transforma em um círculo */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #dbe7f3; /* Borda sutil */
}

.guarantee-seal i {
    font-size: 70px; /* Tamanho do ícone de escudo */
    color: #3669a4; /* Sua cor principal */
}

.guarantee-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #3669a4;
    margin-top: 0;
    margin-bottom: 15px;
}

.guarantee-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.guarantee-text .risk-free-note {
    font-weight: 600;
    color: var(--dark-color);
}

/* Responsividade */
@media (max-width: 768px) {
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .guarantee-seal {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .guarantee-text h3 {
        font-size: 24px;
    }

    .guarantee-text p {
        font-size: 16px;
    }
}
/* ---------------------------------------------------- */
/* --- Estilos para a Nova Seção de Etapas (v2 - Compacta e em Cascata) --- */
.process-section {
    padding: 70px 0; /* Espaçamento vertical um pouco menor */
    background-color: var(--white-color);
    overflow: hidden; /* Importante para a animação não "vazar" */
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
    /* Estado inicial: invisível e deslocado */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

/* O JavaScript adicionará a classe is-visible a cada elemento em sequência */
.process-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    /* Tamanho reduzido em ~70% */
    width: 42px;
    height: 42px;
    font-size: 20px;
    margin-bottom: 15px;
    /* Estilos mantidos */
    background-color: #3669a4;
    color: var(--white-color);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    border: 3px solid #f1f1f1;
    box-shadow: 0 0 0 3px #3669a4;
}

.step-content h4 {
    /* Tamanho reduzido */
    font-size: 16px;
    margin-bottom: 7px;
    font-weight: 700;
    color: var(--dark-color);
}

.step-content p {
    /* Tamanho reduzido */
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.step-connector {
    flex-grow: 1;
    height: 2px;
    background-color: #3669a4;
    align-self: flex-start; /* Alinha no topo do espaço */
    margin-top: 20px; /* Alinha verticalmente com o centro dos círculos */
    /* Estado inicial da linha: largura zero */
    transform: scaleX(0);
    transform-origin: left; /* A linha cresce da esquerda para a direita */
    transition: transform 0.8s ease-in-out;
}

.step-connector.is-visible {
    transform: scaleX(1);
}


/* Responsividade mantida, mas ajustada para o novo tamanho */
@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }
    .process-step {
        margin-bottom: 25px;
    }
    .step-connector {
        display: none;
    }
}
/* ------------------------------------------------------------------- */
/* --- Estilos para a Nova Seção de Preços Premium --- */
.premium-pricing-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.pricing-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch; /* Faz todos os cards terem a mesma altura */
}

.price-card-premium {
    background: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 7px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column; /* Organiza o conteúdo do card */
}

.price-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Destaque para o card central */
.price-card-premium.featured {
    transform: scale(1.05); /* Um pouco maior */
    border: 2px solid #3669a4;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3669a4;
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.price-card-premium .card-header i {
    font-size: 40px;
    color: #3669a4;
    margin-bottom: 15px;
}

.price-card-premium .card-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-card-premium .card-header p {
    color: #888;
    font-size: 15px;
    margin-bottom: 25px;
}

.price-card-premium .card-price {
    font-size: 28px;
    font-weight: 300;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.price-card-premium .card-price span {
    font-size: 60px;
    font-weight: 800;
}

.price-card-premium .custom-price {
    font-size: 22px;
    font-weight: 600;
    padding: 20px 0;
}

.price-card-premium .card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    margin-top: auto; /* Empurra a lista para baixo, alinhando os botões (se houver) */
}

.price-card-premium .card-features li {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.price-card-premium .card-features li:last-child {
    margin-bottom: 0;
}

.price-card-premium .card-features li i {
    color: #27ae60; /* Cor verde para o check */
    font-size: 16px;
    margin-right: 10px;
}

/* Responsividade */
@media (max-width: 992px) {
    .pricing-grid-premium {
        grid-template-columns: 1fr;
    }
    .price-card-premium.featured {
        transform: scale(1); /* Remove o zoom no mobile para não ocupar muito espaço */
    }
}
/* ---------------------------------------------------- */
/* --- Correção do Cursor em Botões --- */
button, .btn-primary, .btn-secondary {
    cursor: pointer;
}
/* ----------------------------------- */
/* --- Estilos para a Nova Seção de Formulário Rápido --- */
.quick-cta-section {
    padding: 50px 0;
    background-color: var(--dark-color); /* Usa a cor escura principal do site */
}

.quick-form-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quick-form-content h3 {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.quick-horizontal-form {
    display: flex;
    gap: 15px; /* Espaço entre os campos */
    align-items: center; /* Alinha verticalmente */
}

.quick-horizontal-form input {
    flex: 1; /* Faz os campos de input crescerem para preencher o espaço */
    padding: 14px;
    border: 1px solid #4a5568; /* Borda um pouco mais clara que o fundo */
    border-radius: 8px;
    font-size: 15px;
    background-color: #4a5568; /* Fundo do campo um pouco mais claro */
    color: var(--white-color);
}

.quick-horizontal-form input::placeholder {
    color: #a0aec0; /* Cor do placeholder */
}

.quick-horizontal-form button {
    flex-shrink: 0; /* Impede que o botão encolha */
    /* A classe .btn-primary, já existente, define o resto do estilo */
}

/* Responsividade para o formulário rápido */
@media (max-width: 768px) {
    .quick-horizontal-form {
        flex-direction: column; /* Empilha os campos verticalmente */
        align-items: stretch; /* Faz os campos ocuparem a largura total */
    }
}
/* ---------------------------------------------------- */
/* --- Estilos para a Nova Seção de Carrossel de Portfólio --- */
.logo-carousel-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.carousel-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #888;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos-slider {
    position: relative;
    width: 100%;
    overflow: hidden; /* A mágica acontece aqui: esconde o que está fora */
    /* Efeito de fade nas laterais */
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
}

.logos-slide-track {
    display: flex;
    /* (Largura de cada imagem + gap) * número total de imagens (incluindo as duplicadas) */
    /* (280px + 30px) * 14 = 4340px */
    width: calc(310px * 14);
    animation: scroll 40s linear infinite; /* Animação de rolagem */
}

/* Animação que move a faixa de imagens */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move a faixa para a esquerda pela largura exata da primeira metade das imagens */
        transform: translateX(calc(-310px * 7));
    }
}

.slide {
    width: 280px; /* Largura de cada imagem no carrossel */
    height: 210px; /* Altura correspondente (proporção 4:3) */
    margin: 0 15px; /* Espaçamento entre as imagens */
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.slide img:hover {
    transform: scale(1.05); /* Efeito de zoom sutil ao passar o mouse */
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
/* ----------------------------------------------------------------- */