/* ===== ABOUT SECTION ===== */
.medical-about-section {
    padding: 80px 0;
    background: #f8faff;
}

.medical-about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ===== IMAGEM ===== */
.about-image-column {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.image-frame {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,49,83,0.1);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== BADGE ===== */
.experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    z-index: 10;
}

.badge-content {
    background: #003153;
    color: white;
    padding: 15px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(40,182,246,0.3);
    border: 2px solid #28b6f6;
}

.badge-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #28b6f6;
    line-height: 1;
    margin-bottom: 3px;
}

.badge-text {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

/* ===== LABEL "SOBRE NÓS" - IGUAL AOS SERVIÇOS ===== */
.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.label-text {
    color: #28b6f6;
    font-weight: 700;
    font-size: 18px;  /* IGUAL AOS SERVIÇOS */
    text-transform: uppercase;
    letter-spacing: 4px;  /* IGUAL AOS SERVIÇOS */
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

/* TRAÇO - IGUAL AOS SERVIÇOS */
.label-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #28b6f6;  /* SEM GRADIENTE, COR SÓLIDA IGUAL AOS SERVIÇOS */
    border-radius: 3px;
}

/* REMOVER SEGUNDO TRAÇO */
.label-line {
    display: none !important;
}

/* TÍTULO PRINCIPAL - SEM TRAÇO */
.about-title {
    font-size: 42px;  /* IGUAL AOS SERVIÇOS */
    font-weight: 700;
    color: #003153;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: none;
}

/* Parágrafos */
.paragraph-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.paragraph-icon {
    width: 24px;
    height: 24px;
    background: rgba(40,182,246,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28b6f6;
    font-size: 12px;
    flex-shrink: 0;
}

.paragraph-text {
    font-size: 18px;  /* ← AUMENTADO PARA 18px (IGUAL AO .contacto-valor) */
    color: #334155;
    line-height: 1.5;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    border: 1px solid #eef2f6;
}

.feature-icon-wrapper {
    width: 44px;
    height: 44px;
    background: rgba(40,182,246,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28b6f6;
    font-size: 18px;
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    color: #003153;
    margin: 0 0 3px;
}

.feature-description {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

/* CTA */
.about-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #28b6f6;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #003153;
    transform: translateY(-2px);
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: white;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.contact-icon {
    color: #28b6f6;
    font-size: 14px;
}

.contact-label {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.contact-number {
    font-size: 15px;
    font-weight: 700;
    color: #003153;
    text-decoration: none;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content-column {
        text-align: center;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .features-grid {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .image-wrapper {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 28px;
    }
    
    .about-cta {
        flex-direction: column;
    }
    
    .cta-button,
    .cta-contact {
        width: 100%;
        justify-content: center;
    }
    
    .image-wrapper {
        max-width: 100%;
    }
    
    .decoration-1,
    .decoration-2,
    .decoration-dots {
        display: none;
    }
}