/* ========================================
   PÁGINAS INTERNAS - CSS ADICIONAL
   Clínica Start Reabilitação
   ======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 150px 0 60px;
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb span {
    color: white;
    font-weight: 500;
}

/* ========================================
   PÁGINA SOBRE
   ======================================== */
.about-history {
    padding: 80px 0;
    background: white;
}

.history-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

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

.h-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.h-label {
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* MVV Section */
.mvv-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background: white;
    padding: 50px 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.mvv-icon i {
    font-size: 2rem;
    color: white;
}

.mvv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mvv-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.values-list {
    margin-top: 20px;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.values-list i {
    color: var(--primary-color);
    margin-top: 3px;
}

.values-list strong {
    color: var(--text-dark);
}

/* Commitment Section */
.commitment-section {
    padding: 80px 0;
    background: white;
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.commitment-content h2 {
    font-size: 2.3rem;
    margin-bottom: 24px;
}

.commitment-content > p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.commitment-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.c-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.c-feature i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.c-feature span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.commitment-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.commitment-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* ========================================
   PÁGINA ESTRUTURA
   ======================================== */
.structure-intro {
    padding: 80px 0 40px;
    background: white;
}

.structure-gallery-full {
    padding: 40px 0 80px;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 220px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.gallery-caption h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.gallery-caption p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

/* Infrastructure Section */
.infrastructure-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.infra-card {
    background: white;
    padding: 35px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.infra-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.infra-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.infra-icon i {
    font-size: 1.5rem;
    color: white;
}

.infra-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.infra-card ul {
    list-style: none;
}

.infra-card li {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.infra-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Rural Section */
.rural-section {
    padding: 80px 0;
    background: white;
}

.rural-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rural-content h2 {
    font-size: 2.3rem;
    margin-bottom: 24px;
}

.rural-content > p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.rural-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.r-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.r-feature i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.r-feature span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.rural-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.rural-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* ========================================
   PÁGINA TRATAMENTOS
   ======================================== */
.treatments-intro {
    padding: 80px 0 40px;
    background: white;
}

.treatment-types {
    padding: 40px 0 80px;
    background: white;
}

.treatment-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.treatment-detail-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.treatment-detail-card:hover {
    box-shadow: var(--shadow-md);
}

.treatment-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.treatment-detail-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-detail-icon i {
    font-size: 1.8rem;
    color: white;
}

.treatment-detail-header h3 {
    color: white;
    font-size: 1.4rem;
    margin: 0;
}

.treatment-detail-content {
    padding: 30px;
}

.treatment-detail-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.treatment-detail-content ul {
    list-style: none;
}

.treatment-detail-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.treatment-detail-content i {
    color: var(--primary-color);
}

/* Methodology Section */
.methodology-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.method-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.method-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(26, 95, 63, 0.1);
    line-height: 1;
}

.method-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.method-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Therapies Section */
.therapies-section {
    padding: 80px 0;
    background: white;
}

.therapies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.therapy-item {
    text-align: center;
    padding: 35px 25px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.therapy-item:hover {
    background: var(--primary-color);
}

.therapy-item:hover i,
.therapy-item:hover h4,
.therapy-item:hover p {
    color: white;
}

.therapy-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.therapy-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    transition: var(--transition);
}

.therapy-item p {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.5;
    transition: var(--transition);
}

/* Activities Section */
.activities-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.activities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.activities-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.activities-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.activities-content h2 {
    font-size: 2.3rem;
    margin-bottom: 24px;
}

.activities-content > p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.activities-list {
    list-style: none;
}

.activities-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.activities-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: white;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content h2 {
    font-size: 2.3rem;
    margin-bottom: 24px;
}

.welcome-content > p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 50px;
    line-height: 1.7;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.w-feature {
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.w-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.w-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.w-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.w-feature p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ========================================
   PÁGINA EQUIPE
   ======================================== */
.team-intro {
    padding: 80px 0 40px;
    background: white;
}

.team-areas {
    padding: 40px 0 80px;
    background: white;
}

.team-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-area-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.team-area-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.team-area-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.team-area-icon i {
    font-size: 1.8rem;
    color: white;
}

.team-area-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.team-area-card > p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-area-card ul {
    list-style: none;
}

.team-area-card li {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.team-area-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Team 24h */
.team-24h {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.team-24h-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-24h-content {
    color: white;
}

.team-24h-content .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.team-24h-content h2 {
    color: white;
    font-size: 2.3rem;
    margin-bottom: 24px;
}

.team-24h-content > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    line-height: 1.7;
}

.team-24h-list {
    margin-top: 30px;
}

.team-24h-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: white;
}

.team-24h-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.team-24h-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.team-24h-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Other Roles */
.other-roles {
    padding: 80px 0;
    background: white;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.role-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.role-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.role-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.role-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.role-item p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}

/* ========================================
   PÁGINA REMOÇÕES
   ======================================== */
.removal-hero {
    padding: 80px 0;
    background: white;
}

.removal-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.removal-hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.removal-hero-content > p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.removal-hero-features {
    margin-bottom: 40px;
}

.rhf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: var(--text-dark);
}

.rhf-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.removal-hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.removal-hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.removal-hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
}

.removal-hero-badge i {
    font-size: 2rem;
}

.removal-hero-badge span {
    display: block;
    font-size: 0.85rem;
}

.removal-hero-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.process-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Differentials */
.removal-differentials {
    padding: 80px 0;
    background: white;
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.differentials-content h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
}

.differential-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.diff-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.diff-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.diff-item p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.differentials-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.differentials-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* Coverage */
.coverage-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.coverage-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.coverage-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.coverage-item span {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
}

/* ========================================
   PÁGINA CONTATO
   ======================================== */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-card-large {
    background: var(--bg-light);
    padding: 40px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.contact-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-card-large.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.contact-card-large.whatsapp .contact-card-link {
    color: white;
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-large.whatsapp .contact-card-icon {
    background: rgba(255,255,255,0.3);
}

.contact-card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-card-large.whatsapp .contact-card-icon i {
    color: white;
}

.contact-card-large h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-card-large.whatsapp h3 {
    color: white;
}

.contact-card-large > p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.contact-card-large.whatsapp > p {
    color: rgba(255,255,255,0.9);
}

.contact-card-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-card-link:hover {
    gap: 12px;
}

/* Address Section */
.address-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.address-content h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
}

.address-details {
    margin-bottom: 30px;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.address-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 4px;
}

.address-item h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.address-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.address-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: rgba(26, 95, 63, 0.08);
    border-radius: var(--radius-md);
}

.address-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
}

.address-note p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.address-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

.address-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 50px;
    border-radius: var(--radius-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.form-header p {
    font-size: 1rem;
    color: var(--text-medium);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: white;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 95, 63, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   PÁGINA FAQ
   ======================================== */
.faq-intro {
    padding: 80px 0 40px;
    background: white;
}

.faq-full-section {
    padding: 40px 0 80px;
    background: white;
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.faq-category h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.faq-category h3 i {
    color: var(--primary-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* CTA Note */
.cta-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-top: 20px;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 1200px) {
    .mvv-grid,
    .infra-grid,
    .methodology-grid,
    .therapies-grid,
    .team-areas-grid,
    .process-grid,
    .roles-grid,
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 200px);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .commitment-grid,
    .rural-grid,
    .activities-grid,
    .team-24h-grid,
    .differentials-grid,
    .address-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-image,
    .rural-image,
    .activities-image,
    .team-24h-image,
    .differentials-image {
        order: -1;
    }
    
    .treatment-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .removal-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .removal-hero-image {
        order: -1;
    }
    
    .form-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .mvv-grid,
    .infra-grid,
    .methodology-grid,
    .therapies-grid,
    .team-areas-grid,
    .process-grid,
    .roles-grid,
    .contact-cards-grid,
    .commitment-features,
    .rural-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(9, 200px);
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .history-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .differential-list {
        gap: 20px;
    }
    
    .diff-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .mvv-card,
    .infra-card,
    .team-area-card,
    .process-card {
        padding: 30px 20px;
    }
}
