/**
 * Estilos para página de Contacto
 * Microdental QH Theme
 */

/* ========================================
   HERO SECTION - Para contacto y pedir-cita
   ======================================== */
.contact-hero,
.appointment-hero {
    position: relative;
    min-height: 450px;
    background: linear-gradient(135deg, #B85170 0%, #9A3E5C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

/* Hero específico de pedir cita con color azul */
.appointment-hero {
    background: linear-gradient(135deg, #4a90b7 0%, #3a7c9e 100%);
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20 20L30 10L40 20L50 10L60 20L70 10L80 20" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/><path d="M10 40L20 30L30 40L40 30L50 40L60 30L70 40L80 30L90 40" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/><circle cx="15" cy="60" r="2" fill="white" opacity="0.05"/><circle cx="75" cy="70" r="3" fill="white" opacity="0.08"/></svg>') repeat;
    z-index: 0;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-icon {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ========================================
   CONTACT METHODS
   ======================================== */
.contact-methods {
    padding: 5rem 0;
    background: #f8f9fa;
}

.methods-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-method {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(183, 73, 110, 0.05);
}

.contact-method.primary {
    border: 2px solid rgba(183, 73, 110, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-method.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #B85170, #9A3E5C);
}

.method-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.method-icon {
    margin-bottom: 1.5rem;
}

.method-header h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.method-header h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.method-header p {
    color: #666;
    line-height: 1.6;
}

/* Contact Form Styles */
/* ========================================
   CONTACT FORM - OVERRIDES FORZADOS
   ======================================== */
.contact-form,
.contact-form .microdental-form,
.microdental-form.contact-form {
    background: white !important;
    background-color: white !important;
    border: 2px solid rgba(183, 73, 110, 0.15) !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08) !important;
}

/* Inputs del formulario de contacto */
.contact-form input,
.contact-form select, 
.contact-form textarea,
.microdental-form.contact-form input,
.microdental-form.contact-form select,
.microdental-form.contact-form textarea {
    background: white !important;
    background-color: white !important;
    border: 2px solid #e0e0e0 !important;
    color: #333 !important;
    border-radius: 8px !important;
}

.contact-form input:focus,
.contact-form select:focus, 
.contact-form textarea:focus,
.microdental-form.contact-form input:focus,
.microdental-form.contact-form select:focus,
.microdental-form.contact-form textarea:focus {
    border-color: rgba(183, 73, 110, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(183, 73, 110, 0.1) !important;
    background: white !important;
}

/* Labels del formulario */
.contact-form label,
.microdental-form.contact-form label {
    color: #333 !important;
    font-weight: 500 !important;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link.whatsapp {
    background: #25D366;
    color: white;
}

.social-link.whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.social-link.facebook {
    background: #1877F2;
    color: white;
}

.social-link.facebook:hover {
    background: #166FE5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.social-link.instagram {
    background: linear-gradient(45deg, #E4405F, #C13584, #833AB4);
    color: white;
}

.social-link.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
}

/* ========================================
   CONTACT BENEFITS
   ======================================== */
.contact-benefits {
    padding: 4rem 0;
    background: white;
}

.benefits-content {
    text-align: center;
}

.benefits-content h3 {
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-benefits .benefit {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.contact-benefits .benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B85170 0%, #9A3E5C 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-benefits .benefit:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(183, 73, 110, 0.2);
    border-color: rgba(183, 73, 110, 0.3);
}

.contact-benefits .benefit:hover::before {
    transform: scaleX(1);
}

.contact-benefits .benefit-icon {
    margin-bottom: 2rem;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(184, 81, 112, 0.1) 0%, rgba(154, 62, 92, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-benefits .benefit:hover .benefit-icon {
    background: linear-gradient(135deg, rgba(184, 81, 112, 0.15) 0%, rgba(154, 62, 92, 0.15) 100%);
    transform: scale(1.1);
}

.contact-benefits .benefit h4 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Coolvetica', sans-serif;
}

.contact-benefits .benefit p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive para tablets */
@media (max-width: 968px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }
}


/* ========================================
   OUR CLINICS SECTION
   ======================================== */
.our-clinics {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.clinics-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.philosophy {
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

.clinics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.clinic-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.clinic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.clinic-card.huercal {
    border-color: rgba(183, 73, 110, 0.1);
}

.clinic-card.huercal:hover {
    border-color: rgba(183, 73, 110, 0.3);
}

.clinic-card.mojacar {
    border-color: rgba(74, 144, 183, 0.1);
}

.clinic-card.mojacar:hover {
    border-color: rgba(74, 144, 183, 0.3);
}

.clinic-header {
    padding: 2rem 2rem 1rem;
    position: relative;
}

.clinic-header h3 {
    color: white !important;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.clinic-badge {
    display: inline-block;
    background: #B85170;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clinic-badge.beach {
    background: #4a90b7;
}

.clinic-info {
    padding: 0 2rem 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.info-icon {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.info-content strong {
    display: block;
    color: #333;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.info-content span {
    color: #666;
    line-height: 1.4;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.phone-numbers a {
    color: #B85170;
    text-decoration: none;
    font-weight: 500;
}

.mojacar .phone-numbers a {
    color: #4a90b7;
}

.phone-numbers a:hover {
    text-decoration: underline;
}

.clinic-actions {
    padding: 0 2rem 2rem;
    display: flex;
    gap: 1rem;
}

.clinic-map {
    height: 250px;
    margin: 0;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.clinic-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary, .btn-secondary, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #B85170;
    color: white;
    flex: 1;
    justify-content: center;
}

.btn-primary:hover {
    background: #9A3E5C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 73, 110, 0.3);
}

.btn-primary.beach {
    background: #4a90b7;
}

.btn-primary.beach:hover {
    background: #3a7c9e;
    box-shadow: 0 6px 20px rgba(74, 144, 183, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #B85170;
    border: 2px solid #B85170;
    flex: 1;
    justify-content: center;
}

.btn-secondary:hover {
    background: #B85170;
    color: white;
}

.btn-secondary.beach {
    color: #4a90b7;
    border-color: #4a90b7;
}

.btn-secondary.beach:hover {
    background: #4a90b7;
    color: white;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.contact-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #B85170 0%, #9A3E5C 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="white" opacity="0.1"/><circle cx="75" cy="40" r="1.5" fill="white" opacity="0.05"/><circle cx="40" cy="70" r="3" fill="white" opacity="0.08"/></svg>') repeat;
    z-index: 0;
}

.contact-cta .container {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white !important;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: white;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-cta .btn-primary {
    background: white !important;
    color: #B85170 !important;
    padding: 1rem 2.5rem;
    border: 2px solid white;
}

.contact-cta .btn-primary:hover {
    background: rgba(255,255,255,0.9) !important;
    color: #B85170 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.contact-cta .btn-whatsapp {
    background: white !important;
    color: #25D366 !important;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-cta .btn-whatsapp:hover {
    background: rgba(255,255,255,0.9) !important;
    color: #25D366 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ========================================
   CONTACT FORM 7 STYLING
   ======================================== */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}

.wpcf7-form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.wpcf7-form-control:focus {
    outline: none;
    border-color: #B85170;
    box-shadow: 0 0 0 3px rgba(183, 73, 110, 0.1);
}

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

.wpcf7-submit {
    background: #B85170;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.wpcf7-submit:hover {
    background: #9A3E5C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 73, 110, 0.3);
}

.wpcf7-response-output {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
}

.wpcf7-mail-sent-ok {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wpcf7-validation-errors {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .callback-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .clinics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-method {
        padding: 2rem;
    }
    
    .method-header h2 {
        font-size: 1.8rem;
    }
    
    .callback-info h3 {
        font-size: 1.6rem;
    }
    
    .clinic-actions {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
    
    .callback-form {
        padding: 1.5rem;
    }
    
    .clinic-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .clinic-info {
        padding: 0 1.5rem 1.5rem;
    }
    
    .clinic-actions {
        padding: 0 1.5rem 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .phone-numbers {
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .clinic-map {
        height: 200px;
    }
}
/* ==========================================
   ESTILOS PARA PÁGINA PEDIR CITA
   ========================================== */

/* Contenedor principal */
.appointment-main {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Contenedor del contenido */
.appointment-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

/* Información de cita */
.appointment-info {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.appointment-info h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.appointment-info > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Beneficios */
.appointment-benefits {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.appointment-benefits .benefit {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.appointment-benefits .benefit:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(184, 81, 112, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #B85170 0%, #9A3E5C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.benefit-text h4 {
    color: #333;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.benefit-text p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Formulario de cita */
.appointment-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.appointment-form h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

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

.appointment-form label {
    display: block;
    color: #555;
    font-weight: 500;
    margin-bottom: 8px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: #B85170;
    box-shadow: 0 0 0 3px rgba(184, 81, 112, 0.1);
}

.appointment-form button {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #B85170 0%, #9A3E5C 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.appointment-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 81, 112, 0.3);
}

/* ========================================
   SECCIÓN DE CLÍNICAS - Página pedir cita
   ======================================== */
.appointment-info,
.clinics-info-grid {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.clinics-info-grid h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: left;
}

.clinic-info-card {
    margin-bottom: 30px;
    text-align: left;
}

.clinic-info-card h3 {
    color: #B85170;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.clinic-info-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.clinic-info-card strong {
    color: #333;
    font-weight: 600;
}

.appointment-info h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.appointment-info h3 {
    color: #B85170;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.appointment-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.appointment-info strong {
    color: #333;
    font-weight: 600;
}

.appointment-info a {
    color: #B85170;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.appointment-info a:hover {
    color: #9A3E5C;
}

/* Botones de teléfono */
.appointment-info .phone-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.appointment-info .phone-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #B85170 0%, #9A3E5C 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.appointment-info .phone-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 81, 112, 0.3);
    color: white;
}

/* Sección Prefieres llamarnos */
.clinics-info-grid > h3 {
    color: #333;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    font-weight: 600;
    text-align: left;
}

.clinics-info-grid > p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
}

/* Enlaces de teléfono */
.clinics-info-grid a[href^="tel:"] {
    color: #B85170;
    text-decoration: none;
    font-weight: 600;
    margin-right: 20px;
    display: inline-block;
}

.clinics-info-grid a[href^="tel:"]:hover {
    text-decoration: underline;
}

/* Centrar botones pero dentro del contenedor */
.clinics-info-grid .phone-buttons {
    text-align: left;
    margin-top: 20px;
}

/* Botón WhatsApp mejorado */
.clinics-info-grid a[href*="whatsapp"],
.appointment-info .whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.appointment-info .whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    color: white;
}

/* Responsive para móvil */
@media (max-width: 768px) {
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .appointment-info,
    .appointment-form {
        padding: 30px 20px;
    }
    
    .appointment-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .appointment-benefits .benefit {
        padding: 15px;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
    }
}
