/* Reset, Base e Variáveis */
:root {
    --primary-green: #2e8b57;
    --primary-blue: #4682b4;
    --gradient-primary: linear-gradient(135deg, #2e8b57 0%, #4682b4 100%);
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --success-green: #28a745;
    --error-red: #dc3545;
    --font-primary: "Playfair Display", serif;
    --font-secondary: "Inter", sans-serif;
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-large: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* ===== QUIZ DE SAÚDE ===== */
.quiz-saude-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.quiz-saude-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="quiz-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e0e0" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23quiz-grid)"/></svg>');
    opacity: 0.1;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.quiz-progress {
    margin-bottom: 40px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-text {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.quiz-content {
    min-height: 300px;
    margin-bottom: 40px;
}

.quiz-question {
    text-align: center;
    margin-bottom: 40px;
}

.quiz-question h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.quiz-option {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quiz-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 139, 87, 0.1), transparent);
    transition: left 0.5s ease;
}

.quiz-option:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.2);
}

.quiz-option:hover::before {
    left: 100%;
}

.quiz-option.selected {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1), rgba(70, 130, 180, 0.1));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
}

.quiz-option-emoji {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.quiz-option-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.quiz-option-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.quiz-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-quiz {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    justify-content: center;
}

.btn-start, .btn-finish {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
}

.btn-start:hover, .btn-finish:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 139, 87, 0.4);
}

.btn-previous, .btn-next {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}

.btn-previous:hover, .btn-next:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

/* ===== MODAL DE ANÁLISE ===== */
.quiz-analysis-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quiz-analysis-modal.active {
    opacity: 1;
    visibility: visible;
}

.quiz-analysis-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.analysis-animation {
    text-align: center;
    padding: 40px 20px;
}

.analysis-icon {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.analysis-animation h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 30px;
}

.analysis-progress {
    margin: 30px 0;
}

.analysis-progress-bar {
    width: 100%;
    height: 12px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.analysis-progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 0.1s ease;
    width: 0%;
}

.analysis-percentage {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.analysis-text {
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

.analysis-result {
    text-align: left;
}

.result-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.result-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.result-subtitle {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 600;
}

.result-content {
    line-height: 1.6;
    color: #333;
}

.result-content h4 {
    color: var(--primary-green);
    margin: 25px 0 15px 0;
    font-size: 1.2rem;
}

.result-content p {
    margin-bottom: 15px;
}

.result-cta {
    background: linear-gradient(135deg, #e8f5e8, #f0f8ff);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    border-left: 5px solid var(--primary-green);
}

.result-cta h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.result-cta-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.result-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 139, 87, 0.4);
}

.close-analysis {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-analysis:hover {
    color: #333;
}

/* Responsividade do Quiz */
@media (max-width: 768px) {
    .quiz-saude-section {
        padding: 60px 0;
    }
    
    .quiz-container {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .quiz-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quiz-option {
        padding: 15px;
    }
    
    .quiz-option-emoji {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .quiz-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-quiz {
        width: 100%;
        max-width: 300px;
    }
    
    .quiz-analysis-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .analysis-icon {
        font-size: 3rem;
    }
    
    .analysis-animation h3 {
        font-size: 1.3rem;
    }
    
    .result-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .quiz-question h3 {
        font-size: 1.3rem;
    }
    
    .quiz-option-text {
        font-size: 1rem;
    }
    
    .quiz-option-desc {
        font-size: 0.85rem;
    }
    
    .btn-quiz {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

/* Seção de Diferenciação */
.diferenciacao-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.diferenciacao-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e0e0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.diferenciacao-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.diferenciacao-intro {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.comparacao-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.comparacao-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comparacao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: all 0.3s ease;
}

.medicina-convencional::before {
    background: linear-gradient(90deg, #dc3545, #c82333);
}

.medicina-ortomolecular::before {
    background: linear-gradient(90deg, #28a745, #20c997);
}

.comparacao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.comparacao-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.medicina-convencional .comparacao-title {
    color: #dc3545;
}

.medicina-ortomolecular .comparacao-title {
    color: #28a745;
}

.comparacao-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    border-radius: 2px;
}

.medicina-convencional .comparacao-title::after {
    background: #dc3545;
}

.medicina-ortomolecular .comparacao-title::after {
    background: #28a745;
}

.comparacao-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparacao-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.comparacao-item.negativo {
    background: rgba(220, 53, 69, 0.05);
    border-left: 4px solid #dc3545;
}

.comparacao-item.positivo {
    background: rgba(40, 167, 69, 0.05);
    border-left: 4px solid #28a745;
}

.comparacao-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparacao-item i {
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.comparacao-item.negativo i {
    color: #dc3545;
}

.comparacao-item.positivo i {
    color: #28a745;
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.item-content strong {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.item-content span {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vs-text {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    position: relative;
    z-index: 2;
}

.vs-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    right: -100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
    z-index: -1;
}

/* Responsividade */
@media (max-width: 768px) {
    .diferenciacao-section {
        padding: 60px 0;
    }
    
    .comparacao-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vs-divider {
        order: -1;
        margin: 20px 0;
    }
    
    .vs-text::before {
        display: none;
    }
    
    .comparacao-card {
        padding: 30px 20px;
    }
    
    .diferenciacao-intro {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body { font-family: var(--font-secondary); line-height: 1.6; color: var(--dark-gray); overflow-x: hidden; background-color: var(--white); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section-title { font-family: var(--font-primary); font-size: 2.5rem; font-weight: 700; color: var(--dark-gray); margin-bottom: 1rem; text-align: center; }

.section-subtitle { font-size: 1.1rem; color: #666; max-width: 700px; margin: 0 auto 3rem; text-align: center; }

img { max-width: 100%; height: auto; }

/* Acessibilidade */
.skip-to-content { position: absolute; left: -9999px; }
.skip-to-content:focus { position: static; width: auto; height: auto; }

/* Cabeçalho */
.header-premium { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(15px); box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-bottom: 1px solid rgba(46, 139, 87, 0.1); }

.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1.5rem; min-height: 70px; position: relative; }

.logo-section { display: flex; flex-direction: column; align-items: flex-start; }

.logo-text { 
    font-family: var(--font-primary); 
    font-size: 1.4rem; 
    font-weight: 700; 
    color: var(--primary-green); 
    line-height: 1.1;
    white-space: nowrap;
    margin-bottom: 2px;
}

.logo-subtitle { 
    font-size: 0.75rem; 
    color: var(--primary-blue); 
    font-weight: 500;
    white-space: nowrap;
}

.nav-menu { display: none; }

.nav-link { text-decoration: none; color: var(--dark-gray); font-weight: 600; padding: 0.5rem 1rem; position: relative; transition: color 0.3s ease; }

.nav-link:after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--primary-green); transition: width 0.3s ease; }

.nav-link:hover { color: var(--primary-green); }

.nav-link:hover:after { width: 50%; }

/* Estilo especial para o link do blog */
.nav-link.blog-link {
    background: linear-gradient(135deg, #2e8b57 0%, #4682b4 100%);
    color: white !important;
    border-radius: 20px;
    margin: 0 0.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.2);
    transition: all 0.3s ease;
}

.nav-link.blog-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
    color: white !important;
}

.nav-link.blog-link:after {
    display: none;
}

.header-ctas { display: flex; align-items: center; }

.btn-cta-primary { 
    background: var(--gradient-primary); 
    color: white; 
    padding: 0.7rem 1.8rem; 
    border-radius: 25px; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 0.9rem;
    transition: all 0.3s ease; 
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.2);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-cta-primary:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
    background: linear-gradient(135deg, #2e8b57 0%, #3a9b68 100%);
}

.btn-cta-primary i {
    font-size: 0.85rem;
}

/* Mobile Menu Toggle Button (estilo similar ao blog) */
.mobile-menu-toggle { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    width: 40px; 
    height: 40px; 
    cursor: pointer; 
    background: transparent; 
    border: 1px solid rgba(13, 148, 136, 0.2); /* teal-600 com transparência */
    padding: 0;
    border-radius: 8px;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(13, 148, 136, 0.08);
    border-color: rgba(13, 148, 136, 0.35);
}

.mobile-menu-toggle i {
    font-size: 1.2rem;
    color: var(--primary-green);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu - modelo do blog: dropdown abaixo do header, fundo teal e links brancos */
.nav-menu.mobile-active { 
    display: block; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    width: 100%; 
    max-height: calc(100vh - 65px);
    overflow-y: auto;
    background: #0d9488; /* teal-600 */
    padding: 8px 0;
    z-index: 999;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.25);
}

.nav-menu.mobile-active.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.nav-menu.mobile-active .nav-link { 
    font-size: 0.95rem;
    color: #fff !important;
    padding: 12px 16px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: transparent;
}

.nav-menu.mobile-active .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 20px;
    color: #fff !important;
}

.nav-menu.mobile-active .nav-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
}

.nav-menu.mobile-active .nav-link:hover i {
    color: #fff;
    transform: scale(1.05);
}

/* Seções */
main { padding-top: 80px; }

.hero-premium, .stats-section, .testimonials-multimedia, .sobre-section, .metodo-section, .agenda-section { padding: 60px 0; }

.stats-section, .metodo-section { background-color: var(--light-gray); }

/* Hero */
.hero-content { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; text-align: center; }

.hero-title { font-family: var(--font-primary); font-size: 2.8rem; line-height: 1.2; margin-bottom: 1rem; }

.hero-description { font-size: 1.1rem; margin-bottom: 1.5rem; color: #555; }

.hero-description strong { color: var(--primary-green); }

.hero-benefits { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; margin-bottom: 2rem; }

.benefit-item { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; }

.benefit-item .fa-check-circle { color: var(--success-green); }

.hero-ctas { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.btn-primary-large, .btn-secondary-large { padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; transition: transform 0.3s, box-shadow 0.3s; }

.btn-primary-large { background: var(--gradient-primary); color: white; }

.btn-secondary-large { background: transparent; color: var(--primary-green); border: 2px solid var(--primary-green); }

.hero-image .image-container { 
    max-width: 400px; 
    margin: 0 auto; 
    position: relative;
    border-radius: 50%;
    background: var(--gradient-primary);
    padding: 8px;
    box-shadow: var(--shadow-large);
}

.hero-photo { 
    border-radius: 50%; 
    border: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

.stat-card { text-align: center; }

.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary-green); }

.stat-label { font-size: 0.9rem; color: #666; }

/* Depoimentos */
.testimonials-carousel { position: relative; overflow: hidden; max-width: 700px; margin: auto; }

.testimonials-track { display: flex; transition: transform 0.5s ease; }

.testimonial-card-premium { flex: 0 0 100%; padding: 2rem; background: var(--white); border-radius: 15px; box-shadow: var(--shadow-medium); text-align: center; }

.testimonial-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--gradient-primary); color: white; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }

.testimonial-stars { color: #f1c40f; margin-bottom: 1rem; }

.carousel-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; }

.carousel-btn { background: var(--primary-green); color: white; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; }

.carousel-indicators { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; }

.indicator { width: 10px; height: 10px; border-radius: 50%; background: #ccc; cursor: pointer; }

.indicator.active { background: var(--primary-green); }

/* Sobre & Método */
.sobre-content { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }

.sobre-photo { border-radius: 15px; box-shadow: var(--shadow-large); }

.metodo-steps { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

.step-card { background: var(--white); padding: 2rem; border-radius: 15px; text-align: center; box-shadow: var(--shadow-medium); }

.step-icon { font-size: 2.5rem; color: var(--primary-green); margin-bottom: 1rem; }

.step-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }

/* --- DESIGN APRIMORADO DA AGENDA (INÍCIO) --- */
#agenda-container {
    min-height: 250px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

/* Agenda status indicator */
.agenda-status {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 16px 0 8px 0;
}
.agenda-status-pill {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef6ff;
  color: #0b5ed7;
  border: 1px solid #cfe2ff;
}
.agenda-status-pill.cache {
  background: #fff7e6;
  color: #b36b00;
  border-color: #ffe8b3;
}
.agenda-status-pill.fallback {
  background: #f5f5f5;
  color: #555;
  border-color: #e0e0e0;
}

.agenda-loading, .agenda-error, .no-slots { 
    text-align: center; 
    padding: 3rem 2rem; 
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px; 
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(46, 139, 87, 0.1);
}

.loading-spinner { 
    border: 4px solid rgba(46, 139, 87, 0.1); 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    border-left-color: var(--primary-green); 
    animation: spin 1s infinite linear; 
    margin: 0 auto 1.5rem; 
}

@keyframes spin { 
    to { transform: rotate(360deg); } 
}

.agenda-error button { 
    margin-top: 1.5rem; 
    padding: 12px 24px; 
    cursor: pointer; 
    background: var(--gradient-primary);
    color: var(--white); 
    border: none; 
    border-radius: 12px; 
    font-weight: 600;
    transition: all 0.3s ease;
}

.agenda-error button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
}

#agenda-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
    gap: 2rem; 
    width: 100%; 
}

.day-card { 
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(46, 139, 87, 0.1);
    position: relative;
}

.day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(46, 139, 87, 0.05) 0%, rgba(70, 130, 180, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.day-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.day-card:hover::before {
    opacity: 1;
}

.day-card-header { 
    background: var(--gradient-primary);
    color: var(--white); 
    padding: 1.5rem; 
    text-align: center; 
    font-family: var(--font-primary); 
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.day-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: headerShimmer 4s ease-in-out infinite;
}

@keyframes headerShimmer {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

.day-card-header .day-name {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.day-card-header .day-name::before {
    content: '📅';
    font-size: 1.1rem;
}

.slots-grid-inner { 
    padding: 1.5rem; 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); 
    gap: 1rem; 
}

.agenda-slot { 
    background: linear-gradient(145deg, #e8f5e8 0%, #f0f8f0 100%);
    color: var(--primary-green); 
    border: 2px solid rgba(46, 139, 87, 0.2);
    padding: 1rem 0.75rem; 
    text-align: center; 
    border-radius: 12px; 
    cursor: pointer; 
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.agenda-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.agenda-slot:hover::before {
    left: 100%;
}

.agenda-slot:hover { 
    background: var(--gradient-primary);
    color: var(--white); 
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
    border-color: var(--primary-green);
}

.agenda-slot:active {
    transform: translateY(-1px) scale(1.02);
}

.agenda-slot .slot-time {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.agenda-slot .slot-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Efeito de pulso para slots em destaque */
@keyframes slotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(46, 139, 87, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(46, 139, 87, 0); }
}

.agenda-slot.featured {
    animation: slotPulse 2s infinite;
}

/* Estados especiais dos slots */
.agenda-slot.morning {
    border-left: 4px solid #ffd700;
}

.agenda-slot.afternoon {
    border-left: 4px solid #ff8c00;
}

.agenda-slot.evening {
    border-left: 4px solid #9370db;
}

/* Responsividade da agenda */
@media (max-width: 768px) {
    #agenda-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .day-card {
        margin: 0 10px;
    }
    
    .slots-grid-inner {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .agenda-slot {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .slots-grid-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* --- DESIGN APRIMORADO DA AGENDA (FIM) --- */

/* Modal de Agendamento - Design Moderno */
.booking-modal { 
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    align-items: center; 
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal.show {
    display: flex !important;
    opacity: 1;
}

.booking-modal-content { 
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    margin: 15px;
    padding: 0;
    border-radius: 24px;
    max-width: 520px;
    width: 90%;
    max-height: 85vh;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transform: scale(0.7) translateY(50px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.booking-modal.show .booking-modal-content {
    transform: scale(1) translateY(0);
}

/* Header do Modal - Melhorado */
.booking-modal-header {
    background: var(--gradient-primary);
    padding: 20px 30px 18px;
    position: relative;
    overflow: hidden;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 24px 24px 0 0;
}

.booking-modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

.booking-modal-title {
    color: white;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.booking-slot-info {
    background: rgba(255, 255, 255, 0.15);
    padding: 14px 20px;
    border-radius: 16px;
    margin-top: 8px;
    text-align: center;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.booking-slot-info .slot-date {
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4px;
}

.booking-slot-info .slot-time {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Botão de Fechar Moderno */
.close-modal { 
    position: absolute; 
    top: 20px; 
    right: 24px; 
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

/* Corpo do Modal */
.booking-modal-body {
    padding: 20px 30px;
    max-height: 45vh;
    overflow-y: auto;
    flex: 1;
}

.booking-modal-body::-webkit-scrollbar {
    width: 6px;
}

.booking-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.booking-modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 3px;
}

/* Formulário Moderno */
.form-group { 
    margin-bottom: 20px;
    position: relative;
}

.form-group label { 
    display: block; 
    margin-bottom: 8px; 
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-group input, 
.form-group textarea { 
    width: 100%; 
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: var(--font-secondary);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
    transform: translateY(-2px);
}

.form-group input.invalid, 
.form-group textarea.invalid { 
    border-color: var(--error-red);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.error-message { 
    color: var(--error-red); 
    font-size: 0.85rem; 
    margin-top: 6px; 
    min-height: 1.2em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.error-message::before {
    content: '⚠️';
    font-size: 0.9rem;
}

/* Botões Modernos - Layout Melhorado */
.booking-modal-footer {
    padding: 18px 30px 24px;
    display: flex !important;
    gap: 16px;
    justify-content: center;
    position: relative;
    z-index: 10;
    background: white;
    border-top: 1px solid #f0f0f0;
    border-radius: 0 0 24px 24px;
    min-height: 75px;
    align-items: center;
}

.btn-confirm, .btn-cancel { 
    padding: 16px 32px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    z-index: 11;
    white-space: nowrap;
    flex: 1;
    max-width: 200px;
    min-width: 160px;
    text-align: center;
}

.btn-confirm {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.2);
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.35);
}

.btn-confirm:active {
    transform: translateY(-1px);
}

.btn-cancel {
    background: #f8f9fa;
    color: var(--dark-gray);
    border: 2px solid #e1e5e9;
    padding: 14px 30px;
}

.btn-cancel:hover {
    background: #e9ecef;
    border-color: #ced4da;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Estados de Sucesso e Erro */
.booking-success { 
    text-align: center; 
    padding: 40px 30px;
}

.success-icon { 
    font-size: 4rem; 
    color: var(--success-green); 
    margin-bottom: 20px; 
    line-height: 1;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-message {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-weight: 600;
}

.success-details {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .booking-modal-content {
        margin: 10px;
        width: calc(100% - 20px);
        max-height: 90vh;
        min-height: auto;
        border-radius: 20px;
    }
    
    .booking-modal-header {
        padding: 18px 20px 16px;
        min-height: 90px;
        border-radius: 20px 20px 0 0;
    }
    
    .booking-modal-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .booking-slot-info {
        padding: 10px 16px;
        border-radius: 12px;
    }
    
    .booking-slot-info .slot-date {
        font-size: 1rem;
        gap: 8px;
    }
    
    .close-modal {
        top: 14px;
        right: 18px;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .booking-modal-body {
        padding: 16px 20px;
        max-height: 50vh;
    }
    
    .booking-modal-footer {
        padding: 16px 20px 20px;
        flex-direction: column;
        gap: 12px;
        min-height: 70px;
        border-radius: 0 0 20px 20px;
    }
    
    .btn-confirm, .btn-cancel {
        width: 100%;
        max-width: none;
        flex: none;
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .booking-modal-content {
        margin: 5px;
        width: calc(100% - 10px);
        border-radius: 16px;
        max-height: 95vh;
    }
    
    .booking-modal-header {
        padding: 16px 16px 14px;
        min-height: 80px;
        border-radius: 16px 16px 0 0;
    }
    
    .booking-modal-title {
        font-size: 1.3rem;
    }
    
    .booking-modal-body {
        padding: 14px 16px;
        max-height: 55vh;
    }
    
    .booking-modal-footer {
        padding: 14px 16px 18px;
        border-radius: 0 0 16px 16px;
        min-height: 65px;
    }
    
    .form-group input, 
    .form-group textarea {
        padding: 12px 16px;
        font-size: 16px; /* Evita zoom no iOS */
    }
    
    .form-group {
        margin-bottom: 16px;
    }
}

/* Garantir visibilidade dos botões no desktop - Atualizado */
@media (min-width: 769px) {
    .booking-modal-footer {
        display: flex !important;
        justify-content: center !important;
        gap: 16px !important;
        padding: 24px 30px 30px !important;
        position: relative !important;
        z-index: 100 !important;
        background: white !important;
        border-top: 1px solid #f0f0f0 !important;
        border-radius: 0 0 24px 24px !important;
        min-height: 90px !important;
        align-items: center !important;
    }
    
    .btn-confirm, .btn-cancel {
        flex: 1 !important;
        max-width: 200px !important;
        min-width: 160px !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 101 !important;
        padding: 16px 32px !important;
        font-size: 1.05rem !important;
        border-radius: 16px !important;
    }
}

/* Modal de Preços */
.pricing-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-modal.show {
    display: flex !important;
    opacity: 1;
}

.pricing-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
}

.pricing-modal-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    margin: 15px;
    padding: 0;
    border-radius: 24px;
    max-width: 480px;
    width: 90%;
    max-height: 80vh;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transform: scale(0.7) translateY(50px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    z-index: 3001;
}

.pricing-modal.show .pricing-modal-content {
    transform: scale(1) translateY(0);
}

.pricing-modal-header {
    background: var(--gradient-primary);
    padding: 20px 30px 18px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 24px 24px 0 0;
}

.pricing-modal-title {
    color: white;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.close-pricing-modal {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.close-pricing-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.pricing-modal-body {
    padding: 20px 30px;
    flex: 1;
}

.pricing-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(46, 139, 87, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--primary-green);
}

.pricing-service {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.pricing-description {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.payment-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    margin-top: 20px;
}

.payment-info p {
    margin: 0;
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pricing-modal-footer {
    padding: 18px 30px 24px;
    display: flex;
    gap: 16px;
    justify-content: center;
    background: white;
    border-top: 1px solid #f0f0f0;
    border-radius: 0 0 24px 24px;
}

.btn-back-pricing, .btn-agree-pricing {
    padding: 16px 32px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 200px;
    min-width: 160px;
    text-align: center;
}

.btn-back-pricing {
    background: #f8f9fa;
    color: var(--dark-gray);
    border: 2px solid #e1e5e9;
}

.btn-back-pricing:hover {
    background: #e9ecef;
    border-color: #ced4da;
    transform: translateY(-2px);
}

.btn-agree-pricing {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.2);
}

.btn-agree-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.35);
}

/* Responsividade do Modal de Preços */
@media (max-width: 768px) {
    .pricing-modal-content {
        margin: 10px;
        width: calc(100% - 20px);
        border-radius: 20px;
        max-height: 85vh;
    }
    
    .pricing-modal-header {
        padding: 18px 20px 16px;
        border-radius: 20px 20px 0 0;
    }
    
    .pricing-modal-title {
        font-size: 1.4rem;
    }
    
    .pricing-modal-body {
        padding: 16px 20px;
    }
    
    .pricing-modal-footer {
        padding: 16px 20px 20px;
        flex-direction: column;
        gap: 12px;
        border-radius: 0 0 20px 20px;
    }
    
    .btn-back-pricing, .btn-agree-pricing {
        width: 100%;
        max-width: none;
        flex: none;
        padding: 14px 24px;
    }
    
    .pricing-item {
        margin-bottom: 20px;
        padding: 16px;
    }
    
    .payment-info {
        padding: 16px;
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .pricing-modal-content {
        margin: 5px;
        width: calc(100% - 10px);
        border-radius: 16px;
        max-height: 90vh;
    }
    
    .pricing-modal-header {
        padding: 16px 16px 14px;
        border-radius: 16px 16px 0 0;
    }
    
    .pricing-modal-title {
        font-size: 1.3rem;
    }
    
    .pricing-modal-body {
        padding: 14px 16px;
    }
    
    .pricing-modal-footer {
        padding: 14px 16px 18px;
        border-radius: 0 0 16px 16px;
    }
    
    .pricing-item {
        margin-bottom: 16px;
        padding: 14px;
    }
    
    .pricing-service {
        font-size: 1.1rem;
    }
    
    .payment-info {
        padding: 14px;
        margin-top: 14px;
    }
}

/* Rodapé */
.footer-premium { background: var(--dark-gray); color: var(--white); padding: 40px 0; text-align: center; }

.footer-content { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    gap: 40px; 
    margin-bottom: 30px; 
    text-align: left; 
}

.footer-section h4 { 
    color: var(--primary-green); 
    margin-bottom: 15px; 
    font-size: 1.1rem; 
    font-weight: 600; 
}

.footer-section p, .footer-section a { 
    color: var(--white); 
    line-height: 1.6; 
    margin-bottom: 8px; 
}

.footer-section a:hover { 
    color: var(--primary-green); 
    transition: color 0.3s ease; 
}

.footer-especialidades .especialidades-list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.footer-especialidades .especialidades-list li { 
    color: var(--white); 
    padding: 4px 0; 
    font-size: 0.95rem; 
    position: relative; 
    padding-left: 15px; 
}

.footer-especialidades .especialidades-list li:before { 
    content: "✓"; 
    color: var(--primary-green); 
    font-weight: bold; 
    position: absolute; 
    left: 0; 
}

.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding-top: 20px; 
    text-align: center; 
}

.footer-content a { color: var(--white); }

/* Media Queries */
@media (max-width: 767px) {
    .nav-container {
        padding: 0.6rem 1rem;
        min-height: 65px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .btn-cta-primary {
        padding: 0.6rem 1.4rem;
        font-size: 0.85rem;
    }
    
    .btn-cta-primary i {
        font-size: 0.8rem;
    }
    
    /* Rodapé responsivo */
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.5rem 0.8rem;
        min-height: 60px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
    }
    
    .btn-cta-primary {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .header-premium {
        box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    }
}

@media (min-width: 768px) {
    .nav-menu { display: flex; gap: 1rem; }
    .mobile-menu-toggle { display: none; }
    .mobile-menu-overlay { display: none; }
    .hero-content { grid-template-columns: 1fr 1fr; text-align: left; }
    .hero-benefits { align-items: flex-start; }
    .hero-ctas { justify-content: flex-start; }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .sobre-content { grid-template-columns: 1fr 1fr; }
    .metodo-steps { grid-template-columns: repeat(3, 1fr); }
    
    .nav-container {
        padding: 1rem 2rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.8rem;
    }
}

/* ===== MODAL DE HORÁRIO OCUPADO ===== */
.occupied-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.occupied-modal.show {
    opacity: 1;
}

.occupied-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.occupied-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    z-index: 10001;
}

.occupied-modal.show .occupied-modal-content {
    transform: scale(1) translateY(0);
}

.occupied-modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.occupied-modal-header h3 {
    margin: 0;
    color: var(--error-red);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.occupied-modal-body {
    padding: 24px;
}

.occupied-message {
    color: var(--dark-gray);
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.occupied-modal-footer {
    padding: 16px 24px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.occupied-modal .btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.occupied-modal .btn-secondary:hover {
    background: #5a6268;
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .occupied-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .occupied-modal-header,
    .occupied-modal-body,
    .occupied-modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ===== MODAL DE PAGAMENTO ===== */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 11000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-modal.active {
    display: flex;
    opacity: 1;
}

.payment-modal-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
    from { transform: translateY(50px) scale(0.9); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.payment-modal-header {
    background: var(--gradient-primary);
    padding: 30px;
    border-radius: 24px 24px 0 0;
    text-align: center;
    position: relative;
}

.payment-modal-header h3 {
    color: white;
    font-size: 1.8rem;
    margin: 0 0 10px 0;
    font-family: var(--font-primary);
}

.payment-modal-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

.payment-modal-body {
    padding: 40px 30px;
}

.payment-info-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.payment-info-box h4 {
    color: #856404;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.payment-info-box p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

.payment-options {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.payment-option {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.payment-option:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.2);
}

.payment-option-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.payment-option-content h4 {
    margin: 0 0 8px 0;
    color: var(--dark-gray);
    font-size: 1.2rem;
}

.payment-option-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.payment-cancel-btn {
    width: 100%;
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-gray);
}

.payment-cancel-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

/* PIX Modal */
.pix-details {
    background: #e8f5e8;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.pix-qr-placeholder {
    width: 200px;
    height: 200px;
    background: white;
    border: 3px dashed var(--primary-green);
    border-radius: 12px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.pix-code {
    background: white;
    padding: 15px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.9rem;
    word-break: break-all;
    margin: 20px 0;
    border: 1px solid #ddd;
}

.copy-pix-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    margin: 10px 0;
    transition: all 0.3s ease;
}

.copy-pix-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
}

.whatsapp-send-proof {
    background: #25D366;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.whatsapp-send-proof:hover {
    background: #20BA5A;
    transform: translateY(-3px);
}

/* Timer de pré-reserva */
.pre-reservation-timer {
    background: #fff3cd;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    border: 2px solid #ffc107;
}

.timer-display {
    font-size: 2rem;
    font-weight: 700;
    color: #856404;
    font-family: monospace;
}

/* Responsividade */
@media (max-width: 768px) {
    .payment-modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .payment-modal-body {
        padding: 25px 20px;
    }
    
    .payment-option {
        flex-direction: column;
        text-align: center;
    }
}

/* Modal de Captura de Lead */
.lead-capture-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.lead-capture-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-capture-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideInUp 0.4s ease;
}

.lead-capture-header {
    text-align: center;
    margin-bottom: 30px;
}

.lead-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.lead-icon i {
    font-size: 2.5rem;
    color: white;
}

.lead-capture-header h3 {
    color: var(--dark-gray);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.lead-capture-header p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    line-height: 1.5;
}

.lead-capture-form .form-group {
    margin-bottom: 25px;
}

.lead-capture-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.lead-capture-form label i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.lead-capture-form input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.lead-capture-form input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    transform: translateY(-2px);
}

.lead-benefits {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 4px solid var(--primary-green);
}

.lead-benefits h4 {
    color: var(--dark-gray);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.lead-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lead-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.4;
}

.lead-benefits li i {
    color: var(--primary-green);
    font-size: 1.1rem;
    min-width: 20px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-skip {
    flex: 1;
    padding: 15px 25px;
    background: transparent;
    color: var(--medium-gray);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-skip:hover {
    background: #f8f9fa;
    border-color: var(--medium-gray);
    color: var(--dark-gray);
}

.btn-get-result {
    flex: 2;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--primary-green), #4CAF50);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.btn-get-result:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
}

.btn-get-result:active {
    transform: translateY(-1px);
}

.privacy-note {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    color: var(--medium-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-note i {
    color: var(--primary-green);
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsividade do Modal de Lead */
@media (max-width: 768px) {
    .lead-capture-content {
        padding: 30px 25px;
        margin: 20px;
        max-width: none;
        width: calc(100% - 40px);
    }
    
    .lead-capture-header h3 {
        font-size: 1.5rem;
    }
    
    .lead-icon {
        width: 60px;
        height: 60px;
    }
    
    .lead-icon i {
        font-size: 2rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-skip, .btn-get-result {
        flex: none;
    }
    
    .lead-benefits {
        padding: 20px;
    }
}

/* Estilos para mensagem de sucesso */
.lead-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.3);
    animation: successPulse 2s ease-in-out infinite;
}

.success-icon i {
    font-size: 3rem;
    color: white;
}

.lead-success h3 {
    color: var(--dark-gray);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.lead-success p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.success-message {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 4px solid #28a745;
}

.success-message p {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.success-message ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-message li {
    padding: 8px 0;
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.4;
}

.success-note {
    font-size: 0.95rem;
    color: var(--medium-gray);
    font-style: italic;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(40, 167, 69, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(40, 167, 69, 0.4);
    }
}

/* ===== WIDGET DE CHAT COM IA ===== */
.ai-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chat-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(46, 139, 87, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(46, 139, 87, 0.4);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid white;
}

.chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chat-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chat-status {
    font-size: 0.8rem;
    opacity: 0.9;
}

.chat-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.chat-close-btn:hover {
    opacity: 1;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.chat-message {
    display: flex;
    gap: 10px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: #6c757d;
}

.message-content {
    max-width: 75%;
}

.message-content p {
    background: white;
    padding: 12px 15px;
    border-radius: 12px;
    margin: 0;
    line-height: 1.5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.user-message .message-content p {
    background: var(--primary-green);
    color: white;
}

.quick-replies {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.quick-reply-btn {
    background: white;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    font-weight: 500;
}

.quick-reply-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateX(5px);
}

.chat-input-container {
    display: flex;
    padding: 15px;
    background: white;
    border-top: 1px solid #e9ecef;
    gap: 10px;
}

#chat-input {
    flex: 1;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

#chat-input:focus {
    border-color: var(--primary-green);
}

#chat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

#chat-send-btn:hover {
    transform: scale(1.1);
}

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 15px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-green);
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

/* Responsividade */
@media (max-width: 768px) {
    .chat-window {
        width: calc(100vw - 40px);
        height: calc(100vh - 120px);
        bottom: 80px;
        right: 10px;
        left: 10px;
    }
}

/* Blog Section Styles */
.blog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23059669" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23059669" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.blog-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.blog-features {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.blog-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(5, 150, 105, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.blog-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.15);
    border-color: rgba(5, 150, 105, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.blog-feature h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.blog-feature p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.blog-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.blog-cta h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
    position: relative;
    z-index: 1;
}

.blog-cta p {
    font-size: 16px;
    margin: 0 0 25px 0;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.btn-blog-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.btn-blog-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.blog-mockup {
    background: white;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.3s ease;
}

.blog-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.mockup-header {
    background: #f8fafc;
    padding: 15px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }

.mockup-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.mockup-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mockup-article {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.article-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 8px;
    flex-shrink: 0;
}

.article-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-title {
    height: 16px;
    background: #374151;
    border-radius: 4px;
    width: 80%;
}

.article-excerpt {
    height: 12px;
    background: #9ca3af;
    border-radius: 4px;
    width: 100%;
}

.article-meta {
    height: 10px;
    background: #d1d5db;
    border-radius: 4px;
    width: 60%;
}

/* Responsive Design for Blog Section */
@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-preview {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-features {
        gap: 20px;
    }
    
    .blog-feature {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .blog-cta {
        padding: 30px 20px;
    }
    
    .blog-cta h3 {
        font-size: 20px;
    }
    
    .blog-mockup {
        transform: none;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .mockup-content {
        padding: 20px;
    }
    
    .mockup-article {
        flex-direction: column;
        text-align: center;
    }
    
    .article-image {
        width: 100%;
        height: 40px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .blog-feature {
        padding: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .blog-cta {
        padding: 25px 15px;
    }
    
    .btn-blog-primary {
        padding: 12px 25px;
        font-size: 14px;
    }
}
