/* Estilos para sección de servicios Eagle */

.service-card {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 204, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .card-body {
    position: relative;
    z-index: 1;
}

.icon-wrapped {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.benefits-list {
    padding-left: 10px;
}

.benefit-item {
    font-size: 0.95rem;
}

.highlight-box {
    border: 2px solid rgba(255, 215, 0, 0.3);
}

/* Modal styles */
.modal-content {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    border-bottom: 3px solid #1A1A1A;
}

.stay-icon,
.partners-icon {
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.benefit-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 20px;
    }

    .modal-dialog {
        margin: 1rem;
    }

    .modal-lg {
        max-width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Badge styles */
.badge {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Button hover effects */
.btn-warning:hover {
    background: #FFCC00 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.btn-success:hover {
    background: #20BD5A !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Card hover effect */
.card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}