/* Variáveis de cores e tipografia */
:root {
    --indigo: #2c3e50;
    --indigo-light: #34495e;
    --indigo-dark: #1a252f;
    --accent: #3498db;
    --light: #ecf0f1;
    --white: #ffffff;
    --gray: #95a5a6;
    --dark-gray: #7f8c8d;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: 'Arial', sans-serif;
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    color: var(--indigo);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--indigo);
}

p {
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--indigo);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin: 15px auto 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
}

.btn-secondary {
    background-color: transparent;
    color: var(--indigo);
    border: 2px solid var(--indigo);
}

.btn-secondary:hover {
    background-color: var(--indigo);
    color: var(--white);
}

/* Header e Navegação */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 24px;
    color: var(--indigo);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--indigo);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* ============================================
   MENU HAMBURGUER PARA MOBILE
   ============================================ */

/* 1. BOTÃO HAMBURGUER */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: #1e40af;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 2. MENU PARA DESKTOP (mostrar sempre) */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

/* 3. MENU PARA MOBILE (esconder e mostrar só quando clicar) */
@media (max-width: 768px) {
    /* Esconder os links no mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 80px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    /* Mostrar menu quando ativo */
    .nav-links.active {
        right: 0;
    }
    
    /* Estilo dos itens do menu */
    .nav-links li {
        margin: 0 0 25px 0;
        width: 80%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 12px;
        background: #f8fafc;
        border-radius: 8px;
        font-size: 16px;
        color: #334155;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: #1e40af;
        color: white;
    }
    
    /* Mostrar botão hamburger no mobile */
    .menu-toggle {
        display: flex;
    }
    
    /* Animação do hamburger para X */
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* 4. FUNDO ESCURO QUANDO MENU ABERTO */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

/* Banner Home */
.banner {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('campo\ de\ cima.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.banner h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 300;
    color: var(--light);
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-style: italic;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Seção Quem Sou Eu */
/* ============================================
   LAYOUT FOTO ESQUERDA / TEXTO DIREITA
   ============================================ */

   .about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* SEÇÃO DA FOTO */
.about-photo-section {
    flex: 0 0 300px;
    position: sticky;
    top: 100px;
}

.photo-container {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #eee;
}

.william-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
    margin-bottom: 20px;
}

.photo-info h3 {
    color: var(--indigo);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.photo-info p {
    color: var(--dark-gray);
    margin: 5px 0;
    font-size: 0.95rem;
}

.photo-info i {
    color: var(--accent);
    margin-right: 5px;
}

/* SEÇÃO DO TEXTO */
.about-text {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--indigo-light);
}

/* ============================================
   RESPONSIVIDADE - CELULAR
   ============================================ */

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-photo-section {
        flex: none;
        width: 100%;
        position: static;
        order: 2; /* Coloca a foto DEPOIS do texto no mobile */
    }
    
    .photo-container {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-text {
        order: 1; /* Coloca o texto ANTES da foto no mobile */
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .william-photo {
        width: 200px;
        height: 200px;
    }
    
    .photo-container {
        padding: 15px;
    }
}
/* Seção Serviços */
/* Estilos para a seção de serviços balanceada */
.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--indigo);
}

.service-card p {
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.service-card ul {
    list-style: none;
    margin-top: 10px;
    flex-grow: 1;
}

.service-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}

.service-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.service-card ul li:last-child {
    border-bottom: none;
}

/* Estilos específicos para psicoterapia */
.therapy-section {
    margin-bottom: 20px;
}

.therapy-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--indigo-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.therapy-section ul {
    margin-top: 5px;
}

.therapy-section ul li {
    font-size: 14px;
    padding: 6px 0;
    padding-left: 18px;
}

.therapy-section ul li:before {
    content: '•';
    color: var(--accent);
}

.therapy-final {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid var(--accent);
    margin-top: 15px;
    font-style: italic;
}

/* Garantir que todos os cards tenham a mesma altura */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* ============================================
   ESTRATÉGIA DE PREÇOS COM DESCONTO
   ============================================ */

   .section-subtitle {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* BADGE DOS PLANOS */
.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(238, 90, 36, 0.3);
    z-index: 1;
}

/* PREÇO ORIGINAL COM RISCO */
.pricing-original {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.original-price {
    color: var(--gray);
    text-decoration: line-through;
    font-size: 1.1rem;
}

.discount-tag {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* PREÇO PROMOCIONAL DESTACADO */
.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0;
}

.currency {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 600;
    align-self: flex-start;
    margin-top: 5px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--indigo);
    line-height: 1;
}

.cents {
    font-size: 1.5rem;
    color: var(--indigo);
    font-weight: 600;
    align-self: flex-start;
    margin-top: 5px;
}

.economy {
    text-align: center;
    color: #27ae60;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
    background: rgba(39, 174, 96, 0.1);
    padding: 5px;
    border-radius: 5px;
}

/* CHECKLIST MELHORADA */
.pricing-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #2ecc71;
    font-size: 1.1rem;
}

/* BOTÃO DESTACADO */
.btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent), #2980b9);
    border: none;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

/* PREÇOS AVULSOS */
.avulsos-subtitle {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.avulso-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0;
}

.avulso-price .original {
    color: var(--gray);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.avulso-price .promo {
    color: var(--indigo);
    font-size: 2rem;
    font-weight: 700;
    margin: 5px 0;
}

.btn-small {
    display: inline-block;
    padding: 8px 20px;
    background: var(--indigo-light);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.btn-small:hover {
    background: var(--accent);
    color: white;
}

/* RODAPÉ DOS PREÇOS */
.pricing-footer {
    margin-top: 50px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.pricing-footer p {
    margin: 10px 0;
    color: var(--indigo-light);
}

.pricing-footer i {
    color: var(--accent);
    margin-right: 10px;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .pricing-badge {
        right: 10px;
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .amount {
        font-size: 2.8rem;
    }
    
    .currency, .cents {
        font-size: 1.2rem;
    }
}
/* Seção Contato */
/* ============================================
   SEÇÃO CONTATO - LAYOUT ORIGINAL
   ============================================ */

   .contact {
    background-color: #f8f9fa;
}

.contact-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* FORMULÁRIO (ESQUERDA) */
.contact-form {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #10b981;
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* Botão WhatsApp */
.btn-primary[style*="background-color: #25D366"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    padding: 15px;
    transition: all 0.3s ease;
}

.btn-primary[style*="background-color: #25D366"]:hover {
    background-color: #128C7E !important;
    transform: translateY(-2px);
}

/* INFORMAÇÕES (DIREITA) */
.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 5px;
    color: #1e40af;
}

.contact-item p {
    margin-bottom: 8px;
    color: #4b5563;
}

.btn-contact-link {
    display: inline-block;
    padding: 6px 15px;
    background: #1e40af;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-contact-link:hover {
    background: #10b981;
    color: white;
}

/* REDES SOCIAIS */
.social-links h3 {
    margin-bottom: 15px;
    color: #1e40af;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    color: #334155;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link.whatsapp:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    border-color: transparent;
}

.social-link.tiktok:hover {
    background: #000000;
    color: white;
    border-color: #000000;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-form,
    .contact-info {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Rodapé */
footer {
    background-color: var(--indigo-dark);
    color: var(--light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.footer-about {
    max-width: 100%;
}

.footer-about p {
    margin-bottom: 15px;
    color: var(--light);
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h3,
.footer-social h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-links a {
    color: var(--light);
    margin-bottom: 10px;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--accent);
    opacity: 1;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--indigo-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.footer-social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .footer-social-links {
        justify-content: center;
    }
}
/* ============================================
   CORREÇÕES RESPONSIVAS - DESKTOP E MOBILE
   ============================================ */

/* 1. CORREÇÃO BASE PARA TODOS */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* 2. MEDIA QUERY APENAS PARA MOBILE */
/* Isso NÃO afeta o desktop */
@media screen and (max-width: 768px) {
    
    /* Container mobile */
    .container {
        padding: 0 15px !important;
    }
    
    /* Banner mobile */
    .banner {
        min-height: 100vh;
        height: auto;
        padding: 100px 20px 50px;
    }
    
    .banner h1 {
        font-size: 2rem !important;
    }
    
    .banner h2 {
        font-size: 1.2rem !important;
    }
    
    .banner p {
        font-size: 1rem !important;
    }
    
    /* Seções mobile */
    .section {
        padding: 50px 15px !important;
    }
    
    /* Layouts coluna única */
    .about-content,
    .contact-content {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .about-image,
    .about-text,
    .contact-form,
    .contact-info {
        width: 100% !important;
    }
    
    /* Grids coluna única */
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    /* Botões em coluna */
    .btn-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Rodapé mobile */
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    /* Cards pricing mobile */
    .pricing-card.featured {
        transform: none !important;
    }
}

/* 3. MEDIA QUERY PARA TELAS MUITO PEQUENAS */
@media screen and (max-width: 480px) {
    .banner h1 {
        font-size: 1.8rem !important;
    }
    
    .banner h2 {
        font-size: 1.1rem !important;
    }
    
    .service-card,
    .pricing-card {
        padding: 20px !important;
    }
}

/* 4. MEDIA QUERY PARA DESKTOP (acima de 768px) */
/* Garante que desktop volte ao normal */
@media screen and (min-width: 769px) {
    .banner {
        height: 100vh;
        padding: 0;
    }
    
    .banner h1 {
        font-size: 3.5rem;
    }
    
    .banner h2 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .services-grid,
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* ============================================
   BANNER DE COOKIES
   ============================================ */

   .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1e293b;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    color: #cbd5e1;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: #10b981;
    color: white;
}

.btn-cookie.reject {
    background: #64748b;
    color: white;
}

.btn-cookie.customize {
    background: transparent;
    color: #60a5fa;
    border: 1px solid #60a5fa;
}

.btn-cookie:hover {
    transform: translateY(-2px);
}

/* Modal de personalização */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    color: #334155;
}

.cookie-option {
    margin: 20px 0;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.cookie-option label {
    display: block;
    cursor: pointer;
}

.cookie-option input {
    margin-right: 10px;
}

.cookie-option small {
    display: block;
    color: #64748b;
    margin-top: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}