body {
    background-color: #f5f7fa;
}

.hero {
    background: url('/assets/img/banner.png') no-repeat center center;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    min-height: 100vh;
}

.indicador-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: all .3s ease;
}

.indicador-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.icono-card {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    background: #e8f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icono-card svg {
    width: 32px;
    height: 32px;
    fill: #003366;
    opacity: 0.9;
}

.btn-detalle {
    background: #003366;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: all .3s ease;
}

.btn-detalle:hover {
    background: #001f4d;
    transform: translateY(-2px);
}

.seccion-precios {
    background: linear-gradient(135deg, #001f4d 0%, #003366 100%);
    padding: 80px 0;
    color: white;
}

.seccion-precios p, h4, h5 {
    color: #333;
}