.elementor-5102 .elementor-element.elementor-element-4f7d05c{--display:flex;}/* Start custom CSS for html, class: .elementor-element-6ccd346 */.apple-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* HEADER STYLE */
.apple-header {
    text-align: center;
    margin-bottom: 60px;
}

.badge {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6e7072; /* Gris más oscuro para el badge */
    margin-bottom: 12px;
    display: block;
}

.apple-header h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.2px;
    margin: 0 0 15px 0;
    color: #1d1d1f;
}

.apple-header p {
    font-size: 21px;
    color: #424245;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.45;
}

/* GRID ESTILO APPLE */
.apple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.apple-card {
    background: #ffffff; /* Las tarjetas siguen siendo blancas puras para que resalten sobre el fondo gris */
    border-radius: 22px; 
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    /* Sombra un poco más marcada para despegarse del fondo gris */
    box-shadow: 0 8px 24px rgba(0,0,0,0.08); 
}

/* EFECTO HOVER PROFESIONAL */
.apple-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    background: #ffffff;
}

.card-content {
    padding: 35px 30px;
    flex-grow: 1;
}

.apple-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.25;
}

.apple-arrow {
    font-size: 20px;
    color: #0071e3; 
    font-weight: bold;
    opacity: 0.4;
    transition: all 0.3s ease;
    display: block;
}

.apple-card:hover .apple-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* BARRA DE COLOR INFERIOR REFINADA */
.apple-bar {
    height: 6px; 
    width: 100%;
}

/* PALETA DE COLORES KÖSTER */
.bar-azul { background: #0082c8; }
.bar-rojo { background: #d7191c; }
.bar-naranja { background: #ff8200; }
.bar-gris { background: #6e7072; }
.bar-marron { background: #a46060; }
.bar-amarillo { background: #ffcc33; }
.bar-turquesa { background: #00667e; }
.bar-verde { background: #4caf50; }
.bar-celeste { background: #71d9f8; }
.bar-plata { background: #bdc3c7; }
.bar-azul-oscuro { background: #0d3184; }

/* FOOTER */
.apple-footer {
    margin-top: 80px;
    padding-bottom: 40px;
    text-align: center;
    font-size: 14px;
    color: #6e7072;
}

/* RESPONSIVO */
@media (max-width: 950px) {
    .apple-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
    .apple-grid { grid-template-columns: 1fr; }
    .apple-header h1 { font-size: 32px; }
}/* End custom CSS */