/* CSS específico para páginas individuais das áreas de atuação */

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--verde-suave) 100%);
    padding: 8rem 0 4rem;
    color: var(--branco);
}

.page-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.page-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.page-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.page-highlights span {
    color: var(--bege-claro);
    font-weight: 500;
    font-size: 1.1rem;
}

.page-cta {
    display: inline-block;
    background: var(--bege-claro);
    color: var(--verde-escuro);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(213, 198, 152, 0.3);
}

.page-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(213, 198, 152, 0.4);
}

.page-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-hero-image img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Page Content */
.page-content {
    padding: 5rem 0;
    background: var(--branco);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2.5rem;
    color: var(--verde-escuro);
    margin-bottom: 2rem;
    font-weight: 600;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Cases Grid */
.cases-grid,
.conditions-grid,
.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.case-card,
.condition-card,
.issue-card {
    background: var(--cinza-claro);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--verde-suave);
    transition: all 0.3s ease;
}

.case-card:hover,
.condition-card:hover,
.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.case-card h3,
.condition-card h3,
.issue-card h3 {
    color: var(--verde-escuro);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.case-card p,
.condition-card p,
.issue-card p {
    color: #555;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--branco);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.step-number {
    background: var(--verde-suave);
    color: var(--branco);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--verde-escuro);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Benefits List */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--cinza-claro);
    border-radius: 15px;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item h3 {
    color: var(--verde-escuro);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.benefit-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Approaches List */
.approaches-list {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item {
    padding: 2rem;
    background: var(--cinza-claro);
    border-radius: 15px;
    border-left: 4px solid var(--bege-claro);
}

.approach-item h3 {
    color: var(--verde-escuro);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Treatment Process */
.treatment-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    background: var(--branco);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    min-height: 140px;
    transition: box-shadow 0.2s;
}
.step:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

.step-number {
    background: var(--verde-suave);
    color: var(--branco);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(136,161,137,0.11);
    margin-top: 0.15rem;
}

.step-content {
    flex: 1 1 0%;
}

.step-content h3 {
    color: var(--verde-escuro);
    font-size: 1.15rem;
    margin-bottom: 0.55rem;
    font-weight: 600;
    line-height: 1.25;
}

.step-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Warning Signs */
.warning-signs,
.help-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sign-category,
.indicator-category {
    background: var(--cinza-claro);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--verde-suave);
}

.sign-category h3,
.indicator-category h3 {
    color: var(--verde-escuro);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.sign-category ul,
.indicator-category ul {
    list-style: none;
    padding: 0;
}

.sign-category li,
.indicator-category li {
    color: #555;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.sign-category li:before,
.indicator-category li:before {
    content: "•";
    color: var(--verde-suave);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.sign-category li:last-child,
.indicator-category li:last-child {
    border-bottom: none;
}

/* Benefits Container */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-group {
    background: var(--cinza-claro);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--bege-claro);
}

.benefit-group h3 {
    color: var(--verde-escuro);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.benefit-group ul {
    list-style: none;
    padding: 0;
}

.benefit-group li {
    color: #555;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-group li:before {
    content: "✓";
    color: var(--verde-suave);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.benefit-group li:last-child {
    border-bottom: none;
}

/* Approach Details */
.approach-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.approach-card {
    background: var(--cinza-claro);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--verde-suave);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.approach-card h3 {
    color: var(--verde-escuro);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Modalities Grid */
.modalities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.modality-card {
    background: var(--cinza-claro);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--bege-claro);
}

.modality-card h3 {
    color: var(--verde-escuro);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.modality-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.modality-card li {
    color: #555;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.modality-card li:before {
    content: "✓";
    color: var(--verde-suave);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Page CTA Section */
.page-cta-section {
    background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--verde-suave) 100%);
    padding: 4rem 0;
    color: var(--branco);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--bege-claro);
    color: var(--verde-escuro);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(213, 198, 152, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(213, 198, 152, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--branco);
    padding: 1rem 2rem;
    border: 2px solid var(--branco);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--branco);
    color: var(--verde-escuro);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 3rem;
    }
    
    .page-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .page-hero-text h1 {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .cases-grid,
    .conditions-grid,
    .issues-grid,
    .process-steps,
    .benefits-list,
    .treatment-process,
    .warning-signs,
    .help-indicators,
    .benefits-container,
    .approach-details,
    .modalities-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-container h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 4rem 0 2rem;
    }
    
    .page-hero-text h1 {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .case-card,
    .condition-card,
    .issue-card,
    .approach-item,
    .benefit-group,
    .approach-card,
    .modality-card {
        padding: 1.5rem;
    }
    
    .step,
    .benefit-item {
        padding: 1.5rem;
    }
}

