/* Estilos inspirados en Apple - 204 SOFTWARE */

:root {
    --primary-color: #1d1d1f;
    --secondary-color: #0066cc;
    --accent-color: #28a745;
    --light-color: #f5f5f7;
    --dark-color: #1d1d1f;
    --text-color: #1d1d1f;
    --text-light: #86868b;
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #28a745 100%);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* ==================== RESET Y ESTILOS BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

/* ==================== NAVEGACIÓN ==================== */
.navbar {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 1rem 0;
    transition: background-color .4s ease, backdrop-filter .4s ease, box-shadow .4s ease, padding .3s ease;
    box-shadow: none;
}

.navbar.scrolled {
    background-color: rgba(29, 29, 31, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff !important;
}

.logo-text {
    color: #fff;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.logo-sub {
    color: #fff;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* ==================== HERO SECTION ESTILO APPLE ==================== */
.hero-apple-style {
    position: relative;
    overflow: hidden;
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f7 30%, #f0f5ff 70%, #f0f8f0 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* Fondo geométrico minimalista */
.hero-geometric-bg-apple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hexagon-apple {
    position: absolute;
    width: 100px;
    height: 115px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.02) 0%, rgba(40, 167, 69, 0.02) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.3;
    animation: hexagonFloatApple 25s ease-in-out infinite;
}

.hexagon-apple:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.hexagon-apple:nth-child(2) {
    top: 65%;
    right: 12%;
    animation-delay: 8s;
    opacity: 0.2;
}

.hexagon-apple:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation-delay: 16s;
    opacity: 0.25;
}

.hexagon-apple:nth-child(4) {
    top: 35%;
    right: 25%;
    animation-delay: 24s;
    opacity: 0.2;
}

@keyframes hexagonFloatApple {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-15px) rotate(3deg) scale(1.05);
    }
    66% {
        transform: translateY(10px) rotate(-2deg) scale(0.95);
    }
}

/* Olas sutiles estilo Apple */
.wave-container-apple {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.wave-apple {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 102, 204, 0.08) 20%,
        rgba(40, 167, 69, 0.08) 45%,
        rgba(0, 102, 204, 0.05) 70%,
        transparent 100%
    );
    animation: waveMoveApple 30s linear infinite;
    border-radius: 50% 50% 0 0;
}

.wave-apple:nth-child(1) {
    animation-duration: 35s;
    opacity: 0.6;
    height: 160px;
}

.wave-apple:nth-child(2) {
    animation-duration: 40s;
    animation-direction: reverse;
    opacity: 0.4;
    height: 140px;
    bottom: 10px;
}

@keyframes waveMoveApple {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-60%);
    }
}

/* Contenido del hero */
.hero-apple-style .container {
    position: relative;
    z-index: 4;
}

.hero-content-apple {
    padding-right: 60px;
}

/* Título estilo Apple */
.hero-title-apple {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.gradient-text-apple {
    background: linear-gradient(135deg, #0066cc 0%, #28a745 50%, #1d1d1f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
}

.gradient-text-apple::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #28a745);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}

.hero-title-apple:hover .gradient-text-apple::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Subtítulo */
.hero-subtitle-apple {
    font-size: 1.3rem;
    color: #424245;
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
}

/* Botones Apple */
.hero-buttons-apple {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 2;
}

.btn-primary-apple {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 12px;
    color: white;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
}

.btn-primary-apple::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.btn-primary-apple:hover::before {
    left: 100%;
}

.btn-primary-apple:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.35);
}

.btn-outline-apple {
    border: 2px solid #0066cc;
    color: #0066cc;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.btn-outline-apple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #0066cc;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn-outline-apple:hover::before {
    width: 100%;
}

.btn-outline-apple:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 102, 204, 0.2);
    border-color: #0066cc;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Slogan animado */
.hero-slogan-apple {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.slogan-text-apple {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.slogan-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: wordFadeIn 0.5s ease forwards;
    padding: 4px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(40, 167, 69, 0.1) 100%);
    color: #1d1d1f;
    position: relative;
    overflow: hidden;
}

.slogan-word::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.7s ease;
}

.slogan-word:hover::before {
    left: 100%;
}

/* Animación secuencial de palabras */
.slogan-word:nth-child(1) { animation-delay: 0.5s; color: #0066cc; }
.slogan-word:nth-child(2) { animation-delay: 0.7s; }
.slogan-word:nth-child(3) { animation-delay: 0.9s; color: #28a745; }
.slogan-word:nth-child(4) { animation-delay: 1.1s; }
.slogan-word:nth-child(5) { animation-delay: 1.3s; }
.slogan-word:nth-child(6) { animation-delay: 1.5s; color: #0066cc; }
.slogan-word:nth-child(7) { animation-delay: 1.7s; }
.slogan-word:nth-child(8) { animation-delay: 1.9s; color: #28a745; }

@keyframes wordFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slogan-line-apple {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #28a745);
    margin: 0 auto;
    border-radius: 2px;
    animation: lineGrow 1.2s ease 2.2s forwards;
}

@keyframes lineGrow {
    to {
        width: 300px;
    }
}

/* Contenedor del video estilo Apple */
.hero-video-container-apple {
    position: relative;
    z-index: 3;
}

.video-hero-container-apple {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: perspective(1200px) rotateY(-8deg);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #000;
    position: relative;
    z-index: 3;
}

.video-hero-container-apple:hover {
    transform: perspective(1200px) rotateY(0deg) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.hero-video-apple {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: all 0.6s ease;
}

.video-hero-container-apple:hover .hero-video-apple {
    transform: scale(1.05);
}

/* Indicador de reproducción */
.auto-play-indicator-apple {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-hero-container-apple:hover .auto-play-indicator-apple {
    opacity: 1;
    transform: translateY(0);
}

.auto-play-indicator-apple i {
    color: #28a745;
    font-size: 1rem;
}

/* Efecto de brillo al hover */
.video-glow-apple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

.video-hero-container-apple:hover .video-glow-apple {
    opacity: 1;
}

/* Brillo general */
.hero-shine-apple {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    z-index: 1;
    animation: shineEffectApple 25s ease-in-out infinite;
}

@keyframes shineEffectApple {
    0% {
        left: -100%;
        opacity: 0;
    }
    15% {
        opacity: 0.3;
    }
    25%, 100% {
        left: 100%;
        opacity: 0;
    }
}

/* ==================== ESTILOS PARA IMAGEN REAL DEL PRODUCTO ==================== */
.apple-featured-img-real {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.apple-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.apple-featured-img-real:hover .apple-product-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.apple-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 102, 204, 0.2) 0%,
        rgba(40, 167, 69, 0.15) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.apple-featured-img-real:hover .apple-image-overlay {
    opacity: 0.9;
    background: linear-gradient(
        to bottom,
        rgba(0, 102, 204, 0.3) 0%,
        rgba(40, 167, 69, 0.25) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.apple-image-overlay i {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.9;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.apple-image-overlay span {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

/* Efecto de borde sutil */
.apple-featured-img-real::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    z-index: 2;
    pointer-events: none;
}

/* Efecto de brillo para la imagen */
.apple-featured-img-real::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(30deg);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.apple-featured-img-real:hover::after {
    opacity: 1;
    animation: shineMove 1.5s ease;
}

@keyframes shineMove {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(30deg);
    }
}

/* ==================== SECCIÓN PRODUCTOS ESTILO APPLE ==================== */

.apple-products-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Header estilo Apple */
.apple-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.apple-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.apple-section-subtitle {
    font-size: 1.3rem;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

.apple-section-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #28a745);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.apple-section-line::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 12px;
    background: #0066cc;
    border-radius: 6px;
    opacity: 0.3;
}

/* Producto Destacado - Agro Digital Assist */
.apple-featured-product {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 50%, #f0f8f0 100%);
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.apple-featured-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #28a745);
}

.apple-product-image-container {
    position: relative;
    padding: 40px;
}

.apple-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.apple-product-badge-main {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1d1d1f;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Información del Producto */
.apple-product-info {
    padding: 20px 0 20px 40px;
}

.apple-product-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #0066cc 0%, #1d1d1f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.apple-product-tagline {
    font-size: 1.3rem;
    color: #0066cc;
    margin-bottom: 2rem;
    font-weight: 600;
}

.apple-product-description {
    font-size: 1.2rem;
    color: #424245;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    padding-right: 30px;
}

/* Features del Producto */
.apple-product-features {
    margin-bottom: 3rem;
}

.apple-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.apple-feature:hover {
    background: white;
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.apple-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066cc, #28a745);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.apple-feature-icon i {
    font-size: 1.3rem;
    color: white;
}

.apple-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.3rem;
}

.apple-feature-content p {
    font-size: 0.95rem;
    color: #86868b;
    margin: 0;
}

/* CTA del Producto */
.apple-product-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.apple-product-cta .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 12px;
    font-size: 1.1rem;
}

/* Grid de Productos Horizontal */
.apple-products-grid {
    margin-top: 60px;
}

.apple-grid-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 1rem;
}

.apple-grid-subtitle {
    font-size: 1.2rem;
    color: #86868b;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.5;
}

.apple-products-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding: 20px 0 40px;
    gap: 30px;
    -webkit-overflow-scrolling: touch;
}

.apple-products-scroll::-webkit-scrollbar {
    height: 6px;
}

.apple-products-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.apple-products-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #0066cc, #28a745);
    border-radius: 10px;
}

/* Cards de Productos */
.apple-product-card {
    flex: 0 0 auto;
    width: 320px;
    scroll-snap-align: start;
}

.apple-card-inner {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 1px solid #e5e5e7;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.apple-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #28a745);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.apple-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 102, 204, 0.12);
    border-color: transparent;
}

.apple-card-inner:hover::before {
    transform: scaleX(1);
}

.apple-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc, #28a745);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.apple-product-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.apple-product-card p {
    color: #86868b;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.apple-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.apple-card-features span {
    background: rgba(0, 102, 204, 0.08);
    color: #0066cc;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.apple-card-features i {
    font-size: 0.8rem;
}

.apple-card-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.apple-card-link i {
    transition: transform 0.3s ease;
}

.apple-card-link:hover {
    color: #004d99;
}

.apple-card-link:hover i {
    transform: translateX(5px);
}

/* Video Demo Section */
.apple-video-demo {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
    margin-top: 40px;
}

.apple-video-header {
    text-align: center;
    margin-bottom: 50px;
}

.apple-video-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.apple-video-header p {
    font-size: 1.2rem;
    color: #86868b;
    max-width: 500px;
    margin: 0 auto;
}

.apple-video-container {
    max-width: 900px;
    margin: 0 auto;
}

.apple-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 102, 204, 0.15);
    margin-bottom: 40px;
}

.apple-demo-video {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.apple-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.apple-video-wrapper:hover .apple-video-overlay {
    opacity: 1;
}

.apple-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0066cc;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.apple-play-btn:hover {
    background: white;
    transform: scale(1.1);
    color: #004d99;
}

/* Características */
.caracteristicas-section {
    padding: 80px 0;
    background-color: var(--light-color);
    position: relative;
}

.caracteristicas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 102, 204, 0.2),
        rgba(40, 167, 69, 0.2),
        transparent
    );
}

.caracteristica-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.caracteristica-icon:hover {
    transform: scale(1.1);
}

.caracteristicas-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.caracteristicas-section p {
    color: var(--text-light);
    max-width: 250px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(29, 29, 31, 0.9), rgba(29, 29, 31, 0.9)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.3),
        transparent
    );
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-light {
    background: white;
    color: var(--secondary-color);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 3rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 102, 204, 0.3),
        rgba(40, 167, 69, 0.3),
        transparent
    );
}

.footer h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer p, .footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .hero-title-apple {
        font-size: 2.5rem;
    }
    
    .apple-section-title {
        font-size: 2.5rem;
    }
    
    .apple-product-title {
        font-size: 2.2rem;
    }
    
    .apple-featured-product {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .hero-apple-style {
        padding: 80px 0 100px;
        min-height: auto;
    }
    
    .hero-title-apple {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-apple {
        font-size: 1.1rem;
    }
    
    .hero-content-apple {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .hero-buttons-apple {
        justify-content: center;
    }
    
    .apple-section-title {
        font-size: 2.2rem;
    }
    
    .apple-section-subtitle {
        font-size: 1.1rem;
    }
    
    .apple-featured-product {
        padding: 30px;
    }
    
    .apple-product-info {
        padding: 20px 0 0 0;
    }
    
    .apple-product-title {
        font-size: 2rem;
    }
    
    .apple-featured-img-real {
        height: 350px;
    }
    
    .apple-grid-title {
        font-size: 2.2rem;
    }
    
    .apple-product-card {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .hero-apple-style {
        padding: 60px 0 80px;
    }
    
    .hero-title-apple {
        font-size: 2rem;
    }
    
    .hero-subtitle-apple {
        font-size: 1rem;
    }
    
    .hero-buttons-apple {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons-apple .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .slogan-text-apple {
        font-size: 1.4rem;
        flex-wrap: wrap;
    }
    
    .slogan-word {
        font-size: 0.9rem;
        padding: 3px 8px;
    }
    
    @keyframes lineGrow {
        to {
            width: 200px;
        }
    }
    
    .apple-section-header {
        margin-bottom: 40px;
    }
    
    .apple-section-title {
        font-size: 2rem;
    }
    
    .apple-section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .apple-featured-product {
        padding: 25px;
        margin-bottom: 60px;
    }
    
    .apple-product-image-container {
        padding: 20px;
    }
    
    .apple-featured-img-real {
        height: 300px;
    }
    
    .apple-image-overlay i {
        font-size: 3rem;
    }
    
    .apple-image-overlay span {
        font-size: 1.5rem;
    }
    
    .apple-product-title {
        font-size: 1.8rem;
    }
    
    .apple-product-description {
        font-size: 1.1rem;
        padding-right: 0;
    }
    
    .apple-feature {
        padding: 12px;
    }
    
    .apple-product-cta {
        flex-direction: column;
    }
    
    .apple-product-cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .apple-grid-title {
        font-size: 1.9rem;
    }
    
    .apple-grid-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .apple-products-scroll {
        gap: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .apple-product-card {
        width: 260px;
    }
    
    .apple-video-header h3 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-apple-style {
        padding: 50px 0 70px;
    }
    
    .hero-title-apple {
        font-size: 1.8rem;
    }
    
    .slogan-text-apple {
        font-size: 1.2rem;
        gap: 4px;
    }
    
    .slogan-word {
        font-size: 0.8rem;
        padding: 2px 6px;
    }
    
    .apple-featured-img-real {
        height: 250px;
    }
    
    .apple-image-overlay i {
        font-size: 2.5rem;
    }
    
    .apple-image-overlay span {
        font-size: 1.3rem;
    }
    
    .apple-product-badge-main {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .apple-product-title {
        font-size: 1.6rem;
    }
    
    .apple-product-tagline {
        font-size: 1rem;
    }
    
    .apple-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .apple-feature-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .apple-products-scroll {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .apple-product-card {
        width: 240px;
    }
    
    .apple-card-inner {
        padding: 20px;
    }
    
    .apple-video-header h3 {
        font-size: 1.8rem;
    }
    
    .wave-container-apple {
        height: 140px;
    }
    
    .hero-slogan-apple {
        bottom: 40px;
    }


}
 
/* Animación de flujo de trabajo */
.workflow-animation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.workflow-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInStep 0.8s ease forwards;
}

.workflow-step[data-step="1"] { animation-delay: 0.3s; }
.workflow-step[data-step="2"] { animation-delay: 0.6s; }
.workflow-step[data-step="3"] { animation-delay: 0.9s; }
.workflow-step[data-step="4"] { animation-delay: 1.2s; }

@keyframes fadeInStep {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.workflow-step:hover .step-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: white;
}

.step-icon i {
    font-size: 1.8rem;
    color: rgb(255, 255, 255);
}

.step-content h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.step-line {
    position: absolute;
    top: 35px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    animation: pulseLine 2s infinite;
}

@keyframes pulseLine {
    0%, 100% { background: rgba(255, 255, 255, 0.3); }
    50% { background: rgba(255, 255, 255, 0.6); }
}

/* Elementos flotantes */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.15);
    animation: floatElement 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { animation-delay: 0s; }
.floating-icon:nth-child(2) { animation-delay: 1.5s; }
.floating-icon:nth-child(3) { animation-delay: 3s; }
.floating-icon:nth-child(4) { animation-delay: 4.5s; }

@keyframes floatElement {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Botón CTA */
.animation-showcase .btn-light {
    background: white;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.animation-showcase .btn-light:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.animation-showcase .btn-light i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.animation-showcase .btn-light:hover i {
    transform: translateX(5px);
}

/* Animación Showcase */
.animation-showcase {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.animation-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.3),
        transparent
    );
}

.animation-showcase::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.3),
        transparent
    );
}

.animation-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ==================== SLOGAN ELEGANTE ESTILO APPLE ==================== */
.hero-slogan-apple {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
    padding: 0 20px;
}

.slogan-container-elegant {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.slogan-line-group {
    overflow: hidden;
    padding: 2px 0;
}

.slogan-phrase {
    display: inline-block;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(30px);
    animation: phraseReveal 0.8s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}

.phrase-1 { animation-delay: 0.3s; }
.phrase-2 { animation-delay: 0.8s; }
.phrase-3 { animation-delay: 1.3s; }

@keyframes phraseReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.phrase-word {
    display: inline-block;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.phrase-word.accent {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, #0066cc 0%, #1d1d1f 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
    position: relative;
}

/* Estilos específicos para cada línea */
.phrase-1 .phrase-word.accent {
    font-size: 2rem;
    font-weight: 800;
}

.phrase-1 .phrase-word:not(.accent) {
    font-size: 1.8rem;
    font-weight: 500;
    color: #1d1d1f;
    letter-spacing: -0.2px;
}

.phrase-2 .phrase-word.accent {
    font-size: 1.9rem;
    font-weight: 700;
}

.phrase-2 .phrase-word:not(.accent) {
    font-size: 1.7rem;
    font-weight: 450;
    color: #1d1d1f;
}

.phrase-3 .phrase-word.accent {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0066cc 0%, #28a745 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.phrase-3 .phrase-word:not(.accent) {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1d1d1f;
}

/* Hover effect elegante */
.phrase-word.accent:hover {
    transform: scale(1.02) translateY(-2px);
    text-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
    cursor: default;
}

/* Subrayado animado */
.slogan-elegant-underline {
    position: relative;
    width: 100%;
    height: 2px;
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.underline-gradient {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent,
        #0066cc 20%,
        #28a745 50%,
        #0066cc 80%,
        transparent
    );
    border-radius: 3px;
    animation: underlineExpand 1.2s cubic-bezier(0.2, 0.9, 0.3, 1) 1.8s forwards;
    box-shadow: 0 0 15px rgba(0, 102, 204, 0.3);
}

@keyframes underlineExpand {
    0% {
        width: 0;
        opacity: 0.5;
    }
    100% {
        width: 480px;
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .slogan-phrase {
        font-size: 1.4rem;
    }
    
    .phrase-1 .phrase-word.accent,
    .phrase-3 .phrase-word.accent {
        font-size: 1.8rem;
    }
    
    .phrase-1 .phrase-word:not(.accent),
    .phrase-3 .phrase-word:not(.accent) {
        font-size: 1.6rem;
    }
    
    @keyframes underlineExpand {
        100% { width: 380px; }
    }
}

@media (max-width: 768px) {
    .slogan-container-elegant {
        gap: 4px;
    }
    
    .slogan-phrase {
        font-size: 1.2rem;
    }
    
    .phrase-1 .phrase-word.accent,
    .phrase-3 .phrase-word.accent {
        font-size: 1.5rem;
    }
    
    .phrase-1 .phrase-word:not(.accent),
    .phrase-3 .phrase-word:not(.accent) {
        font-size: 1.3rem;
    }
    
    .phrase-2 .phrase-word.accent {
        font-size: 1.4rem;
    }
    
    .phrase-2 .phrase-word:not(.accent) {
        font-size: 1.2rem;
    }
    
    @keyframes underlineExpand {
        100% { width: 280px; }
    }
}

@media (max-width: 576px) {
    .hero-slogan-apple {
        bottom: 20px;
    }
    
    .slogan-phrase {
        font-size: 1rem;
    }
    
    .phrase-1 .phrase-word.accent,
    .phrase-3 .phrase-word.accent {
        font-size: 1.3rem;
    }
    
    .phrase-1 .phrase-word:not(.accent),
    .phrase-3 .phrase-word:not(.accent) {
        font-size: 1.1rem;
    }
    
    @keyframes underlineExpand {
        100% { width: 220px; }
    }
}

/* Playfair Display cargada en template.php via <link> (más rápido que @import) */

/* ==================== HERO SECTION PREMIUM - ESTILO APPLE ULTRA ELEGANTE ==================== */
.hero-apple-style-premium {
    position: relative;
    top: 100px;
    overflow: hidden;
    padding: 60px 0 100px; /* REDUCIDO el espacio superior */
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 30%, #f0f7fa 70%, #f5fbf5 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Fondo con elementos flotantes - IGUAL que sección Transforma */
.hero-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.premium-floating-icon {
    position: absolute;
    font-size: 2.2rem;
    color: rgba(0, 102, 204, 0.08);
    animation: premiumFloatElement 12s ease-in-out infinite;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.premium-floating-icon:nth-child(1) { animation-delay: 0s; font-size: 2.5rem; color: rgba(0, 102, 204, 0.06); }
.premium-floating-icon:nth-child(2) { animation-delay: 2s; font-size: 2rem; color: rgba(40, 167, 69, 0.06); }
.premium-floating-icon:nth-child(3) { animation-delay: 4s; font-size: 2.8rem; color: rgba(0, 102, 204, 0.05); }
.premium-floating-icon:nth-child(4) { animation-delay: 6s; font-size: 2.2rem; color: rgba(40, 167, 69, 0.05); }
.premium-floating-icon:nth-child(5) { animation-delay: 8s; font-size: 2.4rem; color: rgba(0, 102, 204, 0.04); }
.premium-floating-icon:nth-child(6) { animation-delay: 10s; font-size: 2rem; color: rgba(40, 167, 69, 0.04); }

@keyframes premiumFloatElement {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-15px) rotate(5deg) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-25px) rotate(8deg) scale(1.15);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-10px) rotate(3deg) scale(1.05);
        opacity: 0.5;
    }
}

/* Geometría sagrada */
.hero-geometric-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.geometric-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,102,204,0.03) 0%, transparent 70%);
    animation: geometricPulse 15s infinite alternate;
}

.geometric-circle:nth-child(1) {
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(40,167,69,0.03) 0%, transparent 70%);
    animation-duration: 20s;
}

.geometric-circle:nth-child(2) {
    bottom: -150px;
    right: -50px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,102,204,0.02) 0%, transparent 70%);
    animation-duration: 25s;
    animation-delay: 2s;
}

.geometric-circle:nth-child(3) {
    top: 20%;
    right: 15%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(40,167,69,0.02) 0%, transparent 70%);
    animation-duration: 18s;
    animation-delay: 4s;
}

.geometric-dots {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(0, 102, 204, 0.15);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.1);
    animation: dotFloat 8s infinite;
}

.geometric-dots:nth-child(4) { top: 30%; left: 10%; width: 6px; height: 6px; animation-delay: 0s; }
.geometric-dots:nth-child(5) { top: 70%; right: 15%; width: 4px; height: 4px; animation-delay: 2s; }
.geometric-dots:nth-child(6) { bottom: 40%; left: 20%; width: 5px; height: 5px; animation-delay: 4s; }

@keyframes geometricPulse {
    0% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    100% { transform: scale(1.3) rotate(10deg); opacity: 0.6; }
}

@keyframes dotFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
    50% { transform: translateY(-20px) scale(1.5); opacity: 0.4; }
}

/* ==================== SLOGAN PREMIUM - UNA SOLA LÍNEA, GRANDE ==================== */
.slogan-premium-container {
    position: absolute;
    top: 30px; /* Arriba de todo */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 20;
    padding: 0 30px;
    pointer-events: none;
}

/* ==================== SLOGAN PREMIUM - TAMAÑO CORREGIDO ==================== */
.slogan-premium-line {
    font-size: 2.2rem; /* REDUCIDO de 3.8rem a 2.2rem */
    font-weight: 700;
    letter-spacing: -0.8px;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 5px 10px;
    opacity: 0;
    transform: translateY(-15px);
    animation: sloganPremiumReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* Ajustar palabras cursivas al mismo tamaño */
.slogan-premium-word {
    display: inline-block;
    color: #1d1d1f;
    text-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    position: relative;
    font-size: 2.2rem; /* IGUAL que el contenedor */
}

.slogan-premium-word.accent-cursive,
.slogan-premium-word.accent-gradient {
    font-size: 2.2rem; /* IGUAL que las palabras normales */
}

@keyframes sloganPremiumReveal {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slogan-premium-word {
    display: inline-block;
    color: #1d1d1f;
    text-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.slogan-premium-word.accent-cursive {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 800;
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.8px;
    position: relative;
}

.slogan-premium-word.accent-gradient {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 900;
    background: linear-gradient(135deg, #0066cc 0%, #28a745 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.8px;
}

/* Hover effect ultra elegante (solo cuando el usuario pasa el mouse, no afecta animación inicial) */
.slogan-premium-container:hover .slogan-premium-word {
    animation: none; /* Mantiene el estado actual */
}

.slogan-premium-word.accent-cursive:hover,
.slogan-premium-word.accent-gradient:hover {
    transform: scale(1.02) translateY(-3px);
    text-shadow: 0 10px 25px rgba(0, 102, 204, 0.25);
    transition: all 0.3s ease;
}

.slogan-premium-underline {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.underline-premium-glow {
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent,
        #0066cc 15%,
        #28a745 50%,
        #0066cc 85%,
        transparent
    );
    border-radius: 4px;
    animation: underlinePremiumExpand 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.4);
}

@keyframes underlinePremiumExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 900px;
        opacity: 1;
    }
}

/* ==================== OLAS PREMIUM (AHORA DEBAJO DEL SLOGAN) ==================== */
.wave-premium-container {
    position: absolute;
    top: 120px; /* Justo debajo del slogan */
    left: 0;
    width: 100%;
    height: 180px;
    overflow: hidden;
    z-index: 5;
    pointer-events: none;
    opacity: 0.7;
}

.wave-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 250%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 102, 204, 0.06) 20%,
        rgba(40, 167, 69, 0.06) 45%,
        rgba(0, 102, 204, 0.04) 70%,
        transparent 100%
    );
    border-radius: 40% 50% 30% 70% / 60% 40% 60% 50%;
    animation: wavePremiumMove 25s linear infinite;
}

.wave-premium.wave-1 {
    animation-duration: 30s;
    opacity: 0.5;
    top: 20px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 102, 204, 0.04),
        rgba(40, 167, 69, 0.04),
        rgba(0, 102, 204, 0.03),
        transparent
    );
}

.wave-premium.wave-2 {
    animation-duration: 35s;
    animation-direction: reverse;
    opacity: 0.4;
    top: 40px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(40, 167, 69, 0.03),
        rgba(0, 102, 204, 0.03),
        rgba(40, 167, 69, 0.02),
        transparent
    );
}

.wave-premium.wave-3 {
    animation-duration: 40s;
    opacity: 0.3;
    top: 60px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 102, 204, 0.02),
        rgba(40, 167, 69, 0.02),
        rgba(0, 102, 204, 0.01),
        transparent
    );
}

@keyframes wavePremiumMove {
    0% {
        transform: translateX(0) rotate(0deg);
    }
    100% {
        transform: translateX(-60%) rotate(1deg);
    }
}

/* ==================== CONTENIDO PREMIUM ==================== */
.hero-content-premium {
    padding-right: 60px;
    position: relative;
    z-index: 15;
}

.hero-badge-premium {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpPremium 0.6s ease 0.5s forwards;
}

.badge-pulse {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 102, 204, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 204, 0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0066cc;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.08);
}

.hero-title-premium {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.8px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpPremium 0.7s ease 0.7s forwards;
}

.gradient-text-premium {
    background: linear-gradient(145deg, #0066cc 0%, #1d1d1f 70%, #28a745 130%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-subtitle-premium {
    font-size: 1.3rem;
    color: #424245;
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpPremium 0.8s ease 0.9s forwards;
}

@keyframes fadeUpPremium {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== BOTONES PREMIUM ==================== */
.hero-buttons-premium {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpPremium 0.9s ease 1.1s forwards;
}

.btn-premium-primary {
    background: linear-gradient(165deg, #0066cc 0%, #004d99 100%);
    border: none;
    padding: 1.1rem 2.8rem;
    font-weight: 600;
    border-radius: 14px;
    color: white;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.25);
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-premium-outline {
    border: 2px solid rgba(0, 102, 204, 0.6);
    color: #0066cc;
    padding: 1.1rem 2.8rem;
    font-weight: 600;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    overflow: hidden;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-premium-primary:hover,
.btn-premium-outline:hover {
    transform: translateY(-4px) scale(1.02);
}

.btn-premium-primary:hover {
    box-shadow: 0 18px 35px rgba(0, 102, 204, 0.35);
}

.btn-premium-outline:hover {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.2);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.btn-premium-primary:hover .btn-glow,
.btn-premium-outline:hover .btn-glow {
    left: 100%;
}

/* ==================== VIDEO PREMIUM ==================== */
.hero-video-premium-container {
    position: relative;
    z-index: 15;
}

.video-premium-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.03);
    transform: perspective(1200px) rotateY(-6deg) scale(0.98);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: #0a0a0c;
    opacity: 0;
    transform: perspective(1200px) rotateY(-6deg) scale(0.95) translateX(30px);
    animation: videoPremiumReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

@keyframes videoPremiumReveal {
    to {
        opacity: 1;
        transform: perspective(1200px) rotateY(-6deg) scale(0.98) translateX(0);
    }
}

.video-premium-wrapper:hover {
    transform: perspective(1200px) rotateY(0deg) scale(1);
    box-shadow: 0 45px 90px rgba(0, 102, 204, 0.2), 0 0 0 1px rgba(0, 102, 204, 0.1);
}

.hero-video-premium {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.7s ease;
}

.video-premium-wrapper:hover .hero-video-premium {
    transform: scale(1.05);
}

.video-premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(10, 10, 12, 0.75);
    backdrop-filter: blur(15px);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 25;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.video-premium-wrapper:hover .video-premium-badge {
    opacity: 1;
    transform: translateY(0);
}

.video-premium-badge i {
    color: #28a745;
}

.video-premium-reflection {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 1s ease;
}

.video-premium-wrapper:hover .video-premium-reflection {
    left: 150%;
}

.video-premium-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.15) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.video-premium-wrapper:hover .video-premium-glow {
    opacity: 1;
}

/* ==================== AMBIENT GLOW ==================== */
.hero-ambient-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: radial-gradient(ellipse at bottom, rgba(0, 102, 204, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
    animation: ambientPulse 8s infinite alternate;
}

@keyframes ambientPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* ==================== RESPONSIVE PREMIUM ==================== */
@media (max-width: 1200px) {
    .slogan-premium-line {
        font-size: 2rem;
        gap: 8px 12px;
    }
    
    .slogan-premium-word,
    .slogan-premium-word.accent-cursive,
    .slogan-premium-word.accent-gradient {
        font-size: 2rem;
    }
    
    @keyframes underlinePremiumExpand {
        100% { width: 600px; }
    }
    
    .hero-title-premium {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .hero-apple-style-premium {
        padding: 90px 0 30px !important;
        min-height: auto;
    }
    
    .slogan-premium-container {
        top: 70px !important;
        margin-bottom: 10px;
    }
    
    .slogan-premium-line {
        font-size: 1.8rem;
        flex-wrap: wrap;
    }
    
    .slogan-premium-word,
    .slogan-premium-word.accent-cursive,
    .slogan-premium-word.accent-gradient {
        font-size: 1.8rem;
    }
    
    .wave-premium-container {
        top: 180px !important;
        height: 100px;
    }
    
    @keyframes underlinePremiumExpand {
        100% { width: 500px; }
    }
    
    .hero-content-premium {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-subtitle-premium {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons-premium {
        justify-content: center;
    }
    
    .hero-title-premium {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-apple-style-premium {
        padding: 80px 0 20px !important;
    }
    
    .slogan-premium-container {
        top: 60px !important;
    }
    
    .slogan-premium-line {
        font-size: 1.5rem;
        gap: 5px 8px;
        letter-spacing: -0.3px;
    }
    
    .slogan-premium-word,
    .slogan-premium-word.accent-cursive,
    .slogan-premium-word.accent-gradient {
        font-size: 1.5rem;
    }
    
    .wave-premium-container {
        top: 160px !important;
        height: 80px;
    }
    
    @keyframes underlinePremiumExpand {
        100% { width: 400px; }
    }
    
    .hero-title-premium {
        font-size: 2rem;
    }
    
    .hero-subtitle-premium {
        font-size: 1.1rem;
    }
    
    .btn-premium-primary,
    .btn-premium-outline {
        padding: 0.8rem 1.8rem !important;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .hero-apple-style-premium {
        padding: 70px 0 15px !important;
    }
    
    .slogan-premium-container {
        top: 50px !important;
    }
    
    .slogan-premium-line {
        font-size: 1.2rem;
        gap: 4px 6px;
    }
    
    .slogan-premium-word,
    .slogan-premium-word.accent-cursive,
    .slogan-premium-word.accent-gradient {
        font-size: 1.2rem;
    }
    
    .wave-premium-container {
        top: 140px !important;
        height: 60px;
        opacity: 0.3;
    }
    
    @keyframes underlinePremiumExpand {
        100% { width: 280px; }
    }
    
    .hero-buttons-premium {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-premium-primary,
    .btn-premium-outline {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 0.7rem 1.5rem !important;
    }
    
    .hero-title-premium {
        font-size: 1.7rem;
    }
    
    .premium-floating-icon {
        font-size: 1.5rem;
    }
}

/* ==================== CORRECCIÓN PARA DISPOSITIVOS MUY PEQUEÑOS ==================== */
@media (max-width: 380px) {
    .hero-apple-style-premium {
        padding: 65px 0 10px !important;
    }
    
    .slogan-premium-container {
        top: 45px !important;
    }
    
    .slogan-premium-line {
        font-size: 1rem;
        gap: 3px 5px;
    }
    
    .slogan-premium-word,
    .slogan-premium-word.accent-cursive,
    .slogan-premium-word.accent-gradient {
        font-size: 1rem;
    }
    
    @keyframes underlinePremiumExpand {
        100% { width: 220px; }
    }
    
    .hero-title-premium {
        font-size: 1.5rem;
    }
}

/* ==================== CORRECCIONES DE ESPACIADO Y SUPERPOSICIÓN ==================== */

/* Navbar z-index */
.navbar {
    z-index: 1000 !important;
}

/* Dar más espacio al hero para que el slogan no choque con el navbar */
.hero-apple-style-premium {
    padding: 100px 0 40px !important; /* REDUCIDO el padding inferior de 100px a 40px */
    min-height: auto !important; /* Eliminamos min-height fijo */
    margin-top: 0;
}

/* Ajustar posición del slogan para que quede debajo del navbar */
.slogan-premium-container {
    position: absolute;
    top: 80px !important; /* Aumentado de 30px a 80px para que quede debajo del navbar */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 50 !important;
    padding: 0 30px;
    pointer-events: none;
}

/* Ajustar olas para que estén más arriba (menos espacio) */
.wave-premium-container {
    position: absolute;
    top: 180px !important; /* Ajustado para que quede debajo del slogan */
    left: 0;
    width: 100%;
    height: 120px; /* Reducido de 180px a 120px */
    overflow: hidden;
    z-index: 5;
    pointer-events: none;
    opacity: 0.5;
}

/* Reducir altura de las olas */
.wave-premium {
    height: 100%;
}

.wave-premium.wave-1 {
    top: 0px;
}

.wave-premium.wave-2 {
    top: 15px;
}

.wave-premium.wave-3 {
    top: 30px;
}

/* Ajustar el contenedor principal para que ocupe menos espacio */
.hero-apple-style-premium .container {
    position: relative;
    z-index: 15;
    margin-top: 40px; /* Espacio después del slogan */
    margin-bottom: 20px;
}

/* Reducir espacio del contenido */
.hero-content-premium {
    padding-right: 40px;
    margin-top: 20px;
}

/* Reducir margen inferior del título */
.hero-title-premium {
    font-size: 3rem;
    margin-bottom: 1rem !important;
}

/* Reducir margen inferior del subtítulo */
.hero-subtitle-premium {
    margin-bottom: 1.8rem !important;
}

/* Botones más compactos */
.hero-buttons-premium {
    margin-top: 1.5rem !important;
}

.btn-premium-primary,
.btn-premium-outline {
    padding: 0.9rem 2.2rem !important; /* Reducido de 1.1rem 2.8rem */
    font-size: 1rem;
}

/* Video más compacto */
.hero-video-premium-container {
    margin-top: 20px;
}

/* Eliminar el ambient glow que ocupa espacio innecesario */
.hero-ambient-glow {
    height: 150px; /* Reducido de 300px */
    bottom: 0;
}

/* Responsive corrections */
@media (max-width: 992px) {
    .hero-apple-style-premium {
        padding: 90px 0 30px !important;
    }
    
    .slogan-premium-container {
        top: 70px !important;
        position: relative;
        margin-bottom: 10px;
    }
    
    .wave-premium-container {
        top: 200px !important;
        height: 100px;
    }
    
    .hero-apple-style-premium .container {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-apple-style-premium {
        padding: 80px 0 20px !important;
    }
    
    .slogan-premium-container {
        top: 60px !important;
    }
    
    .slogan-premium-line {
        font-size: 1.6rem;
    }
    
    .wave-premium-container {
        top: 160px !important;
        height: 80px;
    }
    
    .hero-title-premium {
        font-size: 2rem;
    }
    
    .btn-premium-primary,
    .btn-premium-outline {
        padding: 0.8rem 1.8rem !important;
    }
}

@media (max-width: 576px) {
    .hero-apple-style-premium {
        padding: 70px 0 15px !important;
    }
    
    .slogan-premium-container {
        top: 50px !important;
    }
    
    .slogan-premium-line {
        font-size: 1.3rem;
    }
    
    .wave-premium-container {
        top: 140px !important;
        height: 60px;
        opacity: 0.3;
    }
    
    @keyframes underlinePremiumExpand {
        100% { width: 280px; }
    }
}

/* ==================== CORRECCIÓN PARA DISPOSITIVOS MUY PEQUEÑOS ==================== */
@media (max-width: 380px) {
    .slogan-premium-line {
        font-size: 1.1rem;
        gap: 3px 5px;
    }
    
    .slogan-premium-word.accent-cursive,
    .slogan-premium-word.accent-gradient {
        font-size: 1.1rem;
    }
    
    .hero-title-premium {
        font-size: 1.7rem;
    }
}

/* ==================== OTRAS SOLUCIONES - CARDS SECUNDARIAS ==================== */
.otras-soluciones-section {
    padding: 70px 0 80px;
    background: #ffffff;
}

.apple-secondary-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 50%, #f5fbf5 100%);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    border: 1px solid rgba(0, 102, 204, 0.08);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.apple-secondary-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, #0066cc, #28a745);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.apple-secondary-card:hover::before { transform: scaleX(1); }

.apple-secondary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 102, 204, 0.14);
    border-color: rgba(0, 102, 204, 0.18);
}

.apple-secondary-content { position: relative; z-index: 2; }

.apple-secondary-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc, #28a745);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
}

.apple-secondary-card:hover .apple-secondary-icon {
    transform: scale(1.1) rotate(5deg);
}

.apple-secondary-card h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.apple-secondary-description {
    font-size: 1.05rem;
    color: #424245;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.apple-secondary-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2rem;
}

.feature-chip {
    background: rgba(0, 102, 204, 0.07);
    color: #0066cc;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease;
}

.feature-chip:hover { background: rgba(0, 102, 204, 0.14); }
.feature-chip i { font-size: 0.8rem; color: #28a745; }

.btn-apple-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-apple-secondary i { transition: transform 0.3s ease; }
.btn-apple-secondary:hover { color: #004d99; }
.btn-apple-secondary:hover i { transform: translateX(5px); }

.apple-secondary-backdrop {
    position: absolute;
    bottom: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ==================== VIDEO SHOWCASE SECTION ==================== */
.video-showcase-section {
    background: #000;
    overflow: hidden;
}

.video-showcase-fullwidth {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 480px;
    overflow: hidden;
}

.video-showcase-fullwidth video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.video-showcase-overlay-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 2;
}

.video-showcase-overlay-content h2 {
    font-size: 4.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
    text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.video-showcase-overlay-content h2 em {
    font-style: italic;
    background: linear-gradient(135deg, #60aaff 0%, #4de88a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.video-showcase-overlay-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    max-width: 580px;
    line-height: 1.6;
}

.btn-showcase-cta {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255,255,255,0.35);
    color: white;
    padding: 15px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.35s ease;
    letter-spacing: 0.3px;
}

.btn-showcase-cta:hover {
    background: rgba(255,255,255,0.22);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
    border-color: rgba(255,255,255,0.5);
}

/* Video grid */
.video-grid-section {
    padding: 60px 0 70px;
    background: #0a0a0c;
}

.video-grid-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.video-grid-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #1a1a1e;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-grid-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
}

.video-grid-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.video-grid-item:hover video { transform: scale(1.06); }

.video-grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-grid-item:hover .video-grid-overlay {
    background: rgba(0, 102, 204, 0.28);
}

.video-grid-play {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.92);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #0066cc;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.video-grid-play:hover {
    background: white;
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.video-grid-item.is-playing .video-grid-overlay { opacity: 0; }
.video-grid-item.is-playing:hover .video-grid-overlay { opacity: 1; }

/* ==================== CTA CON VIDEO DE FONDO ==================== */
.cta-video-bg {
    position: relative;
    overflow: hidden;
}

.cta-bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cta-dark-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.84);
    z-index: 1;
}

.cta-video-bg .container {
    position: relative;
    z-index: 2;
}

/* Responsive nuevas secciones */
@media (max-width: 992px) {
    .video-showcase-overlay-content h2 { font-size: 3rem; }
    .video-showcase-fullwidth { height: 60vh; }
}

@media (max-width: 768px) {
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .video-showcase-overlay-content h2 { font-size: 2.2rem; }
    .video-showcase-fullwidth { height: 50vh; min-height: 350px; }
    .apple-secondary-card { padding: 28px; }
}

@media (max-width: 576px) {
    .video-grid { grid-template-columns: 1fr; }
    .video-showcase-overlay-content h2 { font-size: 1.8rem; letter-spacing: -0.8px; }
    .video-showcase-fullwidth { height: 42vh; min-height: 280px; }
    .video-showcase-overlay-content p { font-size: 1rem; }
    .otras-soluciones-section { padding: 50px 0 60px; }
}

