.elementor-5579 .elementor-element.elementor-element-2eaf991 > .elementor-container{max-width:1600px;}.elementor-5579 .elementor-element.elementor-element-2eaf991{margin-top:5vw;margin-bottom:0vw;}.elementor-5579 .elementor-element.elementor-element-4890eb1 > .elementor-widget-container{margin:0vw 0vw 4vw 0vw;}.elementor-5579 .elementor-element.elementor-element-6d0383a > .elementor-container{max-width:3000px;}.elementor-5579 .elementor-element.elementor-element-7c8147d > .elementor-widget-container{margin:2vw 0vw 0vw 0vw;}.elementor-5579 .elementor-element.elementor-element-b807b5f{width:var( --container-widget-width, 1600px );max-width:1600px;--container-widget-width:1600px;--container-widget-flex-grow:0;}.elementor-widget-theme-site-logo .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-5579 .elementor-element.elementor-element-2d60b9b > .elementor-widget-container{margin:-8vw 0vw 0vw 0vw;}.elementor-5579 .elementor-element.elementor-element-2d60b9b img{width:32%;}@media(min-width:768px){.elementor-5579 .elementor-element.elementor-element-765146f{width:100%;}}@media(max-width:767px){.elementor-5579 .elementor-element.elementor-element-2eaf991{margin-top:-1rem;margin-bottom:0rem;}.elementor-5579 .elementor-element.elementor-element-7c8147d > .elementor-widget-container{margin:2rem 0rem 0rem 0rem;}.elementor-5579 .elementor-element.elementor-element-2d60b9b > .elementor-widget-container{margin:-8rem 0rem 0rem 0rem;}.elementor-5579 .elementor-element.elementor-element-2d60b9b img{width:27%;}}/* Start custom CSS for html, class: .elementor-element-4890eb1 *//* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.25rem;
    padding: 3rem 0 5rem;
}

.hero-text {
    text-align: center;
    flex: 1;
}

.badge-christmas {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--orange-primary);
    background-color: rgba(255, 121, 1, 0.2);
    border: 1px solid rgba(255, 121, 1, 0.3);
    border-radius: var(--radius-full);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--orange-primary);
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-products {
    flex: 1;
}

.products-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 420px;
    margin: 0 auto;
}

.product-preview {
    padding: 1rem;
    text-align: center;
    border-radius: var(--radius-lg);
    transition: transform 0.3s;
}

.product-preview:hover {
    transform: scale(1.05);
}

.product-preview-1 {
    background: var(--white);
}

.product-preview-2 {
    background: var(--white);
}

.product-preview-3 {
    background: var(--white);
}

.product-preview-4 {
    background: var(--white);
}

.preview-image {
    aspect-ratio: 1;
    padding: 0.5rem;
    margin-bottom: 0.75rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.preview-name {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green-primary);
}

.preview-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--orange-primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: floating 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 2rem;
    height: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-dot {
    width: 6px;
    height: 12px;
    background-color: var(--orange-primary);
    border-radius: var(--radius-full);
    animation: pulse-glow 2s ease-in-out infinite;
}

@media (max-width: 640px) {
    .scroll-indicator {
        display: none;
    }
    
    .hero-content {
        padding: 2.5rem 0 4rem;
        gap: 2rem;
    }
    .hero-text .btn-call {
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        text-align: left;
        padding: 5rem 0;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-subtitle {
        margin-left: 0;
    }
    
    .hero-meta {
        justify-content: flex-start;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3a857dd *//* ===== PRODUCTS SECTION ===== */
.products {
    padding: 4rem 0 6rem;
    width: 100%;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--cream);
    z-index: -1;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.products-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.products-grid {
    display: grid;
    gap: 1.5rem;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image-wrapper {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.badge-bestseller {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    background-color: var(--green-primary);
    border-radius: var(--radius-full);
}

.product-image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--green-primary);
    margin-bottom: 0.5rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
}

.product-price {
    margin-bottom: 1rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
}

.price-label {
    font-size: 0.875rem;
    color: rgba(7, 78, 61, 0.6);
}

.price-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--orange-primary);
    margin-left: 0.5rem;
}

.product-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    min-height: 6rem;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(7, 78, 61, 0.8);
    margin-bottom: 0.5rem;
}

.check-icon {
    color: var(--orange-primary);
    font-weight: 700;
}

.product-card .btn-call {
    width: 100%;
    margin-top: auto;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
}

.product-card .btn-call:hover {
    color: var(--white) !important;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .products {
        padding: 6rem 0;
    }
    
    .products-container {
        padding: 0 2rem;
    }
}

@media (max-width: 640px) {
    .products {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .products-container {
        padding: 1.25rem 0.75rem;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.25rem;
    }
    .product-image-wrapper {
        padding: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .product-image {
        max-height: 180px;
    }
    .product-image img {
        max-height: 140px;
        width: auto;
        height: auto;
    }
    .product-content {
        padding: 1rem;
    }
    .product-card .btn-call {
        min-height: 2.8rem;
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7c8147d *//* ===== BENEFITS SECTION ===== */
.benefits {
    position: relative;
    padding: 4rem 0 6rem;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-items: center;
}

.benefit-card {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
    text-align: center;
    max-width: 100%;
    width: 100%;
}

.benefit-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background-color: rgba(255, 121, 1, 0.2);
    border-radius: var(--radius-md);
    color: var(--orange-primary);
    transition: transform 0.3s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-align: center;
}

.benefit-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: stretch;
    }
    
    .benefit-card {
        text-align: left;
    }
    
    .benefit-icon {
        margin: 0 0 1rem;
    }
    
    .benefit-title {
        text-align: left;
    }
    
    .benefit-description {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .benefits {
        padding: 6rem 0;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b807b5f *//* ===== FINAL CTA SECTION ===== */
.final-cta {
    position: relative;
    padding: 5rem 0 8rem;
    overflow: hidden;
    background: transparent;
    width: 100%;
}

.final-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}

.christmas-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
}

.final-cta-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
}

.final-cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-footer {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .final-cta {
        padding: 7rem 0 10rem;
    }
    
    .final-cta-title {
        font-size: 2.5rem;
    }
}/* End custom CSS */
/* Start custom CSS *//* ===== FONDO Y DECORACIONES NAVIDEÑAS - solo page-id-5579 ===== */
.page-id-5579 {
    background-color: #074e3d !important;

    /* ===== PATRÓN DE FONDO NAVIDEÑO ===== */
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 121, 1, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 90% 80%, rgba(255, 121, 1, 0.15) 3px, transparent 3px),
        radial-gradient(circle at 30% 70%, rgba(255, 121, 1, 0.10) 4px, transparent 4px),
        radial-gradient(circle at 70% 30%, rgba(255, 121, 1, 0.10) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(255, 121, 1, 0.08) 3px, transparent 3px);
    background-size: 100px 100px;
    position: relative;
    overflow: hidden;
}

/* ===== CONTENEDOR DE DECORACIONES ===== */
.page-id-5579 .christmas-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

/* ===== CÍRCULOS DIFUMINADOS ===== */
.page-id-5579 .decoration-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.page-id-5579 .decoration-circle-1 {
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background-color: rgba(255, 121, 1, 0.1);
}

.page-id-5579 .decoration-circle-2 {
    bottom: -160px;
    left: -80px;
    width: 384px;
    height: 384px;
    background-color: rgba(255, 121, 1, 0.05);
}

/* ===== BOLAS FLOTANTES ===== */
.page-id-5579 .ornament {
    position: absolute;
    background-color: rgba(255, 121, 1, 0.30);
    border-radius: 50%;
    animation: floating 3s ease-in-out infinite;
}

.page-id-5579 .ornament-1 {
    top: 80px;
    left: 10%;
    width: 16px;
    height: 16px;
}

.page-id-5579 .ornament-2 {
    top: 160px;
    right: 15%;
    width: 24px;
    height: 24px;
    animation-delay: .5s;
}

.page-id-5579 .ornament-3 {
    bottom: 160px;
    left: 20%;
    width: 20px;
    height: 20px;
    animation-delay: 1s;
}

/* ===== ESTRELLAS DECORATIVAS ===== */
.page-id-5579 .star {
    position: absolute;
    font-size: 20px;
    opacity: 0.9;
}

.page-id-5579 .star-1 {
    top: 96px;
    right: 25%;
}

.page-id-5579 .star-2 {
    bottom: 128px;
    left: 15%;
}

/* ===== ANIMACIONES ===== */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50%     { transform: translateY(-10px); }
}

/* ========================================
   DIGITAL WAP BUSINESS - CSS GLOBAL
   Estilos compartidos para todas las secciones
   ======================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    background-color: #074e3d;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== VARIABLES CSS ===== */
:root {
    /* Colores principales */
    --green-primary: #074e3d;
    --green-dark: #053929;
    --green-light: #0a6b53;
    --orange-primary: #ff7901;
    --orange-light: #ff9933;
    --orange-glow: rgba(255, 121, 1, 0.4);
    --white: #ffffff;
    --cream: #f9f7f4;
    --gray-light: #f5f5f5;
    --gray-medium: #666666;
    --gray-dark: #333333;
    
    /* Sombras */
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-button: 0 4px 16px rgba(255, 121, 1, 0.4);
    --shadow-glow: 0 0 40px rgba(255, 121, 1, 0.3);
    
    /* Bordes */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Tipografía */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-narrow {
    max-width: 768px;
}

/* ===== SECCIONES ===== */
.section-green {
    background-color: var(--green-primary);
    color: var(--white);
}

.section-cream {
    background-color: var(--cream);
    color: var(--gray-dark);
}

/* ===== PATRÓN NAVIDEÑO DE FONDO ===== */
.christmas-dots {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 121, 1, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 90% 80%, rgba(255, 121, 1, 0.15) 3px, transparent 3px),
        radial-gradient(circle at 30% 70%, rgba(255, 121, 1, 0.1) 4px, transparent 4px),
        radial-gradient(circle at 70% 30%, rgba(255, 121, 1, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(255, 121, 1, 0.08) 3px, transparent 3px);
    background-size: 100px 100px;
}

/* ===== DECORACIONES NAVIDEÑAS ===== */
.christmas-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.decoration-circle-1 {
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background-color: rgba(255, 121, 1, 0.1);
}

.decoration-circle-2 {
    bottom: -160px;
    left: -80px;
    width: 384px;
    height: 384px;
    background-color: rgba(255, 121, 1, 0.05);
}

.ornament {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 121, 1, 0.3);
    animation: floating 3s ease-in-out infinite;
}

.ornament-1 {
    top: 80px;
    left: 10%;
    width: 16px;
    height: 16px;
}

.ornament-2 {
    top: 160px;
    right: 15%;
    width: 24px;
    height: 24px;
    animation-delay: 0.5s;
}

.ornament-3 {
    bottom: 160px;
    left: 20%;
    width: 20px;
    height: 20px;
    animation-delay: 1s;
}

.star {
    position: absolute;
    color: rgba(255, 121, 1, 0.4);
    font-size: 20px;
}

.star-1 {
    top: 96px;
    right: 25%;
}

.star-2 {
    bottom: 128px;
    left: 15%;
}

/* ===== ANIMACIONES ===== */
@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 121, 1, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 121, 1, 0.6);
    }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* ===== BOTONES ===== */
.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    background-color: var(--orange-primary);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-button);
}

.btn-call:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
    color: var(--white) !important;
}

@media (max-width: 640px) {
    .btn-call {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    .btn-call-small {
        padding: 0.4rem 0.85rem;
        font-size: 0.82rem;
    }
    .btn-call-large {
        padding: 0.9rem 1.6rem;
        font-size: 1rem;
    }
}

.btn-call-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-call-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn-call-sticky {
    width: 100%;
    padding: 1rem;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--orange-primary);
    background-color: rgba(255, 121, 1, 0.1);
    border-radius: var(--radius-full);
}

.section-badge-inverted {
    color: var(--green-primary);
    background-color: var(--orange-primary);
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 1rem;
}

.section-title-dark {
    color: var(--green-primary);
}

.section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin: 0 auto;
}

.section-subtitle-dark {
    color: rgba(7, 78, 61, 0.7);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-helper {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}/* End custom CSS */