/* Treatment Page Styles */
/* Andrea Kless - Estética Integrativa */

/* Page fade-in animation */
body {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

body.content-loaded {
    opacity: 1;
}

/* Treatment Hero Section - 30vh */
.treatment-hero {
    height: 30vh;
    min-height: 250px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; /* Compensar altura do header fixo */
}

.treatment-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.treatment-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(5, 225, 47, 0.8) 0%,
        rgba(0, 181, 224, 0.8) 100%
    );
    z-index: 2;
}

.treatment-hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.treatment-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    color: #FFFFFF;
}

.treatment-hero p {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    color: #FFFFFF;
}

/* Treatment Content Section - 70vh */
.treatment-content {
    min-height: 70vh;
    padding: 4rem 0;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #f8fffe 50%,
        #ffffff 100%
    );
}

.treatment-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Main Content Area */
.treatment-main {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.treatment-main h2 {
    color: #1A1A1A;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.treatment-main h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #05E12F, #00B5E0);
    border-radius: 2px;
}

.treatment-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2.5rem;
    text-align: justify;
}

.treatment-benefits h3,
.treatment-indication h3 {
    color: #1A1A1A;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.treatment-benefits h3::before {
    content: '✨';
    font-size: 1.2rem;
}

.treatment-indication h3::before {
    content: '👥';
    font-size: 1.2rem;
}

.treatment-benefits ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.treatment-benefits li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.treatment-benefits li:last-child {
    border-bottom: none;
}

.treatment-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: #05E12F;
    font-weight: bold;
    font-size: 1.1rem;
}

.treatment-indication p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fffe, #f0fffe);
    border-radius: 12px;
    border-left: 4px solid #00B5E0;
}

/* Sidebar */
.treatment-sidebar {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.sidebar-cta {
    text-align: center;
    margin-bottom: 2.5rem;
}

.sidebar-cta h3 {
    color: #1A1A1A;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.sidebar-cta p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #05E12F, #00B5E0);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 225, 47, 0.3);
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 225, 47, 0.4);
    text-decoration: none;
    color: white;
}

.sidebar-info {
    border-top: 1px solid #f0f0f0;
    padding-top: 2rem;
}

.sidebar-info h4 {
    color: #1A1A1A;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.95rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    padding: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #05E12F, #00B5E0);
    border-radius: 50%;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .treatment-hero h1 {
        font-size: 2.2rem;
    }
    
    .treatment-hero p {
        font-size: 1rem;
    }
    
    .treatment-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .treatment-main,
    .treatment-sidebar {
        padding: 2rem;
    }
    
    .treatment-sidebar {
        position: static;
        order: -1;
    }
    
    .treatment-main h2 {
        font-size: 1.6rem;
    }
    
    .treatment-description {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .treatment-hero {
        min-height: 200px;
    }
    
    .treatment-hero h1 {
        font-size: 1.8rem;
    }
    
    .treatment-hero-content {
        padding: 0 1rem;
    }
    
    .treatment-main,
    .treatment-sidebar {
        padding: 1.5rem;
    }
    
    .treatment-content {
        padding: 2rem 0;
    }
}

/* Animation for content loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-loaded .treatment-main,
.content-loaded .treatment-sidebar {
    animation: fadeInUp 0.6s ease-out;
}

.content-loaded .treatment-main {
    animation-delay: 0.1s;
}

.content-loaded .treatment-sidebar {
    animation-delay: 0.2s;
}

/* Footer Styles for Treatment Page */
.footer-section {
    text-align: center;
}

.footer-section h4 {
    color: #00B5E0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo-text h3 {
    color: #05E12F;
    margin: 0 0 0.25rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.footer-logo-text p {
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
    font-size: 0.9rem;
}