/* ============================
   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
============================ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 12px;
    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;
    animation-name: comical-jump;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-delay: 3s;
}

@keyframes comical-jump {
    0%, 60%, 100% { transform: scale(1) rotate(0deg); }
    15% { transform: scale(1.2) rotate(15deg); }
    30% { transform: scale(1.15) rotate(-15deg); }
    45% { transform: scale(1.2) rotate(10deg); }
}

/* ============================
   CABEÇALHO E NOVO MENU MOBILE
============================ */
.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; }

/* Menu Desktop */
.main-menu { display: block; } /* Garante que ele aparece no desktop */
.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); }

/* Elementos do Menu Mobile (escondidos no desktop) */
#mobile-menu-btn, #mobile-menu {
    display: none;
}

/* ============================
   HERO SECTION
============================ */
.hero-section {
    padding: 4rem 0;
}
.hero-section .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0rem;
}
.hero-image { order: 2; }
.hero-text { order: 1; }
.hero-text p { font-size: 1.1rem; margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; }
.hero-image img { width: 100%; height: auto; }

/* Título Dinâmico Wrapper */
.hero-text .dynamic-h1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Títulos Desktop (estado padrão) */
.hero-text .desktop-title.main-title { font-size: 48px; font-weight: 400; color: var(--dark-color); }
.hero-text .desktop-title.pre-highlight { font-size: 24px; font-weight: 400; color: #555; margin-top: 10px; }
.hero-text .desktop-title.highlight-text { font-size: 110px; font-weight: 800; color: #3669a4; line-height: 1; margin-top: 5px; }

/* Títulos e Formulário Mobile (escondidos no desktop) */
.hero-text .mobile-title-wrapper,
.hero-text .mobile-price-wrapper,
.hero-section .hero-form-card {
    display: none;
}
/* ============================
   CTA INTERMEDIÁRIA
============================ */
.final-cta-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    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;
}
/* ============================
   NOVO FORMULÁRIO DA CTA
============================ */
.cta-form-card {
    background-color: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    align-self: flex-start; /* Alinha o card no topo da grid */
    position: sticky; /* Faz o formulário "acompanhar" o scroll */
    top: 120px; /* Distância do topo ao começar a "grudar" */
}

.cta-form-card h3 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cta-form-card p {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.cta-vertical-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-vertical-form input {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--light-gray-color);
}

.cta-vertical-form button {
    width: 100%;
    font-size: 1.1rem;
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Ajustes responsivos para o novo form */
@media (max-width: 992px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }
    .cta-form-card {
        position: static; /* Remove o efeito sticky em telas menores */
        margin-top: 2.5rem;
    }
}
.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;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.feature-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* ============================
   SOBRE MIM
============================ */
.sobre-mim-hero {
  position: relative;
  padding: 0;
  background: linear-gradient(to top right, #000011, #2c2cff);
  overflow: hidden;
}

.sobre-mim-hero .container {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 650px;
}

.sobre-mim-title {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10rem;
  font-weight: 800;
  color: #fff;
  line-height: 0.9;
  z-index: 1;
  user-select: none;
}

.sobre-mim-photo {
  position: absolute;
  left: 6%;
  bottom: 0;
  z-index: 2;
  width: 45%;
  max-width: 550px;
}
.sobre-mim-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.sobre-mim-card {
  position: relative;
  z-index: 3;
  background-color: linear-gradient(to top right, #000011, #2c2cff);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  color: #fff;
  max-width: 550px;
  width: 50%;
}

.sobre-mim-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.5rem;
}

.sobre-mim-card > p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.sobre-mim-highlights {
  display: flex;
  gap: 30px;
  margin: 25px 0;
}
.sobre-mim-highlights .highlight-item {
    flex: 1;
}
.sobre-mim-highlights .highlight-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}
.sobre-mim-highlights .highlight-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #dbe7ff;
}

.sobre-mim-social {
  margin-top: 25px;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
.sobre-mim-social a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
}
.sobre-mim-social a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* ============================
   ETAPAS (PROCESSO)
============================ */
.process-section {
    padding: 70px 0;
    background-color: var(--white-color);
    overflow: hidden;
}

.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;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.process-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 42px;
    height: 42px;
    font-size: 20px;
    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 {
    font-size: 16px;
    margin-bottom: 7px;
    font-weight: 700;
    color: var(--dark-color);
}

.step-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.step-connector {
    flex-grow: 1;
    height: 2px;
    background-color: #3669a4;
    align-self: flex-start;
    margin-top: 20px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease-in-out;
}

.step-connector.is-visible {
    transform: scaleX(1);
}

/* ============================
   FORMULÁRIO RÁPIDO
============================ */
.quick-cta-section {
    padding: 50px 0;
    background-color: var(--dark-color);
}

.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;
    align-items: center;
}

.quick-horizontal-form input {
    flex: 1;
    padding: 14px;
    border: 1px solid #4a5568;
    border-radius: 8px;
    font-size: 15px;
    background-color: #4a5568;
    color: var(--white-color);
}

.quick-horizontal-form input::placeholder {
    color: #a0aec0;
}

.quick-horizontal-form button {
    flex-shrink: 0;
}

/* ============================
   SEÇÃO DE E-MAIL
============================ */
.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);
}

/* =================================================================== */
/* ============= ESTILO DEFINITIVO DA SEÇÃO DE PREÇOS (HARMONIA VISUAL) ============= */
/* =================================================================== */

/* --- Configurações Gerais da Seção --- */
.premium-pricing-section {
    padding: 100px 0;
    background-color: #f0f4f8; 
}

.pricing-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

/* --- Estrutura Base do Card --- */
.price-card-premium {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 50, 100, 0.08);
    position: relative;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 520px; /* Garante que todos os cards tenham a mesma altura */
}

/* --- A MÁGICA: Curva branca inferior usando Pseudo-elemento --- */
.price-card-premium::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 150px; /* Altura da área branca */
    background: #ffffff;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    z-index: 1;
}

/* --- Cores e Destaques dos Cards (Usando a paleta do seu site) --- */
.price-card-premium:nth-child(1) { background-color: var(--primary-color); } /* Cor principal do site */
.price-card-premium.featured { 
    background-color: var(--dark-color); /* Cor escura para destaque */
    transform: translateY(-20px); /* Efeito de elevação */
}
.price-card-premium:nth-child(3) { background-color: #7a8a9e; } /* Tom de cinza azulado */


/* --- Conteúdo Superior (Colorido) --- */
.price-card-premium .card-header {
    padding: 40px 30px 20px 30px;
    text-align: center;
    flex-grow: 1; /* Faz esta área crescer e empurrar a lista para baixo */
}

/* --- HIERARQUIA DE FONTES --- */
.card-plan-name {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.card-price {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.card-price span {
    font-size: 4rem;
    font-weight: 700;
    margin-left: 5px;
}
/* Alinhamento do "Sob Consulta" */
.card-price-text {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1; /* ESSENCIAL para juntar as linhas */
    margin-bottom: 0.5rem;
    min-height: 100px; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-price-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* --- Lista de Recursos --- */
.card-features {
    list-style: none;
    padding: 0 30px;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.card-features li {
    font-size: 0.95rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.card-features li:last-child {
    border-bottom: none;
}
/* Estilo da Pílula */
.pill-feature {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}


/* --- Botão CTA --- */
.btn-card {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
    transition: all 0.3s ease;
    border: none;
    color: #ffffff;
}
.btn-card:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
/* Cores dos botões */
.price-card-premium:nth-child(1) .btn-card { background-color: var(--primary-color); }
.price-card-premium.featured .btn-card { background-color: var(--dark-color); }
.price-card-premium:nth-child(3) .btn-card { background-color: #7a8a9e; }


/* --- Nota de Rodapé --- */
.pricing-footer-note {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 12px;
}


/* --- AJUSTES RESPONSIVOS PARA OS PREÇOS --- */
@media (max-width: 992px) {
    .pricing-grid-premium {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .price-card-premium.featured {
        transform: none; /* Remove a elevação em telas menores */
    }
     .price-card-premium {
        min-height: auto;
    }
}

/* ============================
   SEÇÃO DE GARANTIA
============================ */
.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;
}

.guarantee-seal {
    flex-shrink: 0;
    margin-right: 40px;
    width: 150px;
    height: 150px;
    background-color: #eef3f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #dbe7f3;
}

.guarantee-seal i {
    font-size: 70px;
    color: #3669a4;
}

.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);
}

/* ============================
   RECURSOS E ACORDEÃO
============================ */
.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-image img {
    width: 100%;
    border-radius: 8px;
}
/* A classe .plan-features foi usada no HTML para a lista, então vamos estilizá-la aqui */
.plan-features ul { list-style: none; padding: 0; }
.plan-features li {
    font-size: 16px;
    color: var(--dark-color);
    padding: 15px;
    border-bottom: 1px solid #ecf0f1;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 8px;
}
.plan-features li:last-child { border-bottom: none; margin-bottom: 0; }
.plan-features li strong { font-weight: 600; color: var(--dark-color); margin-right: 8px; }


.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;
}


/* ============================
   CONTATO FINAL
============================ */
.contact-section { padding: 5rem 0; }

#form-container {
    max-width: 800px;
    margin: 2rem auto 0;
}
.contact-form {
    display: grid;
    grid-template-columns: 1fr; /* Simplificado para uma coluna */
    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 {
    min-height: 120px;
    resize: vertical;
}
.contact-form button {
    width: 100%;
    font-size: 1.1rem;
}
/* ============================
   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;
    padding: 0;
}
.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;
    margin-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 GERAL
============================ */
@media (max-width: 992px) {
    .hero-section .grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }
    .hero-text { 
        order: 2;
        text-align: center;
    }
    .hero-image {
        order: 1;
        margin-bottom: -1.5rem;
    }
    .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;
    }
    .sobre-mim-hero .container {
        justify-content: center;
    }
    .sobre-mim-card {
        width: 80%;
    }
    .sobre-mim-photo {
        display: none; /* Esconder foto em tablet para simplificar */
    }
    .sobre-mim-title {
        opacity: 0.1;
    }
}

/* =========================================================
   === NOVA ESTRATÉGIA MOBILE: MENU, TÍTULOS E FORMULÁRIO ===
========================================================= */

@media (max-width: 768px) {

    /* --- 1. CONFIGURAÇÃO DO NOVO MENU HAMBURGER --- */
    .main-menu {
        display: none; /* Esconde menu desktop */
    }
    #mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: var(--dark-color);
        font-size: 1.8rem;
        cursor: pointer;
    }
    #mobile-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%; /* Começa fora da tela */
        width: 100%;
        height: 100%;
        background-color: var(--dark-color);
        z-index: 1000;
        transition: right 0.4s ease-in-out;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #mobile-menu.active {
        right: 0; /* Entra na tela */
    }
    #close-menu-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--white-color);
        font-size: 2.5rem;
        cursor: pointer;
    }
    #mobile-menu nav ul { list-style: none; padding: 0; text-align: center; }
    #mobile-menu nav li { margin-bottom: 2rem; }
    #mobile-menu nav a { text-decoration: none; color: var(--white-color); font-size: 1.8rem; font-weight: 600; }
    #mobile-menu nav a.btn-primary { background: var(--primary-color); padding: 12px 24px; border-radius: 8px; }

    /* --- 2. NOVA ESTRUTURA DA HERO MOBILE (IMAGEM + FORMULÁRIO) --- */
    /* ALTERAÇÃO 1: Reduzindo o padding vertical da seção */
    .hero-section { padding: 1.5rem 0; }

    /* Mostra a imagem principal */
    .hero-image {
        display: block;
        /* ALTERAÇÃO 2: Reduzindo a margem inferior da imagem para aproximá-la do formulário */
        margin-bottom: -1.5rem;
    }

    /* Esconde os títulos, subtítulo e botões */
    .hero-text .dynamic-h1,
    .hero-buttons,
    .hero-text p#dynamic-subtitle {
        display: none;
    }

    /* --- 3. (ESTILOS ANTIGOS DOS TÍTULOS - AGORA OCULTOS) --- */
    .hero-text .dynamic-h1 {
        align-items: center;
        gap: 0.25rem; /* Menor espaço entre os blocos de título e preço */
        width: 100%;
    }
    .hero-text .mobile-title-wrapper,
    .hero-text .mobile-price-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-title-main { font-size: 2rem; font-weight: 700; color: var(--dark-color); line-height: 1.2; }
    .hero-title-sub { font-size: 1.8rem; font-weight: 400; color: var(--dark-color); }
    .hero-title-highlight { font-size: 2.5rem; font-weight: 800; }
    
    .mobile-price-wrapper { margin: 1rem 0 1.5rem 0; }
    .hero-price-pre { font-size: 1.1rem; color: var(--text-color); }
    .hero-price-main { font-size: 2.8rem; font-weight: 800; color: var(--primary-color); line-height: 1; }
    .hero-price-currency { font-size: 1.5rem; vertical-align: top; margin-right: 4px; }

    /* --- 4. ESTILIZAÇÃO DO FORMULÁRIO NA HERO --- */
    .hero-section .hero-form-card {
        display: block;
        width: 100%;
    }
    .hero-form-card form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .hero-form-card input {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        font-size: 1rem;
        background-color: var(--light-gray-color);
        transition: border-color 0.3s, box-shadow 0.3s;
    }
    .hero-form-card input:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(67, 168, 162, 0.2);
    }
    .hero-form-card button {
        width: 100%;
        font-size: 1.1rem;
        padding: 16px;
    }

   
}
/* ============================
   CORREÇÃO FORMULÁRIO RESPONSIVO
============================ */
@media (max-width: 768px) {
    .quick-horizontal-form {
        flex-direction: column; /* Altera a direção do flex para vertical */
        align-items: stretch;   /* Faz os itens esticarem para preencher a largura */
    }

    .quick-horizontal-form button {
        width: 100%; /* Garante que o botão ocupe toda a largura */
    }
}
/* =========================================================
   === CORREÇÕES GERAIS DE RESPONSIVIDADE PARA MOBILE ===
========================================================= */
@media (max-width: 768px) {

    /* --- Seção de Garantia --- */
    .guarantee-box {
        flex-direction: column; /* Empilha o ícone e o texto */
        text-align: center;
        padding: 30px 20px;
    }

    .guarantee-seal {
        margin-right: 0; /* Remove a margem lateral */
        margin-bottom: 25px; /* Adiciona espaço abaixo do ícone */
    }

    /* --- Seção de Preços --- */
    .pricing-grid-premium {
        grid-template-columns: 1fr; /* Faz cada card ocupar uma linha inteira */
        gap: 25px;
    }

    .price-card-premium.featured {
        transform: none; /* Remove o efeito de 'zoom' no plano em destaque */
    }

    /* --- Seção de Etapas do Processo --- */
    .process-timeline {
        flex-direction: column; /* Empilha os passos verticalmente */
        align-items: center; /* Centraliza os passos */
        gap: 2rem;
    }

    .step-connector {
        display: none; /* Esconde a linha conectora que não faz sentido no vertical */
    }

    /* --- BÔNUS: Ajuste na lista de features da CTA Intermediária --- */
    /* Essa seção está oculta no mobile, mas caso a reative, isso vai corrigir o grid de ícones dela também */
    .features-icon-grid {
        grid-template-columns: repeat(2, 1fr); /* Organiza os ícones em duas colunas */
        gap: 25px;
    }
}
/* =================================================================== */
/* ============= NOVA ESTILIZAÇÃO DE PREÇOS (ESTILO PREMIUM) ============= */
/* =================================================================== */

/* --- Container e Grid --- */
.premium-pricing-section {
    padding: 100px 0; /* Mais espaço vertical para o efeito de elevação */
    background-color: #f0f4f8; /* Um fundo levemente azulado combina melhor */
}

.pricing-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center; /* Alinha os cards na base */
}

/* --- Estilo Base do Card --- */
.price-card-premium {
    color: #ffffff;
    border-radius: 20px;
    padding: 40px 30px 140px 30px; /* Aumentamos o padding inferior para criar espaço para o botão */
    text-align: center;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 50, 100, 0.1);
    position: relative; /* Essencial para posicionar o botão e a curva */
    overflow: hidden; /* Garante que a curva não vaze para fora */
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

/* --- Gradientes Específicos para cada Card --- */
.price-card-premium:nth-child(1) {
    background: linear-gradient(135deg, #1de9b6, #1dd3a3);
}
.price-card-premium.featured { /* Card do Meio (Destaque) */
    background: linear-gradient(135deg, #ff8a65, #ff5722);
    transform: translateY(-20px) scale(1.05); /* Efeito de elevação */
    z-index: 10;
}
.price-card-premium:nth-child(3) {
    background: linear-gradient(135deg, #ab47bc, #8e24aa);
}


/* --- A MÁGICA: Curva branca inferior usando Pseudo-elemento --- */
.price-card-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: #ffffff;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    z-index: 1;
}

/* --- Cabeçalho do Card (Nome do Plano) --- */
.price-card-premium .card-header h3 {
    display: inline-block;
    padding: 7px 25px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.price-card-premium .card-header p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 15px;
    margin-bottom: 25px;
    min-height: 40px;
}

/* --- Preço --- */
.price-card-premium .card-price {
    display: flex;
    justify-content: center;
    align-items: baseline; /* Alinha o R$ com a base do número grande */
    margin-bottom: 30px;
    min-height: auto;
}
.card-price-main {
    font-size: 4rem;
    font-weight: 700;
}
.card-price-main.custom-price { /* Ajuste para o texto "Sob Consulta" */
    font-size: 2.2rem;
    line-height: 1.2;
    margin-top: 0;
}
.card-price-parcelado {
    font-size: 1rem;
    font-weight: 400;
    margin-left: 5px;
    opacity: 0.8;
}

/* --- Lista de Recursos --- */
.price-card-premium .card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    flex-grow: 1; /* Empurra o botão para baixo */
}
.price-card-premium .card-features li {
    padding: 12px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
}
.price-card-premium .card-features li:last-child {
    border-bottom: none;
}
.price-card-premium .card-features li i {
    font-size: 1rem;
    margin-right: 12px;
}
.price-card-premium .card-features li strong {
    font-weight: 700;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
}


/* --- Botão CTA --- */
.btn-card {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2; /* Fica acima da curva branca */
    padding: 15px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- Cores dos botões combinando com os cards --- */
.price-card-premium:nth-child(1) .btn-card { background: #1de9b6; color: #004d40; }
.price-card-premium.featured .btn-card { background: #ff6e40; color: #ffffff; }
.price-card-premium:nth-child(3) .btn-card { background: #ab47bc; color: #ffffff; }

.btn-card:hover {
    transform: translateX(-50%) translateY(-3px); /* Efeito de elevação no hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* --- Remove o Badge Antigo (se ainda existir) --- */
.featured-badge { display: none; }


/* --- Nota de Rodapé da Manutenção (Ajustada) --- */
.pricing-footer-note {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 12px;
}

/* ====================================================== */
/* ============= AJUSTES RESPONSIVOS PARA PREÇOS ============= */
/* ====================================================== */

@media (max-width: 992px) {
    .pricing-grid-premium {
        grid-template-columns: 1fr;
        gap: 50px; /* Aumenta o espaço quando os cards estão empilhados */
    }
    .price-card-premium.featured {
        transform: none; /* Remove a elevação em telas menores para não quebrar o layout */
    }
}
/* ======================================================= */
/* CONTROLE FINAL: Formulário da Hero (Apenas Mobile) */
/* ======================================================= */

/* 1. Por padrão (desktop), o formulário na Hero é escondido */
.hero-section .cta-form-card {
    display: none;
}

/* 2. Em telas de 768px ou menores (mobile), o formulário é exibido */
@media (max-width: 768px) {
    .hero-section .cta-form-card {
        display: block;
        margin-top: 2.5rem; /* Espaçamento para não colar nos botões */
    }
}