/* ===== CSS COMPLETO PARA PÁGINA QUEM SOMOS ===== */

/* ===== 1. RESET E CONFIGURAÇÕES BÁSICAS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ===== 2. VARIÁVEIS CSS ===== */
:root {
    --primary-color: #2d8f47;
    --secondary-color: #1e5f32;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #444;
    --bg-light: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #f0f8f2 0%, #e8f5ea 50%, #f0f8f2 100%);
    --white: #ffffff;
    --shadow-light: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-medium: 0 8px 25px rgba(45, 143, 71, 0.12);
    --shadow-heavy: 0 15px 40px rgba(45, 143, 71, 0.15);
    --border-radius: 15px;
    --border-radius-large: 25px;
    --transition: all 0.3s ease;
}

/* ===== 3. COMPONENTES BÁSICOS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 4. HEADER ===== */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.site-header .logo-img {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}



/* ===== 5. NAVEGAÇÃO ===== */
.main-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav .nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--primary-color);
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.main-nav .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.main-nav .hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== 6. PÁGINA SOBRE ===== */
.about-page {
    padding: 120px 0 80px;
    background: var(--bg-gradient);
    position: relative;
}

.about-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(45, 143, 71, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 143, 71, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(45, 143, 71, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-page .about-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

/* ===== 7. TÍTULO DA PÁGINA ===== */
.page-title {
    font-size: 3.2rem;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    
    /* Card styling */
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 50%, #ffffff 100%);
    padding: 4rem 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: 
        0 20px 60px rgba(45, 143, 71, 0.15),
        0 8px 25px rgba(45, 143, 71, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(45, 143, 71, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    transform: translateY(0);
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.page-title:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 70px rgba(45, 143, 71, 0.2),
        0 12px 35px rgba(45, 143, 71, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
    z-index: 1;
}

/* ===== 8. SEÇÕES DE CONTEÚDO ===== */
.intro-text {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    margin-bottom: 2.5rem;
    border: 1px solid rgba(45, 143, 71, 0.1);
    position: relative;
    overflow: hidden;
}

.intro-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.intro-text h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
    color: var(--text-lighter);
}

.content-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    margin-bottom: 2.5rem;
    border: 1px solid rgba(45, 143, 71, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.content-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(45, 143, 71, 0.18);
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.content-section h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}


.content-section h2 {
    color: var(--primary-color);
    font-size: 1.9rem;
    margin-bottom: 1.8rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

.content-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    text-align: justify;
    color: var(--text-lighter);
}

/* ===== 9. LISTAS ESPECÍFICAS ===== */
.advantages-list,
.conditions-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.advantages-list li,
.conditions-list li {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
    padding: 1.3rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(45, 143, 71, 0.08);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-lighter);
    transition: var(--transition);
    position: relative;
}

.advantages-list li:hover,
.conditions-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(45, 143, 71, 0.2);
    border-left-color: var(--secondary-color);
}

.advantages-list li::before,
.conditions-list li::before {
    content: '✓';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

/* ===== 10. GRID DE TÉCNICAS ===== */
.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.technique-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
    padding: 1.8rem;
    border-radius: var(--border-radius);
    box-shadow: 0 6px 20px rgba(45, 143, 71, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(45, 143, 71, 0.1);
    position: relative;
    overflow: hidden;
}

.technique-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.technique-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(45, 143, 71, 0.15);
}

.technique-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.technique-item h3 i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.technique-item p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    text-align: left;
    font-size: 1.1rem;
}

/* ===== 11. SEÇÃO IMAGENS DA CLÍNICA ===== */
.clinic-images-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    margin-bottom: 2.5rem;
    border: 1px solid rgba(45, 143, 71, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

/*.clinic-images-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(45, 143, 71, 0.18);
}*/

.clinic-images-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/*.clinic-images-section h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}*/

.clinic-images-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.clinic-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.clinic-image {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(45, 143, 71, 0.12);
    transition: var(--transition);
    border: 1px solid rgba(45, 143, 71, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.clinic-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.clinic-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(45, 143, 71, 0.2);
}

.clinic-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(45, 143, 71, 0.15);
    transition: var(--transition);
}

.clinic-image:hover .clinic-img {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(45, 143, 71, 0.25);
}

.clinic-image h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.clinic-image p {
    color: var(--text-lighter);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* ===== 12. SEÇÃO CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    color: white;
    padding: 5rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.cta-section::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: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-section h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    border: none;
    padding: 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 0;
}

.treatment-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
    justify-content: center;
    z-index: 1;
}

.image-placeholder {
    background: rgba(255, 255, 255, 0.15);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.image-placeholder:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.image-placeholder:hover i {
    transform: scale(1.1);
}

.image-placeholder p {
    color: white;
    font-weight: 600;
    margin: 0;
    text-align: center;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.cta-buttons .btn-primary:hover {
    background: #f8fdf9;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

/* ===== 12. FOOTER ===== */
.site-footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.site-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.site-footer .footer-section h3,
.site-footer .footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.site-footer .footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-footer .footer-section i {
    color: var(--primary-color);
    width: 16px;
}

.site-footer .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* ===== 13. RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .main-nav .hamburger {
        display: flex;
    }
    
    .main-nav .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-light);
        padding: 2rem 0;
    }
    
    .main-nav .nav-menu.active {
        left: 0;
    }
    
    .site-header .logo-img {
        height: 65px;
        max-width: 180px;
    }
    
    .page-title {
        font-size: 2.5rem;
        padding: 3rem 2rem;
        border-radius: 20px;
        max-width: 95%;
    }
    
    .intro-text,
    .content-section {
        padding: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .technique-item {
        padding: 1.5rem;
    }
    
    .advantages-list li,
    .conditions-list li {
        padding: 1rem;
    }
    
    .clinic-images {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .clinic-images-section {
        padding: 2rem;
    }
    
    .clinic-image {
        padding: 1.5rem;
    }
    
    .clinic-img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .site-header .logo-img {
        height: 55px;
        max-width: 140px;
    }
    
    .page-title {
        font-size: 2rem;
        padding: 2.5rem 1.5rem;
        border-radius: var(--border-radius);
    }
    
    .intro-text,
    .content-section {
        padding: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .technique-item {
        padding: 1.2rem;
    }
    
    .advantages-list li,
    .conditions-list li {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .clinic-images-section {
        padding: 1.5rem;
    }
    
    .clinic-image {
        padding: 1.2rem;
    }
    
    .clinic-img {
        height: 200px;
    }
    
    .clinic-images {
        gap: 1.5rem;
    }
}

/* ===== 14. ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.page-title {
    animation: titleFadeIn 0.8s ease-out;
}

.intro-text,
.content-section,
.technique-item {
    animation: fadeInUp 0.6s ease-out;
}