/* Estilos del Header y Navegación */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    padding: 0.7rem 0;
    background: rgba(10, 10, 26, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo .logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.logo .logo-tv {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 60%;
}

.nav-cta a {
    background: var(--gradient);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.4);
    color: white;
}

.nav-cta a::after {
    display: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Estilos responsivos para el header */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 26, 0.95);
        backdrop-filter: blur(10px);
        transition: all 0.4s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Estilos responsive para la sección hero */
    .hero-container {
        flex-direction: column;
    }
    
    .hero-left, .hero-right {
        width: 100%;
        padding: 1rem;
    }
    
    .hero-right {
        align-items: center;
        text-align: center;
    }
    
    .hero-animation {
        height: 50%;
    }
    
    .social-icons-hero {
        position: relative;
        bottom: auto;
        left: auto;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .logo-btv {
        font-size: 2.5rem;
    }
}

/* Estilos generales */
:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --accent-color: #ff4d4d;
    --text-color: #ffffff;
    --dark-bg: #0a0a1a;
    --card-bg: rgba(255, 255, 255, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    background-image: url('../img/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Estilos para la sección hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #0a0a12 0%, #1a1a2e 100%);
    color: white;
    text-align: center;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-left,
.hero-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-left {
    padding: 1rem;
    margin-bottom: 20px;
}

.hero-right {
    padding: 1rem;
    margin-top: 10px;
    text-align: left;
    padding: 2rem;
}

.hero-animation {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-animation:hover {
    transform: translateY(-5px);
}

.hero-gif {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    animation: fadeIn 1s ease-out;
}

.social-icons-hero {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 25px 0 0;
    gap: 15px;
    z-index: 10;
    padding: 0 15px;
    position: relative;
    bottom: auto;
    left: auto;
}

/* Estilos para los iconos sociales con imágenes */
.social-icons-hero .social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 1.5s ease-out;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons-hero .social-icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icons-hero .social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-media-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    animation: pulse 2s infinite alternate;
    transition: all 0.3s ease;
}

.social-icon:hover .social-media-img .services-img {
    filter: drop-shadow(0 6px 10px rgba(106, 17, 203, 0.5));
}

.services-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    animation: pulse 2s infinite alternate;
    transition: all 0.3s ease;
}

/* Se eliminaron los estilos de animaciones CSS que ya no se utilizan */

.hero-text-container {
    max-width: 90%;
    animation: fadeIn 1s ease-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(106, 17, 203, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(37, 117, 252, 0.3) 0%, transparent 50%);
    z-index: -1;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(106, 17, 203, 0.3);
    line-height: 1.2;
}

.animated-text {
    animation: fadeInRight 1s ease-out;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    max-width: 500px;
    animation: fadeInRight 1.2s ease-out;
}

.logo-container {
    margin: 2rem 0;
    position: relative;
    animation: pulse 2s infinite;
}

.logo-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.logo-circle::before {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    background: conic-gradient(
        transparent,
        transparent,
        transparent,
        var(--primary-color)
    );
    animation: rotate 4s linear infinite;
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    opacity: 0.8;
}

.scroll-down:hover {
    color: white;
    transform: translate(-50%, 5px);
    opacity: 1;
    text-decoration: none;
}

.scroll-down i {
    font-size: 18px;
    margin-top: 8px;
    animation: bounce 2s infinite;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.scroll-down:hover i {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Media Queries para diseño responsive */
@media (min-width: 576px) {
    .hero {
        padding: 90px 0 60px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-animation {
        max-width: 450px;
    }
    
    .social-icons-hero {
        gap: 20px;
    }
    
    .social-icons-hero .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .scroll-down {
        font-size: 13px;
    }
    
    .scroll-down i {
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        flex-direction: row;
        padding: 0 30px;
    }
    
    .hero-left {
        width: 50%;
        padding-right: 20px;
        margin-bottom: 0;
        align-items: flex-start;
    }
    
    .hero-right {
        width: 50%;
        padding-left: 20px;
        margin-top: 0;
        align-items: flex-start;
    }
    
    .hero-animation {
        margin: 0;
    }
    
    .social-icons-hero {
        justify-content: flex-start;
        padding-left: 0;
    }
    
    .hero-text-container {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        flex-direction: row;
        padding: 0 30px;
    }
    
    .hero-left {
        width: 50%;
        padding-right: 40px;
        margin-bottom: 0;
        align-items: flex-start;
    }
    
    .hero-right {
        width: 50%;
        padding-left: 40px;
        margin-top: 0;
        text-align: left;
    }
    
    .hero-animation {
        max-width: 500px;
        margin: 0;
    }
    
    .social-icons-hero {
        justify-content: flex-start;
        padding-left: 0;
    }
    
    .hero-text-container {
        text-align: left;
    }
    
    .scroll-down {
        font-size: 14px;
        bottom: 30px;
    }
}

/* Estilos de la sección de Servicios */
.services {
    padding: 6rem 2rem;
    background: rgba(10, 10, 26, 0.85);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/grid-pattern.png') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.services h4 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 4rem;
}

/* Estilos de la cuadrícula de servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 20px;
    justify-content: center;
    
    /* Hacer la cuadrícula más responsiva */
    @media (max-width: 1200px) {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    @media (max-width: 768px) {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    @media (max-width: 480px) {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
}

.carousel-control:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(106, 17, 203, 0.5);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--gradient);
    transform: scale(1.2);
}

/* Estilos de las tarjetas de servicio */
.service-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.service-logo {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.service-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.6rem;
    color: white;
    margin: 0 0 20px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.pricing {
    margin-bottom: 20px;
}

.plan-selector {
    width: 100%;
    padding: 14px 15px;
    margin: 0 0 25px 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
    padding-right: 40px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.plan-selector:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.plan-selector:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.3);
}

.plan-selector option {
    background-color: #333;
    color: white;
}

.add-to-cart-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.add-to-cart-btn:hover::before {
    width: 100%;
}

.add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(106, 17, 203, 0.4);
}

.add-to-cart-btn:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(106, 17, 203, 0.3);
}

/* Estilos para el ícono del carrito */
.add-to-cart-btn i {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.add-to-cart-btn:hover i {
    transform: scale(1.1) rotate(-10deg);
}

/* Estilos del carrito de compras */
.cart-container {
    position: fixed;
    top: 50px;
    right: 20px;
    z-index: 10000; /* Aumentado para asegurar que esté por encima de otros elementos */
    display: block !important; /* Forzar visualización */
    opacity: 1 !important; /* Asegurar que sea visible */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.cart-icon {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--gradient);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cart-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(106, 17, 203, 0.5);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0a0a12;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: none; /* Se activará con JavaScript */
    z-index: 1001;
    transition: all 0.3s ease;
}

/* Estilos para el botón de agregar al carrito */
.add-to-cart-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn.added-to-cart {
    background-color: #4CAF50 !important;
    transform: scale(0.95);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.5);
}

.add-to-cart-btn.added-to-cart::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.add-to-cart-btn.added-to-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 40px;
    height: 40px;
    background: rgba(76, 175, 80, 0.8);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 0.5s ease-out;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Asegurar que el contador sea visible en todos los casos */
.cart-icon {
    z-index: 1000 !important;
}

.cart-count {
    z-index: 1001 !important;
}

.cart-dropdown {
    position: fixed; /* Cambiado de absolute a fixed */
    top: 80px;
    right: 20px;
    width: 320px;
    background: rgba(10, 10, 26, 0.98);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 70vh;
    overflow-y: auto;
    z-index: 10000; /* Aumentado para asegurar que esté por encima de otros elementos */
    display: block !important; /* Forzar visualización */
}

.cart-dropdown.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: fadeIn 0.3s ease-in-out;
}

.cart-dropdown h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-align: center;
}

.cart-items {
    margin-bottom: 15px;
    max-height: 200px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.cart-item-info {
    flex: 1;
    text-align: left;
}

.cart-item-title {
    font-weight: 500;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ff3366;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.cart-item-remove:hover {
    transform: scale(1.2);
}

.empty-cart {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-style: italic;
    padding: 20px 0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

.checkout-btn, .clear-btn {
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
}

.clear-btn {
    background: linear-gradient(45deg, #ff3366, #ff5e62);
}

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

/* Estilos para notificaciones */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification.success {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.notification.error {
    background: linear-gradient(45deg, #dc3545, #ff5e62);
}

.service-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background: var(--gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.service-logo i {
    font-size: 2.5rem;
}

.netflix { background: #000000; }
.vix { background: #000000; }
.disney { background: #ffffff; }
.hbo { 
    background: #ffffff; 
    padding: 1px;
}   
.canva { background: #000000; }
.max { background: #00a8e1; }
.paramount { background: #0066ff; }
.crunchyroll { 
    background: #ffffff; 
    padding: 1px;
}
.prime {
    background: #00a8e1;
    padding: 1px;
}

.universal {
    background: #fff;
}

.plex {
    background: #fff;
}

.iptv {
    background: #5e17eb;
}

.spotify {
    background: #000;
}

.youtube {
    background: #fff;
}
.win {
    background: #fff;
    padding: 1px;
}

.metegol {
    background: #fff;
}
.directv {
    background: #001327;
}
.pricing {
    margin-top: 1.5rem;
}

.pricing p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.pricing p:nth-child(1) { color: #ff4d4d; }
.pricing p:nth-child(2) { color: #4CAF50; }
.pricing p:nth-child(3) { color: #ff9800; }

.whatsapp-button {
    text-align: center;
    margin-top: 4rem;
}

.whatsapp-float {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(37, 211, 102, 0.4);
}

/* Estilos de la sección de Contacto */
.contact {
    padding: 6rem 2rem;
    background: rgba(22, 33, 62, 0.85);
    position: relative;
    overflow: hidden;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.8rem;
    margin-right: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gradient);
    color: white;
}

.contact-item span {
    flex: 1;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(106, 17, 203, 0.4);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 20px rgba(106, 17, 203, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(106, 17, 203, 0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Estilos responsivos */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .logo-circle {
        width: 220px;
        height: 220px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .logo-btv {
        font-size: 3rem;
    }
}

/* Estilos para la sección de contacto */
.contact {
    padding: 5rem 2rem;
    background: #0a0a12;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.contact-subtitle {
    text-align: center;
    color: #b3b3b3;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-methods {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: #141420;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.contact-card h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-card p {
    color: #b3b3b3;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.4);
}

.contact-hours {
    flex: 1;
    background: #141420;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-hours h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.contact-hours h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.contact-hours ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.contact-hours li {
    color: #b3b3b3;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.contact-hours li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.payment-methods h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 1.8rem;
}

.payment-icons i {
    color: #b3b3b3;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-icons i:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Estilos para el footer */
footer {
    background: #0a0a12;
    color: #b3b3b3;
    padding: 1rem 2rem 2rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-about p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-links h3,
.footer-contact h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links i {
    font-size: 0.8rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #b3b3b3;
}

.contact-item i {
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #141420;
    color: #b3b3b3;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    /* border-top: 1px solid rgba(255, 255, 255, 0.05); */
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Media Queries */
/* Hero Section Responsive */
@media (max-width: 576px) {
    .hero {
        padding: 70px 0 50px;
        text-align: center;
    }
    
    .hero-container {
        padding: 0 15px;
        display: flex;
        flex-direction: column;
    }
    
    .hero-left {
        order: 2; /* Mover el contenedor izquierdo (con la animación y redes) al final */
        padding: 1rem 0.5rem;
        display: flex;
        flex-direction: column;
    }
    
    .hero-right {
        order: 1; /* Mover el contenedor derecho (con el logo BongoTV) al principio */
        padding: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-animation {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .social-icons-hero {
        gap: 15px;
        margin: 0 auto;
        justify-content: center;
        order: 2; /* Asegurar que los iconos sociales vayan después de la animación */
    }
    
    .social-icons-hero .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .hero-text-container {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-text-container img {
        max-width: 100%;
        height: auto;
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 577px) and (max-width: 991px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .hero-left,
    .hero-right {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-right {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .logo-circle {
        width: 200px;
        height: 200px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .logo-btv {
        font-size: 2.5rem;
    }
    
    .services h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-logo {
        width: 70px;
        height: 70px;
    }
    
    .service-logo i {
        font-size: 2rem;
    }
    
    .pricing p {
        font-size: 1rem;
    }
    
    .contact-item {
        font-size: 1rem;
    }
    
    .contact-item i {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .logo-circle {
        width: 180px;
        height: 180px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .slogan {
        font-size: 0.8rem;
    }
    
    .logo-btv {
        font-size: 2.2rem;
    }
    
    .services h2,
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
    }
    
    .contact-item i {
        margin: 0 0 1rem 0;
    }
    
    .service-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 250px;
        height: 400px;
    }
    
    .carousel-container {
        padding: 0 40px;
    }
}

/* Media queries específicos para el carrusel */
@media (min-width: 1200px) {
    /* 4 tarjetas en pantallas grandes */
    .service-card {
        flex: 0 0 calc(25% - 20px);
        min-width: 250px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    /* 3 tarjetas en pantallas medianas-grandes */
    .service-card {
        flex: 0 0 calc(33.333% - 20px);
        min-width: 280px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    /* 2 tarjetas en pantallas medianas */
    .service-card {
        flex: 0 0 calc(50% - 20px);
        min-width: 300px;
    }
}
