/**
 * Hero Moderno Estilo Plenit
 * Texto rotativo, gradientes vibrantes, animaciones suaves
 * @version 1.0.0
 */

/* ============================================
   VARIABLES Y GRADIENTES MODERNOS
   ============================================ */
:root {
    /* Gradientes estilo Plenit */
    --gradient-cyan-purple: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-orange-red: linear-gradient(135deg, #ff6b35 0%, #f7418f 100%);
    --gradient-blue-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-green-cyan: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);

    /* Sombras con color */
    --shadow-cyan: 0 10px 40px rgba(0, 212, 255, 0.3);
    --shadow-purple: 0 10px 40px rgba(124, 58, 237, 0.3);
    --shadow-orange: 0 10px 40px rgba(255, 107, 53, 0.3);
}

/* ============================================
   HERO CON TEXTO ROTATIVO
   ============================================ */
.hero-plenit {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 20px 80px;
}

/* Imagen de fondo */
.hero-plenit .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Video de fondo */
.hero-plenit .hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay oscuro con gradiente */
.hero-plenit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(22, 33, 62, 0.88) 50%, rgba(26, 26, 46, 0.85) 100%);
    z-index: 2;
}

/* Patrón de puntos sobre el overlay */
.hero-plenit::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 3;
    pointer-events: none;
}

/* Círculos decorativos animados */
.hero-plenit .hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: blob-float 8s ease-in-out infinite;
    z-index: 4;
}

.hero-plenit .hero-blob-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-cyan-purple);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-plenit .hero-blob-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-orange-red);
    bottom: -50px;
    left: -50px;
    animation-delay: -4s;
}

.hero-plenit .hero-blob-3 {
    width: 200px;
    height: 200px;
    background: var(--gradient-green-cyan);
    top: 50%;
    left: 10%;
    animation-delay: -2s;
}

@keyframes blob-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Contenido del Hero */
.hero-plenit .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-plenit .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-plenit .hero-badge i {
    color: #00d4ff;
}

/* Título con texto rotativo */
.hero-plenit h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-plenit h1 .static-text {
    display: block;
    margin-bottom: 10px;
}

/* Contenedor del texto rotativo */
.rotating-text-wrapper {
    display: inline-block;
    height: 1.2em;
    overflow: hidden;
    vertical-align: bottom;
}

.rotating-text {
    display: inline-block;
    animation: rotateText 16s ease-in-out infinite;
}

.rotating-text span {
    display: block;
    height: 1.2em;
    line-height: 1.2;
    background: var(--gradient-cyan-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 5 palabras, 16s total = ~3.2s por palabra */
@keyframes rotateText {
    0%, 16% {
        transform: translateY(0);
    }
    20%, 36% {
        transform: translateY(-100%);
    }
    40%, 56% {
        transform: translateY(-200%);
    }
    60%, 76% {
        transform: translateY(-300%);
    }
    80%, 96% {
        transform: translateY(-400%);
    }
    100% {
        transform: translateY(-400%);
    }
}

/* Subtítulo */
.hero-plenit .hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* CTAs del Hero */
.hero-plenit .hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-plenit .btn-primary-gradient {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--gradient-cyan-purple);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-cyan);
}

.hero-plenit .btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.4);
}

.hero-plenit .btn-secondary-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-plenit .btn-secondary-glass:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ESTADÍSTICAS ANIMADAS
   ============================================ */
.stats-section {
    background: var(--gradient-dark);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-cyan-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number .counter {
    display: inline;
}

.stat-number .suffix {
    font-size: 0.6em;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 500;
}

/* ============================================
   CARDS DE PRODUCTOS ANIMADAS
   ============================================ */
.products-showcase {
    padding: 100px 20px;
    background: #f8fafc;
    position: relative;
}

.products-showcase .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.products-showcase .section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.products-showcase .section-header h2 span {
    background: var(--gradient-cyan-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-showcase .section-header p {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
}

/* Grid de productos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Card de producto */
.product-card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e2e8f0;
}

.product-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-cyan-purple);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-color: transparent;
}

.product-card-modern:hover::before {
    transform: scaleX(1);
}

/* Icono del producto */
.product-card-modern .card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: #fff;
    transition: all 0.4s ease;
}

.product-card-modern:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.product-card-modern .card-icon.cyan {
    background: var(--gradient-cyan-purple);
    box-shadow: var(--shadow-cyan);
}

.product-card-modern .card-icon.orange {
    background: var(--gradient-orange-red);
    box-shadow: var(--shadow-orange);
}

.product-card-modern .card-icon.purple {
    background: var(--gradient-blue-purple);
    box-shadow: var(--shadow-purple);
}

.product-card-modern .card-icon.green {
    background: var(--gradient-green-cyan);
    box-shadow: 0 10px 40px rgba(17, 153, 142, 0.3);
}

/* Contenido de la card */
.product-card-modern h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.product-card-modern:hover h3 {
    color: #00d4ff;
}

.product-card-modern p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Features de la card */
.product-card-modern .card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.product-card-modern .feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 13px;
    color: #475569;
    transition: all 0.3s ease;
}

.product-card-modern .feature-tag i {
    color: #00d4ff;
    font-size: 12px;
}

.product-card-modern:hover .feature-tag {
    background: #e0f2fe;
}

/* Link de la card */
.product-card-modern .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-card-modern .card-link i {
    transition: transform 0.3s ease;
}

.product-card-modern:hover .card-link {
    color: #00d4ff;
}

.product-card-modern:hover .card-link i {
    transform: translateX(5px);
}

/* Badge de precio */
.product-card-modern .price-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--gradient-green-cyan);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* ============================================
   TRUST BADGES MODERNOS
   ============================================ */
.trust-badges-modern {
    background: #fff;
    padding: 60px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.trust-badges-modern .badges-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-badges-modern .badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-badges-modern .badge-item:hover {
    background: #e0f2fe;
    transform: translateY(-3px);
}

.trust-badges-modern .badge-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-cyan-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.trust-badges-modern .badge-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px;
}

.trust-badges-modern .badge-text p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-plenit {
        min-height: auto;
        padding: 100px 20px 60px;
    }

    .hero-plenit h1 {
        font-size: 2.2rem;
    }

    .hero-plenit .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-plenit .btn-primary-gradient,
    .hero-plenit .btn-secondary-glass {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item::after {
        display: none;
    }

    .trust-badges-modern .badges-container {
        justify-content: center;
    }

    .trust-badges-modern .badge-item {
        flex: 1 1 calc(50% - 15px);
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .trust-badges-modern .badge-item {
        flex: 1 1 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ANIMACIÓN DE CONTADORES
   ============================================ */
.counter-animated {
    transition: all 0.6s ease;
}

.counter-animated.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO CON MOSAICO (Estilo Plenit)
   ============================================ */
.hero-plenit .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* Contenido lado izquierdo */
.hero-plenit .hero-content-left {
    text-align: left;
    padding-right: 20px;
}

.hero-plenit .hero-content-left .hero-badge {
    margin-bottom: 25px;
}

.hero-plenit .hero-content-left h1 {
    text-align: left;
    margin-bottom: 25px;
}

.hero-plenit .hero-content-left .hero-subtitle {
    text-align: left;
    margin: 0 0 35px;
}

.hero-plenit .hero-content-left .hero-ctas {
    justify-content: flex-start;
}

/* Mosaico lado derecho */
.hero-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 140px);
    gap: 15px;
    animation: fadeInRight 1s ease 0.4s forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tarjetas del mosaico */
.mosaic-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    position: relative;
}

.mosaic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mosaic-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.mosaic-card:hover::before {
    opacity: 1;
}

/* Tarjeta grande (ocupa 2 filas) */
.mosaic-card.large {
    grid-row: span 2;
}

/* Tarjeta ancha (ocupa 2 columnas) */
.mosaic-card.wide {
    grid-column: span 2;
}

/* Icono del mosaico */
.mosaic-card .mosaic-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 26px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.mosaic-card .mosaic-icon.cyan {
    background: var(--gradient-cyan-purple);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.mosaic-card .mosaic-icon.orange {
    background: var(--gradient-orange-red);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.mosaic-card .mosaic-icon.purple {
    background: var(--gradient-blue-purple);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.mosaic-card .mosaic-icon.green {
    background: var(--gradient-green-cyan);
    box-shadow: 0 8px 25px rgba(17, 153, 142, 0.4);
}

/* Texto del mosaico */
.mosaic-card h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 5px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.mosaic-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* Logo/Imagen en tarjeta */
.mosaic-card img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.mosaic-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Tarjeta con imagen de fondo */
.mosaic-card.with-bg {
    background-size: cover;
    background-position: center;
    position: relative;
}

.mosaic-card.with-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.75) 100%);
    border-radius: 16px;
}

.mosaic-card.with-bg > * {
    position: relative;
    z-index: 2;
}

/* ============================================
   RESPONSIVE MOSAICO
   ============================================ */
@media (max-width: 1200px) {
    .hero-plenit .hero-container {
        gap: 40px;
    }

    .hero-mosaic {
        grid-template-rows: repeat(3, 120px);
    }
}

@media (max-width: 992px) {
    .hero-plenit .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-plenit .hero-content-left {
        text-align: center;
        padding-right: 0;
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-plenit .hero-content-left h1,
    .hero-plenit .hero-content-left .hero-subtitle {
        text-align: center;
    }

    .hero-plenit .hero-content-left .hero-ctas {
        justify-content: center;
    }

    .hero-mosaic {
        max-width: 600px;
        margin: 0 auto;
        grid-template-rows: repeat(3, 110px);
    }
}

@media (max-width: 600px) {
    .hero-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px;
    }

    .mosaic-card.large,
    .mosaic-card.wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    .mosaic-card {
        padding: 18px;
        flex-direction: row;
        gap: 15px;
        text-align: left;
    }

    .mosaic-card .mosaic-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        margin-bottom: 0;
        font-size: 22px;
    }

    .mosaic-card h3 {
        font-size: 0.95rem;
    }

    .mosaic-card p {
        font-size: 0.8rem;
    }
}

/* ============================================
   SCROLL REVEAL ANIMATION (Estilo Plenit)
   ============================================ */

/* Estado inicial - elementos visibles por defecto */
.scroll-reveal {
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estado final - elementos visibles */
.scroll-reveal.revealed,
.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Variantes de animación */
.scroll-reveal.from-left {
    transform: translateX(-60px);
}

.scroll-reveal.from-right {
    transform: translateX(60px);
}

.scroll-reveal.from-left.revealed,
.scroll-reveal.from-right.revealed {
    transform: translateX(0);
}

.scroll-reveal.scale-up {
    transform: scale(0.8);
}

.scroll-reveal.scale-up.revealed {
    transform: scale(1);
}

/* Delay helpers para escalonar animaciones */
.reveal-delay-1 { transition-delay: 0.1s !important; }
.reveal-delay-2 { transition-delay: 0.2s !important; }
.reveal-delay-3 { transition-delay: 0.3s !important; }
.reveal-delay-4 { transition-delay: 0.4s !important; }
.reveal-delay-5 { transition-delay: 0.5s !important; }

/* Desactivar animaciones si el usuario prefiere movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   MOSAICO BENTO ESTILO PLENIT
   ============================================ */
.bento-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #fef3f0 0%, #fff5f2 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Forma orgánica de fondo */
.bento-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 180, 150, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bento-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 200, 180, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bento-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.bento-header {
    text-align: center;
    margin-bottom: 60px;
}

.bento-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.bento-header h2 span {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8a65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bento-header p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Bento */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 180px);
    gap: 20px;
}

/* Tarjetas Bento */
.bento-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Tarjetas de colores */
.bento-card.green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
}

.bento-card.pink {
    background: linear-gradient(135deg, #fda4af 0%, #fb7185 100%);
    color: #1a1a2e;
}

.bento-card.salmon {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    color: #1a1a2e;
}

.bento-card.blue {
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    color: #1a1a2e;
}

.bento-card.gray {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    color: #fff;
}

.bento-card.dark {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
}

/* Tarjeta con imagen de fondo */
.bento-card.with-image {
    background-size: cover;
    background-position: center;
    color: #fff;
}

.bento-card.with-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%);
    border-radius: 24px;
}

.bento-card.with-image > * {
    position: relative;
    z-index: 1;
}

/* Tamaños de tarjetas */
.bento-card.span-2-cols {
    grid-column: span 2;
}

.bento-card.span-2-rows {
    grid-row: span 2;
}

.bento-card.span-2x2 {
    grid-column: span 2;
    grid-row: span 2;
}

/* Contenido de tarjetas */
.bento-card .bento-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.bento-card .bento-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.bento-card .bento-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bento-card img.partner-logo {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.bento-card .bento-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bento-card .bento-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Google rating */
.bento-card .google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.bento-card .google-rating img {
    width: 40px;
    height: 40px;
}

.bento-card .google-rating .stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.bento-card .google-rating .rating-number {
    font-size: 2rem;
    font-weight: 800;
}

/* Delays para animación escalonada */
.bento-card:nth-child(1) { transition-delay: 0s; }
.bento-card:nth-child(2) { transition-delay: 0.1s; }
.bento-card:nth-child(3) { transition-delay: 0.15s; }
.bento-card:nth-child(4) { transition-delay: 0.2s; }
.bento-card:nth-child(5) { transition-delay: 0.25s; }
.bento-card:nth-child(6) { transition-delay: 0.1s; }
.bento-card:nth-child(7) { transition-delay: 0.15s; }
.bento-card:nth-child(8) { transition-delay: 0.2s; }
.bento-card:nth-child(9) { transition-delay: 0.25s; }
.bento-card:nth-child(10) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE BENTO
   ============================================ */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto;
    }
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }

    .bento-card.span-2x2 {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .bento-section {
        padding: 60px 15px;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .bento-card {
        padding: 20px;
        border-radius: 18px;
    }

    .bento-card.span-2-cols,
    .bento-card.span-2-rows,
    .bento-card.span-2x2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-card .bento-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SECCIÓN DE CONFIANZA - TRUST SECTION
   ============================================ */
.trust-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.trust-header {
    text-align: center;
    margin-bottom: 50px;
}

.trust-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.trust-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.trust-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.trust-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.trust-icon.purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.trust-icon.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.trust-icon.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.trust-icon.orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Barra de certificaciones */
.certifications-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cert-item img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.cert-item:hover img {
    filter: grayscale(0%);
}

.cert-item span {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.cert-item.google-review {
    flex-direction: row;
    gap: 12px;
}

.cert-item.google-review i {
    font-size: 2.5rem;
    color: #4285f4;
}

.cert-item .review-info {
    display: flex;
    flex-direction: column;
}

.cert-item .review-info .stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
}

.cert-item .review-info .score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

/* Responsive Trust Section */
@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .certifications-bar {
        gap: 30px;
    }

    .trust-section {
        padding: 60px 0;
    }
}
