
        /* Estilos generales */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            padding-top: 180px; /* Para compensar el encabezado fijo */
        }
        
        /* Encabezado */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        /* Primera fila - Info de contacto */
        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 5%;
            background: #f8f9fa;
            font-size: 14px;
        }
        
        .social-icons a {
            color: #0056b3;
            margin-right: 15px;
            font-size: 18px;
            transition: color 0.3s;
        }
        
        .social-icons a:hover {
            color: #003366;
        }
        
        .contact-info {
            display: flex;
            gap: 20px;
        }
        
        .contact-info i {
            margin-right: 5px;
            color: #0056b3;
        }
        
        /* Segunda fila - Menú   #0056b3  */
        .menu-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background: #002E5B;
        }
        
        .logo {
            color: white;
            font-weight: bold;
            font-size: 24px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin: 0 15px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #cce0ff;
        }
        
        .appointment-btn {
            background: #ff6b00;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .appointment-btn:hover {
            background: #e05d00;
        }
        
        /* Carrusel de imágenes */
        .slider-container {
            position: relative;
            height: 400px;
            overflow: hidden;
        }
        
        .slider {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.5s ease;
        }
        
        .slide {
            width: 33.33%;
            height: 100%;
            position: relative;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
        }
        
        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 80%;
        }
        
        .slide-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        .thumbnail-container {
            position: absolute;
            bottom: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
        }
        
        .thumbnail {
            width: 50px;
            height: 30px;
            cursor: pointer;
            border: 2px solid white;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        
        .thumbnail:hover, .thumbnail.active {
            opacity: 1;
            border-color: #EFE4B0;
        }
        
        /* Sección de servicios */
        .services-section {
            padding: 60px 5%;
            text-align: center;
        }
        
        .section-title {
            font-size: 32px;
            color: #002E5B;
            margin-bottom: 15px;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 30px 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            border: 1px solid #e0e0e0;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            border-color: #F6F782;
        }
        
        .service-card i {
            font-size: 40px;
            color: #002E5B;
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .service-card p {
            color: #666;
            font-size: 14px;
        }
        
        /* Pie de página */
        footer {
            background: #002E5B;
            color: white;
            padding: 40px 5%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-logo {
            margin-bottom: 20px;
        }
        
        .footer-logo h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .footer-social h3, .footer-contact h3 {
            font-size: 20px;
            margin-bottom: 20px;
        }
        
        .footer-social a {
            color: white;
            font-size: 24px;
            margin-right: 15px;
            transition: color 0.3s;
        }
        
        .footer-social a:hover {
            color: #cce0ff;
        }
        
        .contact-info-footer {
            margin-bottom: 10px;
        }
        
        .contact-info-footer i {
            margin-right: 10px;
        }

<!-- Agregar estos estilos al <style> existente -->
.contact-section {
    padding: 60px 5%;
    background: #f8f9fa;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2, .contact-form h2 {
    font-size: 28px;
    color: #002E5B;
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.detail-item i {
    font-size: 20px;
    color: #002E5B;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
}

.submit-btn {
    background: #0056b3;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #003d82;
}

/* Estilos para mensajes de error/éxito */
#form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

#form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

#form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}




/* Estilos para el modal de contacto */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-contacto {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-contacto {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #0056b3;
    color: white;
    border-radius: 10px 10px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.modal-body {
    padding: 20px;
}

/* Estilos del formulario dentro del modal */
.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
}

.submit-btn {
    background: #0056b3;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #003d82;
}

/* Mensajes de respuesta */
.form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-response.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-response.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Responsive */
@media (max-width: 480px) {
    .modal-contacto {
        width: 95%;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
}