* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #25D366;
    --secondary-color: #FF6B35;
    --dark-overlay: rgba(0, 0, 0, 0.7);
    --light-text: #ffffff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

html {
    overflow-y: auto;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

/* Carrusel de fondo */
.background-carousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

/* Overlay oscuro */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: -1;
}

/* Contenedor principal */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Badge 24/7 */
.badge-247 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: slideDown 0.8s ease-out;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Título principal */
.main-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 100%;
}

.title-line {
    display: block;
    margin-bottom: 5px;
}

.highlight {
    color: var(--primary-color);
    display: block;
}

/* Subtítulo */
.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Botón de WhatsApp */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--primary-color);
    color: white;
    padding: 22px 45px;
    border-radius: 60px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.whatsapp-btn:hover::before {
    width: 300px;
    height: 300px;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1;
}

/* Información de contacto */
.contact-info {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.info-label {
    font-size: 0.85rem;
    opacity: 0.7;
    text-align: left;
}

.info-value {
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
}

/* Servicios */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    justify-content: center;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.checkmark {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Badges de confianza */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    color: white;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(37, 211, 102, 0.25);
    transform: translateY(-2px);
}

.trust-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.trust-text {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Medios de pago */
.payment-section {
    margin-top: 35px;
    animation: fadeInUp 0.8s ease-out 1.2s both;
    max-width: 650px;
    width: 100%;
}

.payment-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
    cursor: default;
}

.payment-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.payment-item svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.payment-item span {
    font-size: 0.85rem;
    font-weight: 500;
} 

/* Logos de medios de pago */
.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    height: 50px;
    min-width: 120px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.payment-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.redcompra-logo {
    background: linear-gradient(135deg, #E31E24 0%, #B71C1C 100%);
    color: white;
}

.transbank-logo {
    background: linear-gradient(135deg, #005EB8 0%, #003D82 100%);
    color: white;
}

.visa-logo {
    background: linear-gradient(135deg, #1A1F71 0%, #0D1349 100%);
    color: white;
}

.mastercard-logo {
    background: linear-gradient(135deg, #EB001B 0%, #C50016 100%);
    color: white;
}


/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .badge-247 {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .main-title {
        margin-bottom: 15px;
    }
    
    .subtitle {
        margin-bottom: 30px;
        font-size: 1rem;
    }
    
    .whatsapp-btn {
        padding: 20px 35px;
        font-size: 1.05rem;
        gap: 12px;
    }
    
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
    
    .contact-info {
        gap: 25px;
        margin-top: 35px;
        flex-direction: column;
    }
    
    .info-item {
        gap: 10px;
    }
    
    .trust-badges {
        margin-top: 25px;
    }
    
    .trust-badge {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .trust-icon {
        width: 20px;
        height: 20px;
    }
    
    .payment-section {
        margin-top: 25px;
    }
    
    .payment-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .payment-item {
        padding: 12px 8px;
    }
    
    .payment-item svg {
        width: 28px;
        height: 28px;
    }
    
    .payment-item span {
        font-size: 0.8rem;
    }
    
    .payment-logos {
        gap: 12px;
        padding: 15px;
    }
    
    .payment-logo-card {
        padding: 10px 16px;
        height: 45px;
        min-width: 100px;
        font-size: 0.85rem;
    }
    
    .services {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }
    
    .service-item {
        font-size: 0.9rem;
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    .services {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-logos {
        gap: 10px;
        padding: 12px;
    }
    
    .payment-logo-card {
        padding: 8px 12px;
        height: 40px;
        min-width: 85px;
        font-size: 0.75rem;
    }
}

/* Texto SEO - Legible para buscadores pero visualmente oculto */
.seo-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.seo-text h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.seo-text p {
    font-size: 1rem;
    line-height: 1.6;
}


/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 50px 20px 20px;
    margin-top: 80px;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-logo h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-contact p,
.footer-payment p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

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

.footer-services li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-services li::before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 15px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}