/* Importação de fonte, por exemplo, 'Open Sans' do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

/* Variáveis CSS para Cores - Reestabelecidas para a essência original */
:root {
    --color-dark-brown: #5c4e38; /* Cor escura do Top Bar / Fundo do Plano Destaque */
    --color-light-brown: #a08c5f; /* Cor do logo e detalhes dourados/bege */
    --color-white: #ffffff;
    --color-text-dark: #333333;
    --color-text-light: #eeeeee; /* Usado para texto em fundos escuros */
    --color-background-light: #f7f7f7; /* Fundo claro para algumas seções */
    --color-border-light: #e0e0e0; /* Bordas claras */
    --color-button-light-bg: #e0e0e0; /* Fundo de botão claro */
    --color-button-light-text: var(--color-text-dark); /* Texto de botão claro */
    --color-button-highlight-bg: var(--color-light-brown); /* Fundo de botão destaque */
    --color-button-highlight-text: var(--color-white); /* Texto de botão destaque */
}

/* Reset básico e tipografia */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

/* Utilitário para centralizar conteúdo */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =================================== */
/* 1. CABEÇALHO (HEADER) */
/* =================================== */

.main-header {
    width: 100%;
}

/* --- Top Bar (Barra Superior) --- */
.top-bar {
    background-color: var(--color-dark-brown);
    color: var(--color-white);
    font-size: 0.85em;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info i {
    color: var(--color-light-brown);
    margin-right: 5px;
}

.contact-info {
    margin-right: 20px;
}

.social-icons a {
    color: var(--color-white);
    margin-left: 15px;
    font-size: 1.1em;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--color-light-brown);
}

/* --- Nav Bar (Barra de Navegação Principal) --- */
.nav-bar {
    background-color: var(--color-white);
    padding: 15px 0;
    border-bottom: 1px solid #eee; 
    position: relative; 
}

.nav-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    width: 100px; 
    height: 100px;
}

.logo-text .company-name {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--color-text-dark);
}

.logo-text .service-tag {
    font-size: 0.8em;
    color: var(--color-text-dark);
    text-transform: uppercase;
}

/* Navegação */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 400;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-light-brown);
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--color-light-brown);
    transition: width 0.3s ease-in-out;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Estilo para o Botão do Menu Hamburger (Desktop: escondido) */
.menu-toggle {
    display: none; 
    background: none;
    border: none;
    font-size: 1.5em;
    color: var(--color-dark-brown);
    cursor: pointer;
    padding: 5px;
    align-self: center; 
}

/* =================================== */
/* 2. SEÇÃO BANNER/HERO */
/* =================================== */

.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('imagens/fundosite.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    text-align: center;
    padding: 150px 0; 
    min-height: 500px; 
    display: flex;
    align-items: center; 
}

.hero-content h1 {
    font-size: 3em;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25em;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Estilos para os botões do Banner */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #3b3b3b; 
    color: var(--color-white);
    border-color: #3b3b3b;
}

.btn-primary:hover {
    background-color: var(--color-light-brown);
    border-color: var(--color-light-brown);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-text-dark); 
}

/* =================================== */
/* 3. SEÇÃO DE ESTATÍSTICAS (STATS) */
/* =================================== */

.stats-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--color-background-light); 
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    flex-basis: 200px; 
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--color-dark-brown); 
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1em;
    font-weight: 400;
    color: var(--color-text-dark);
}

/* =================================== */
/* 4. SEÇÃO NOSSOS SERVIÇOS */
/* =================================== */

.services-section {
    padding: 80px 0;
    text-align: center;
}

.section-heading {
    margin-bottom: 50px;
    text-align: center;
}

.section-heading h2 {
    font-size: 2.2em;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.section-heading p {
    font-size: 1.1em;
    color: #666;
}

/* Grid de Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

.service-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    padding: 30px;
    text-align: left;
    transition: box-shadow 0.3s, transform 0.3s;
    height: 100%; 
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.card-icon {
    background-color: #f2f2f2; 
    color: var(--color-dark-brown); 
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25em;
    font-weight: 600;
    color: var(--color-dark-brown);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0; 
}

.card-body {
    flex-grow: 1; 
}

.card-body p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 15px;
}

.card-body ul {
    list-style: none;
    padding-left: 0;
}

.card-body ul li {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

/* Estilo para o bullet point da lista de serviços */
.card-body ul li::before {
    content: "\2022"; 
    color: var(--color-light-brown); 
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
    top: 0;
}


/* =================================== */
/* 5. SEÇÃO PLANOS DE ASSISTÊNCIA (SWIPER/CARROSSEL DE DESKTOP) */
/* =================================== */

.plans-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

/* Container de Rolagem (Desktop: Flexbox/Carrossel) */
.plans-grid-scroll {
    /* Retorna a rolagem horizontal para o modo Carrossel no Desktop */
    display: flex; 
    gap: 30px;
    padding-bottom: 20px; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    width: 100%;
}

.plans-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    /* Devolve o padding lateral para as setas */
    padding: 0 60px;
    overflow: visible; 
}

/* Ajustes de Largura de Card para Flexbox/Carrossel no Desktop */
.plan-card {
    /* Largura fixa para 3 cards por viewport no desktop */
    width: 360px; 
    min-width: 360px; 
    flex-shrink: 0; 
    scroll-snap-align: start; 
    
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    transition: box-shadow 0.3s;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

/* Ajustes de Margem (para o carrossel) */
.plans-grid-scroll > .plan-card:first-child {
    margin-left: 0; 
}
.plans-grid-scroll > .plan-card:last-child {
    margin-right: 0; 
}

/* Estilo Básico do Card do Plano */
.plan-card.classic,
.plan-card.familiar {
    background-color: #fcfcfc; /* Fundo quase branco */
    border: 1px solid var(--color-border-light);
}

/* Plano Memorial (Destaque/Cor Escura) */
.plan-card.memorial {
    background-color: var(--color-dark-brown); /* Marrom escuro */
    color: var(--color-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
    position: relative;
    padding-top: 30px; 
}

/* Títulos, Preços */
.plan-card h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark-brown); /* Padrão */
}
.plan-card.memorial h3 {
    color: var(--color-white); /* Branco para o plano destaque */
}

.plan-price {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-dark-brown); /* Padrão */
}
.plan-card.memorial .plan-price {
    color: var(--color-light-brown); /* Marrom claro para o plano destaque */
}

.plan-price span {
    font-size: 0.5em;
    font-weight: 400;
    margin-left: 5px;
}

/* Lista de Recursos/Features */
.plan-features {
    margin-bottom: 30px;
    flex-grow: 1; 
}

.plan-features ul {
    list-style: disc; 
    list-style-position: inside; 
    padding: 0 0 0 10px; 
}

.plan-features ul li {
    font-size: 0.95em;
    margin-bottom: 8px;
    position: relative;
    padding-left: 0px; 
    line-height: 1.3; 
    color: var(--color-text-dark); /* Padrão */
}

.plan-card.memorial .plan-features ul li {
    color: var(--color-text-light); /* Texto claro para o plano destaque */
}

/* Botões de Contratação */
.btn-plan-primary, .btn-plan-secondary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

/* Botão do Plano Claro */
.btn-plan-primary {
    background-color: var(--color-button-light-bg); 
    color: var(--color-button-light-text);
}
.btn-plan-primary:hover {
    background-color: var(--color-light-brown);
    color: var(--color-white);
}

/* Botão do Plano Escuro (Destaque) */
.btn-plan-secondary {
    background-color: var(--color-button-highlight-bg);
    color: var(--color-dark-brown); /* Texto marrom escuro no botão destaque */
    border: 2px solid var(--color-button-highlight-bg);
}
.btn-plan-secondary:hover {
    background-color: #a08c5f; /* Um tom ligeiramente diferente no hover */
    color: var(--color-white);
}

/* Estilo do BOTÃO DE SCROLL (Manual) - Visível no Desktop */
.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background-color: #8c7254; /* Cor de fundo das setas */
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: opacity 0.3s, background-color 0.3s;
    margin: 0;
    /* Por padrão, eles estão visíveis para o Desktop */
}

.scroll-button.left {
    left: 0px; 
    transform: translate(-100%, -50%); 
}
.scroll-button.right {
    right: 0px; 
    transform: translate(100%, -50%); 
}

.scroll-button i {
    font-size: 1.2em; 
}


/* =================================== */
/* 7. SEÇÃO POR QUE TER UM PLANO */
/* =================================== */

.why-plan-section {
    padding-top: 100px;
    padding-bottom: 50px; 
    background-color: #fcfcfc; 
    position: relative;
}

.why-plan-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 80px; 
}

/* Bloco de Título */
.why-plan-text {
    flex-basis: 40%;
}

.why-plan-text h1 {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--color-dark-brown);
    line-height: 1.2;
}

/* Bloco de Descrição */
.why-plan-description {
    flex-basis: 60%;
    padding-top: 10px; 
}

.why-plan-description p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* --- Linha de Ícones/Estatísticas Inferiores --- */

.why-plan-stats {
    position: relative;
    z-index: 2; 
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    text-align: center;
    padding: 30px 0;
}

.stat-icon-item {
    flex-basis: 25%;
    padding: 0 10px;
}

.stat-icon-item i {
    font-size: 3em;
    color: var(--color-dark-brown); 
    margin-bottom: 15px;
}

.stat-icon-item .stat-icon-number {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--color-dark-brown); 
    margin-bottom: 5px;
}

.stat-icon-item .stat-icon-label {
    font-size: 1em;
    color: #555;
}

/* =================================== */
/* 8. SEÇÃO SOBRE A EMPRESA */
/* =================================== */

.about-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--color-white);
}

.about-section h2 {
    font-size: 2.2em;
    color: var(--color-dark-brown);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content-grid {
    display: flex;
    align-items: center; 
    gap: 50px;
}

.about-text-column {
    flex-basis: 55%; 
}

.about-text-column p {
    font-size: 1.05em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.about-text-column p strong {
    font-weight: 600;
    color: var(--color-dark-brown);
}

.about-image-column {
    flex-basis: 45%;
    text-align: center;
}

/* Reutilizando e ajustando estilos do logo para o bloco Sobre */
.about-logo-area {
    display: block; 
    text-align: center;
}

.about-logo-area .logo-image.large {
    width: 350px; 
    height: 350px;
    margin-bottom: 15px;
}

/* --- Ícones de Destaque da Coluna de Texto --- */

.about-highlights {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.highlight-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 15px;
}

.highlight-item i {
    font-size: 2em;
    color: var(--color-dark-brown); 
    background-color: #f2f2f2; 
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlight-item h4 {
    font-size: 1em;
    font-weight: 600;
    color: var(--color-dark-brown);
    margin: 0;
}

.highlight-item p {
    font-size: 0.9em;
    color: #888;
    margin: 0;
}


/* =================================== */
/* 9. SEÇÃO BANNER MOTIVACIONAL */
/* =================================== */

.banner-motivacional {
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0.4)),
        url('imagens/fundosite_2.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 0; 
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-motivacional-content {
    max-width: 800px;
}

.banner-motivacional-content h2 {
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-dark-brown); 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); 
}

/* =================================== */
/* 10. SEÇÃO ENTRE EM CONTATO / FORMULÁRIO */
/* =================================== */

.contact-section {
    background-color: var(--color-dark-brown);
    padding: 80px 0;
}

.contact-header {
    text-align: center;
    color: var(--color-white);
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 1.1em;
    opacity: 0.8;
}

.contact-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* --- Coluna da Esquerda: Informações --- */
.contact-info-column {
    flex-basis: 40%;
    color: var(--color-white);
}

.contact-info-column h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.info-item i {
    font-size: 1.2em;
    color: var(--color-light-brown);
    margin-top: 3px;
}

.info-details h4 {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-details p {
    font-size: 0.95em;
    line-height: 1.4;
    color: var(--color-text-light);
    opacity: 0.9;
    margin: 0;
}

/* --- Coluna da Direita: Formulário --- */
.contact-form-column {
    flex-basis: 60%;
}

.contact-form-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 5px;
}

.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    color: var(--color-text-dark);
    transition: border-color 0.3s;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    border-color: var(--color-light-brown);
    outline: none;
}

.contact-form-card textarea {
    resize: vertical;
}

/* Botão de Envio */
.btn-submit {
    background-color: var(--color-button-light-bg); 
    color: var(--color-button-light-text);
    padding: 12px 20px;
    font-size: 1em;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn-submit i {
    margin-right: 10px;
}

.btn-submit:hover {
    background-color: var(--color-light-brown);
    color: var(--color-white);
}

/* =================================== */
/* 11. RODAPÉ (FOOTER) */
/* =================================== */

.main-footer {
    background-color: #3a3114;
    color: var(--color-text-light);
    padding-top: 50px;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr; 
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--color-white);
}

/* --- Coluna 1: Info --- */
.footer-logo-area {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    filter: brightness(1.2); 
}

.footer-text .company-name {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
}

.footer-description {
    font-size: 0.9em;
    line-height: 1.5;
    opacity: 0.8;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social-icons .social-icon-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #8c7254; 
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1em;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.footer-social-icons .social-icon-btn:hover {
    background-color: var(--color-light-brown);
}

/* --- Coluna 2: Links --- */
.footer-col-links ul {
    list-style: none;
    padding: 0;
}

.footer-col-links li a {
    text-decoration: none;
    color: var(--color-text-light);
    font-size: 0.95em;
    line-height: 2.2;
    opacity: 0.9;
    transition: color 0.3s;
    display: block;
}

.footer-col-links li a:hover {
    color: var(--color-light-brown);
    opacity: 1;
}

/* --- Coluna 3: Emergência --- */
.emergency-number {
    font-size: 1.1em;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-decoration: underline; 
}

.emergency-details {
    font-size: 0.95em;
    line-height: 1.4;
    opacity: 0.9;
}

/* --- Bottom Bar --- */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.85em;
    opacity: 0.7;
    margin: 0;
}

/* =================================== */
/* 12. RESPONSIVIDADE GERAL */
/* =================================== */

/* PONTO DE INTERRUPÇÃO 1: 1200px (Desktop Menor/Grandes Tablets) */
@media (max-width: 1200px) {
    /* Serviços */
    .services-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    
    /* Planos: Ajusta a largura do container para o carrossel caber melhor */
    .plans-slider-container {
        padding: 0 15px; 
    }
    .scroll-button.left {
        transform: translate(-50%, -50%); /* Ajusta as setas para ficarem mais próximas nas bordas */
        left: 15px;
    }
    .scroll-button.right {
        transform: translate(50%, -50%);
        right: 15px;
    }
    
    /* Sobre */
    .about-content-grid {
        flex-direction: column;
        gap: 40px;
    }
    .about-image-column {
        order: -1; 
    }
    .about-text-column,
    .about-image-column {
        flex-basis: 100%;
        text-align: center;
    }
    
    /* Por Que Plano */
    .why-plan-content {
        flex-direction: column;
        gap: 30px;
    }
    .why-plan-text h1 {
        font-size: 2.2em;
    }
    .why-plan-stats {
        flex-wrap: wrap;
        padding-top: 0;
        gap: 30px;
    }
    .stat-icon-item {
        flex-basis: 45%; 
    }
}

/* PONTO DE INTERRUPÇÃO 2: 992px (Tablets em Paisagem) */
@media (max-width: 992px) {
    
    /* === AJUSTE DO BOTÃO HAMBURGER E MENU (Corrigido) === */
    .nav-bar-content {
        flex-direction: row; 
        justify-content: space-between;
        align-items: center;
    }
    
    .menu-toggle {
        display: block; 
        margin: 0; 
    }
    
    .main-nav {
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background-color: var(--color-white); 
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    
    .main-nav.is-open {
        max-height: 500px; 
    }
    
    .main-nav ul {
        flex-direction: column; 
        gap: 0; 
        padding: 10px 0;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
    }
    /* === FIM AJUSTE DO BOTÃO HAMBURGER === */
    
    /* Outras seções */
    .hero-content h1 {
        font-size: 2.5em;
    }
    
    /* === PLANOS EMPILHADOS: 2 COLUNAS EM TABLETS === */
    .plans-grid-scroll {
        /* Muda de Flexbox para Grid para empilhar */
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 colunas */
        gap: 25px;
        /* Desativa o carrossel forçando o grid */
        overflow-x: visible; 
        scroll-snap-type: none; 
    }
    
    .plan-card {
        width: 100%; /* Ocupa a largura total da coluna do Grid */
        min-width: unset; 
    }
    
    .plans-slider-container {
        padding: 0 15px; /* Remove o padding extra para as setas */
    }
    .scroll-button {
        display: none !important; /* Esconde as setas quando não há carrossel */
    }
    /* === FIM PLANOS EMPILHADOS === */

    /* Footer */
    .footer-content-grid {
        grid-template-columns: 1fr 1fr; 
    }
    .footer-col-info {
        grid-column: 1 / -1; 
    }

    /* === AJUSTE DE CONTATO (CENTRALIZAÇÃO) === */
    .contact-grid {
        flex-direction: column;
        gap: 30px;
        align-items: center; 
    }
    .contact-info-column,
    .contact-form-column {
        flex-basis: 100%;
        max-width: 500px; 
    }
    
    .contact-info-column h3 {
        text-align: center; 
    }
    
    .info-item {
        justify-content: center; 
        text-align: center; 
    }
    /* === FIM AJUSTE DE CONTATO === */
}

/* PONTO DE INTERRUPÇÃO 3: 768px (Tablets em Retrato/Grandes Celulares) */
@media (max-width: 768px) {
    /* Top Bar */
    .top-bar-content {
        flex-direction: column;
        gap: 5px;
    }
    .contact-info:first-child {
        display: none; 
    }

    /* Banner */
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .btn {
        width: 100%; 
        max-width: 300px; 
        margin: 0 auto;
    }
    
    /* Serviços */
    .services-grid {
        grid-template-columns: 1fr; /* Uma coluna */
    }
    
    /* === PLANOS EMPILHADOS: 1 COLUNA EM MOBILE === */
    .plans-grid-scroll {
        grid-template-columns: 1fr; /* 1 card por linha */
        gap: 25px; 
        overflow-x: visible; 
        scroll-snap-type: none; 
    }
    .plans-slider-container {
        padding: 0 15px; 
    }
    
    .plan-card {
        width: 100%; 
        min-width: unset; 
    }
    /* === FIM AJUSTE DOS PLANOS === */
    
    /* Sobre/Why Plan */
    .highlight-item {
        flex-basis: 100%;
        justify-content: center;
    }
    .stat-icon-item {
        flex-basis: 100%; 
    }
    .banner-motivacional-content h2 {
        font-size: 1.8em;
    }
    
    /* Contato: Ajusta o alinhamento central */
    .contact-info-column,
    .contact-form-column {
        max-width: 100%; /* Remove a limitação para usar toda a largura do container */
    }
    .info-item {
        justify-content: flex-start;
        text-align: left; 
    }
    .contact-info-column h3 {
        text-align: left;
    }
}

/* PONTO DE INTERRUPÇÃO 4: 600px (Celulares) */
@media (max-width: 600px) {
    .footer-content-grid {
        grid-template-columns: 1fr; /* Coluna única */
        text-align: center;
    }
    
    .footer-col-info {
        order: 1;
    }
    .footer-col-links {
        order: 2;
    }
    .footer-col-emergency {
        order: 3;
    }

    .footer-logo-area {
        justify-content: center;
    }
    .footer-description {
        margin: 0 auto 20px auto;
    }
    .footer-col-links ul {
        width: fit-content;
        margin: 0 auto;
    }
}

/* =================================== */
/* 13. BOTÃO WHATSAPP FLUTUANTE */
/* =================================== */

.whatsapp-float {
    /* Posicionamento Fixo no canto inferior direito */
    position: fixed; 
    bottom: 30px; /* Distância da parte inferior */
    right: 30px; /* Distância da lateral direita */
    z-index: 9999; /* Garante que fique acima de todos os outros elementos */

    /* Estilo do Botão */
    background-color: #25D366; /* Cor verde oficial do WhatsApp */
    color: var(--color-white);
    width: 60px; 
    height: 60px;
    border-radius: 50%; /* Redondo */
    
    /* Centraliza o ícone */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background-color 0.3s;
}

.whatsapp-float:hover {
    background-color: #128C7E; /* Cor um pouco mais escura no hover */
    transform: scale(1.05); /* Pequena animação */
}

/* Responsividade para telas menores */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px; 
        right: 20px;
        width: 50px; 
        height: 50px;
        font-size: 24px;
    }
}