/* Estilos personalizados adicionales para ICASA */

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.service-card .card-body {
    transition: all 0.3s ease;
}

.service-card:hover .card-body {
    background: linear-gradient(to bottom, rgba(26, 84, 144, 0.02), rgba(26, 84, 144, 0.05));
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,.15) !important;
}

/* Iconos grandes */
.icon-large {
    font-size: 3rem;
    color: var(--primary-color);
}

.icon-hero {
    font-size: 15rem;
    opacity: 0.3;
}

/* Secciones */
.section-padding {
    padding: 4rem 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Formularios */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 84, 144, 0.25);
}

/* Animaciones suaves */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}
