@media (max-width: 768px) {
    #inicio {
        height: 100vh !important;
    }
    
    .carousel-item img {
        height: 100vh !important;
        object-position: center center;
    }
    
    .display-4 {
        font-size: calc(1.8rem + 2vw);
    }
} 

/* Estilos para la sección de contacto */
.hover-shadow {
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.hover-success:hover {
    color: #006633 !important;
    transition: color 0.3s ease;
}

.contact-info {
    position: relative;
}

@media (max-width: 768px) {
    .border-start {
        border: none !important;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid rgba(0,102,51,0.25) !important;
    }
} 

/* Estilos para el KPI */
.kpi-container {
    position: relative;
    padding: 1.5rem;
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.kpi-details {
    position: relative;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(0, 102, 51, 0.1);
}

.kpi-item {
    flex: 1;
    padding: 0.5rem;
}

.kpi-divider {
    width: 1px;
    background-color: rgba(0, 102, 51, 0.1);
    margin: 0 1rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 51, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 102, 51, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 51, 0);
    }
}

#estadisticas .card {
    transition: all 0.3s ease;
}

#estadisticas .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

@media (max-width: 768px) {
    .kpi-divider {
        display: none;
    }
    
    .kpi-details {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .kpi-item:not(:last-child) {
        border-bottom: 1px solid rgba(0, 102, 51, 0.1);
        padding-bottom: 1.5rem;
    }
} 

/* Estilos para las tarjetas de estadísticas */
.stat-card {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 0.5rem;
}

.highlight-stat {
    transform: scale(1.05);
}

.highlight-stat .icon-circle {
    width: 64px;
    height: 64px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 51, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 102, 51, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 51, 0);
    }
}

.stat-card:hover {
    transform: translateY(-5px);
}

.highlight-stat:hover {
    transform: scale(1.05) translateY(-5px);
} 

.progress-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0, 102, 51, 0.1);
    padding: 20px;
    position: relative;
}

.progress-circle-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 15px rgba(0, 102, 51, 0.1);
}

.progress-percentage {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 102, 51, 0.1);
}

@media (max-width: 768px) {
    .col-md-6:not(:first-child) {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(0, 102, 51, 0.1);
    }
    
    .border-end {
        border: none !important;
    }
} 