.hero-gradient {
    background: linear-gradient(135deg, #0B2A4A 0%, #1e40af 100%);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.booking-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.time-slot {
    transition: all 0.3s ease;
}

.time-slot:hover {
    background-color: #F59E0B;
    color: white;
}

.time-slot.selected {
    background-color: #0B2A4A;
    color: white;
}

.time-slot:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hidden { display: none !important; }

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .booking-calendar {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Estilos para servicios "coming soon" */
.coming-soon {
    position: relative;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 42, 74, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: uppercase;
    backdrop-filter: blur(1px);
}

/* Ajustes para el logo */
.custom-logo {
    width: 25rem;
    height: 7rem;
    object-fit: contain;
}

@media (max-width: 768px) {
    .custom-logo {
        width: 18rem;
        height: 5rem;
    }
}

@media (max-width: 640px) {
    .custom-logo {
        width: 12rem;
        height: 4rem;
    }
}

/* Ajustes para imágenes responsivas */
.service-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Estilos para el formulario de contacto */
#contact-form input,
#contact-form textarea,
#contact-form select {
    transition: all 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus,
#contact-form select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}

/* Estilos para modales */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0B2A4A;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6B7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.modal-body {
    padding: 2rem;
    line-height: 1.6;
}

.modal-body h3 {
    color: #0B2A4A;
    margin-bottom: 1rem;
}

.modal-body h4 {
    color: #0B2A4A;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
