/* ===== FORÇAR TODOS OS CARDS A BRANCO ===== */
.service-card,
.service-card.destaque,
.service-card-highlight {
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
}

.service-card.destaque {
    background: #ffffff !important;
}

.service-card.destaque h3 {
    color: #003153 !important;
}

/* ===== SERVIÇOS - RESTART CLINIC ===== */
.services-section {
    padding: 80px 0;
    background: #ffffff;
}

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

/* ===== HEADER - TRAÇO NO "SERVIÇOS" ===== */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

/* "SERVIÇOS" (label) - COM TRAÇO */
.services-header span {
    color: #28b6f6;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.services-header span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #28b6f6;
    border-radius: 3px;
}

/* Título principal - SEM TRAÇO */
.services-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #003153;
    line-height: 1.2;
    margin: 0;
    border-bottom: none;
}

/* ===== GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== CARDS - TODOS BRANCOS ===== */
.service-card,
.service-card.destaque {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover,
.service-card.destaque:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(40,182,246,0.12);
    border-color: #28b6f6;
}

/* Título do card */
.service-card h3,
.service-card.destaque h3 {
    font-size: 26px;
    font-weight: 700;
    color: #003153;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #28b6f6;
}

/* Ícone */
.service-icon,
.service-card.destaque .service-icon {
    font-size: 52px;
    color: #28b6f6;
    margin-bottom: 25px;
    text-align: center;
}

/* Horários */
.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.horario-item:last-child {
    border-bottom: none;
}

.horario-dia {
    font-weight: 600;
    color: #1e293b;
    font-size: 18px;
}

.horario-hora {
    background: rgba(40,182,246,0.08);
    color: #28b6f6;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 17px;
}

/* Contactos */
.contacto-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contacto-item:last-child {
    border-bottom: none;
}

.contacto-icone {
    width: 48px;
    height: 48px;
    background: rgba(40,182,246,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28b6f6;
    font-size: 20px;
}

.contacto-info {
    flex: 1;
}

.contacto-label {
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.contacto-valor {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
}

.contacto-valor:hover {
    color: #28b6f6;
}

/* Especialidades */
.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.especialidade-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8faff;
    border-radius: 14px;
    transition: all 0.2s ease;
}

.especialidade-item:hover {
    background: rgba(40,182,246,0.08);
    transform: translateX(5px);
}

.especialidade-item i {
    color: #28b6f6;
    font-size: 10px;
}

.especialidade-item span {
    color: #1e293b;
    font-weight: 500;
    font-size: 16px;
}

/* Link todos serviços */
.todos-servicos {
    margin-top: 25px;
    text-align: center;
}

.todos-servicos a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #28b6f6;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 40px;
    background: rgba(40,182,246,0.08);
    transition: all 0.3s ease;
}

.todos-servicos a:hover {
    background: #28b6f6;
    color: white;
    gap: 15px;
}

/* Social */
.social-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.social-titulo {
    font-size: 14px;
    color: #64748b;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid rgba(40,182,246,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28b6f6;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #28b6f6;
    color: white;
    border-color: #28b6f6;
    transform: translateY(-3px);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1200px) {
    .services-header h2 {
        font-size: 38px;
    }
    
    .service-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-header h2 {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-card h3 {
        font-size: 22px;
    }
    
    .especialidades-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .services-header h2 {
        font-size: 28px;
    }
    
    .services-header span {
        font-size: 16px;
    }
    
    .service-icon {
        font-size: 46px;
    }
    
    .contacto-icone {
        width: 44px;
        height: 44px;
    }
    
    .contacto-valor {
        font-size: 16px;
    }
    
    .horario-dia {
        font-size: 16px;
    }
    
    .horario-hora {
        font-size: 15px;
        padding: 5px 12px;
    }
}