/* Variables y configuración base */
:root {
    --primary-color: #e50914;
    --secondary-color: #141414;
    --accent-color: #1db954;
    --text-color: #ffffff;
    --dark-bg: #0f0f0f;
    --card-bg: #1f1f1f;
    --gradient-bg: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    --box-shadow-small: 0 5px 15px rgba(0, 0, 0, 0.2);
    --box-shadow-medium: 0 15px 30px rgba(0, 0, 0, 0.3);
    --box-shadow-large: 0 15px 35px rgba(0, 0, 0, 0.4);
    --transition-normal: all 0.3s ease;
    --border-radius-standard: 10px;
    --border-light: 1px solid rgba(255, 255, 255, 0.05);
}

/* Reset y estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilos de texto y elementos comunes */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    line-height: 1.6;
}

/* Botones y elementos interactivos */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(229, 9, 20, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: #f0f0f0;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
}

/* Header y navegación */
header {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--box-shadow-small);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-icon {
    margin-right: 10px;
    font-size: 32px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
}

/* Sección Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../imagenes/portada1.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-bg);
    z-index: -5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-image {
    position: absolute;
    right: 800px;
    bottom: 0;
    width: 18%;
    z-index: 1;
    transform: translateY(50px);
    opacity: 0;
}

/* Secciones comunes */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Banner deslizante */
.sliding-banner {
    background: linear-gradient(90deg, #0a0a0a, #141414, #0a0a0a);
    overflow: hidden;
    padding: 15px 0;
    position: relative;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--box-shadow-small);
    z-index: 5;
}

.banner-content {
    display: inline-block;
    animation: slide-left 20s linear infinite;
    padding-right: 50px;
}

.banner-duplicate {
    display: inline-block;
    animation: slide-left-2 30s linear infinite;
    animation-delay: 15s;
    padding-right: 50px;
}

.banner-item {
    display: inline-block;
    color: white;
    font-weight: 600;
    margin-right: 50px;
    font-size: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: var(--transition-normal);
    padding: 5px 12px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.banner-item:hover {
    transform: scale(1.05);
    background-color: rgba(229, 9, 20, 0.2);
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.3);
}

.banner-item i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
}

.banner-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    background-size: 200% 100%;
    animation: shine 3s infinite linear;
    pointer-events: none;
}

/* Características */
.features {
    background-color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-standard);
    padding: 30px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    box-shadow: var(--box-shadow-small);
    position: relative;
    overflow: visible;
    z-index: 2;
}

.feature-card::before, 
.feature-card::after {
    content: '';
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.feature-card::before {
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(
        45deg,
        rgba(255, 0, 0, 0.8) 0%,
        rgba(255, 165, 0, 0.8) 25%,
        rgba(255, 255, 0, 0.8) 50%,
        rgba(255, 165, 0, 0.8) 75%,
        rgba(255, 0, 0, 0.8) 100%
    );
    border-radius: 12px;
    filter: blur(8px);
    transform: scale(0.95);
}

.feature-card::after {
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.5) 0%, transparent 15%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.5) 0%, transparent 15%),
        radial-gradient(circle at 50% 10%, rgba(255, 255, 0, 0.3) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.4) 0%, transparent 20%),
        radial-gradient(circle at 10% 40%, rgba(255, 215, 0, 0.3) 0%, transparent 15%);
    border-radius: 15px;
    filter: blur(10px);
    z-index: -2;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 15px 35px rgba(255, 0, 0, 0.3),
        0 0 20px rgba(255, 165, 0, 0.5),
        0 0 40px rgba(255, 255, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
    transform: scale(1.05);
    animation: border-fire 3s infinite linear;
}

.feature-card:hover::after {
    opacity: 1;
    animation: fire-glow 3s infinite alternate;
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: var(--transition-normal);
}

.feature-icon::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 100px;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 0, 0.6) 0%,
        rgba(255, 165, 0, 0.6) 30%,
        rgba(255, 0, 0, 0.6) 60%,
        rgba(255, 0, 0, 0) 100%
    );
    filter: blur(10px);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover .feature-icon {
    color: white;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 1),
        0 0 20px rgba(255, 165, 0, 1),
        0 0 30px rgba(255, 0, 0, 1);
    transform: translateY(-10px);
    animation: icon-float 2s infinite alternate ease-in-out;
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
    animation: flame-flicker 2s infinite alternate;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card:hover .feature-title {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.8);
    animation: text-glow 2s infinite alternate;
}

.feature-description {
    color: #ccc;
}

/* Efectos de fuego para tarjetas por colores */
.feature-card:nth-child(1):hover {
    box-shadow: 
        0 15px 35px rgba(255, 165, 0, 0.3),
        0 0 20px rgba(255, 165, 0, 0.5),
        0 0 40px rgba(255, 165, 0, 0.3);
}

.feature-card:nth-child(2):hover {
    box-shadow: 
        0 15px 35px rgba(46, 204, 113, 0.3),
        0 0 20px rgba(46, 204, 113, 0.5),
        0 0 40px rgba(46, 204, 113, 0.3);
}

.feature-card:nth-child(3):hover {
    box-shadow: 
        0 15px 35px rgba(52, 152, 219, 0.3),
        0 0 20px rgba(52, 152, 219, 0.5),
        0 0 40px rgba(52, 152, 219, 0.3);
}

.feature-card:nth-child(4):hover {
    box-shadow: 
        0 15px 35px rgba(155, 89, 182, 0.3),
        0 0 20px rgba(155, 89, 182, 0.5),
        0 0 40px rgba(155, 89, 182, 0.3);
}

.feature-card:nth-child(5):hover {
    box-shadow: 
        0 15px 35px rgba(241, 196, 15, 0.3),
        0 0 20px rgba(241, 196, 15, 0.5),
        0 0 40px rgba(241, 196, 15, 0.3);
}

.feature-card:nth-child(6):hover {
    box-shadow: 
        0 15px 35px rgba(231, 76, 60, 0.3),
        0 0 20px rgba(231, 76, 60, 0.5),
        0 0 40px rgba(231, 76, 60, 0.3);
}

/* Partículas de fuego */
.fire-particles {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover .fire-particles {
    opacity: 1;
}

.fire-particles span {
    position: absolute;
    bottom: 0;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 0, 0.9) 0%, 
        rgba(255, 165, 0, 0.9) 40%, 
        rgba(255, 0, 0, 0.9) 70%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(2px);
}

.feature-card:hover .fire-particles span {
    animation: ember-rise 3s ease-out forwards;
}

.feature-card:hover .fire-particles span:nth-child(1) {
    left: 20%;
    width: 12px;
    height: 12px;
}

.feature-card:hover .fire-particles span:nth-child(2) {
    left: 50%;
    width: 10px;
    height: 10px;
    animation-delay: 0.5s;
}

.feature-card:hover .fire-particles span:nth-child(3) {
    left: 80%;
    width: 8px;
    height: 8px;
    animation-delay: 1s;
}

/* Estilos corregidos para la sección de testimonios */
.testimonials {
    padding: 100px 0;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 100, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
    animation: pulse-shield 8s infinite alternate;
}

.testimonials-container {
    position: relative;
    z-index: 1;
}

.testimonials-subtitle {
    text-align: center;
    color: #aaa;
    margin: -30px auto 40px;
    max-width: 600px;
    font-size: 16px;
}

/* Contenedor para el slider de testimonios */
.testimonials-slider-container {
    position: relative;
    margin-top: 40px;
}

/* Estilos para la sección de comprobantes de pago */
.payment-proofs-section {
    background-color: rgba(0, 100, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 100, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.payment-proofs-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(0, 100, 255, 0) 0%,
        rgba(0, 100, 255, 0.1) 50%,
        rgba(0, 100, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: security-scan 8s infinite linear;
    pointer-events: none;
}

.proofs-title {
    text-align: center;
    margin-bottom: 25px;
    color: #0066ff;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.proofs-title i {
    color: #0066ff;
    font-size: 18px;
    animation: shield-pulse 2s infinite alternate;
}

.payment-proofs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.payment-proof-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 100, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.payment-proof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 100, 255, 0.2);
    border-color: rgba(0, 100, 255, 0.3);
}

.proof-image {
    position: relative;
    width: 100%;
    padding-top: 130%; /* Proporción para que se vea el comprobante completo */
    overflow: hidden;
}

.proof-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.payment-proof-card:hover .proof-img {
    transform: scale(1.05);
}

.verified-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #0066ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
    animation: badge-glow 3s infinite alternate;
}

.proof-info {
    padding: 12px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--card-bg) 20%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-date {
    font-size: 14px;
    color: #aaa;
}

/* Slider de testimonios */
.testimonial-slider {
    display: flex;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.testimonial-card {
    scroll-snap-align: center;
    min-width: 100%;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 100, 255, 0.2);
    border: 1px solid rgba(0, 100, 255, 0.1);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-verification {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.verification-badge {
    background-color: rgba(0, 128, 0, 0.1);
    color: #4CAF50;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 30px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    display: flex;
    align-items: center;
    gap: 5px;
}

.verification-badge i {
    color: #4CAF50;
}

.verification-date {
    color: #aaa;
    font-size: 14px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 70px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.1);
    font-family: sans-serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #555;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
}

.slider-arrow {
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
}

/* Efecto shimmer para comprobantes */
.proof-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 2;
}

/* Adaptación para móviles */
@media (max-width: 768px) {
    .payment-proofs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .verified-badge {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .proof-info {
        padding: 10px;
    }

    .proof-date {
        font-size: 12px;
    }
    
    .proofs-title {
        font-size: 18px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .slider-arrows {
        display: none;
    }
}

@media (max-width: 480px) {
    .payment-proofs-section {
        padding: 15px;
    }
    
    .payment-proofs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .verified-badge {
        width: 20px;
        height: 20px;
        font-size: 10px;
        top: 5px;
        right: 5px;
    }
    
    .proof-info {
        padding: 8px;
    }
    
    .proof-date {
        font-size: 10px;
    }
}

/* Animaciones */
@keyframes badge-glow {
    0% {
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 2px 15px rgba(0, 102, 255, 0.7);
    }
}

@keyframes shield-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes security-scan {
    0% {
        transform: rotate(45deg) translateX(-50%);
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    80% {
        opacity: 0.5;
    }
    100% {
        transform: rotate(45deg) translateX(50%);
        opacity: 0;
    }
}

/* Comprobantes de pago */
.payment-proofs-section {
    background-color: rgba(0, 100, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 50px;
    border: 1px solid rgba(0, 100, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.payment-proofs-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(0, 100, 255, 0) 0%,
        rgba(0, 100, 255, 0.1) 50%,
        rgba(0, 100, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: security-scan 8s infinite linear;
    pointer-events: none;
}

.proofs-title {
    text-align: center;
    margin-bottom: 25px;
    color: #0066ff;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.proofs-title i {
    color: #0066ff;
    font-size: 18px;
    animation: shield-pulse 2s infinite alternate;
}

.payment-proofs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.payment-proof-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-standard);
    overflow: hidden;
    box-shadow: var(--box-shadow-small);
    border: 1px solid rgba(0, 100, 255, 0.1);
    transition: var(--transition-normal);
    position: relative;
}

.payment-proof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 100, 255, 0.2);
    border-color: rgba(0, 100, 255, 0.3);
}

.proof-image {
    position: relative;
    width: 100%;
    padding-top: 130%;
    overflow: hidden;
}

.proof-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.payment-proof-card:hover .proof-img {
    transform: scale(1.05);
}

.verified-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #0066ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
    animation: badge-glow 3s infinite alternate;
}

.proof-info {
    padding: 12px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--card-bg) 20%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-date {
    font-size: 14px;
    color: #aaa;
}

/* FAQ Section */
.faq {
    background-color: var(--dark-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--card-bg);
    box-shadow: var(--box-shadow-small);
}

.accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.accordion-title {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.accordion-title i {
    margin-right: 10px;
    color: var(--primary-color);
}

.accordion-icon {
    transition: transform 0.3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-content-inner {
    padding: 0 20px 20px;
    line-height: 1.6;
    color: #ccc;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff5e62 100%);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-description {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #222;
    color: white;
    font-size: 18px;
    transition: var(--transition-normal);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #777;
}

/* Estilos para la página de tienda */
.store-header {
    padding-top: 100px;
    text-align: center;
    margin-bottom: 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-standard);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--box-shadow-small);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--box-shadow-large);
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.popular-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.product-details {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}

/* Partículas de fondo */
#background-particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
    pointer-events: none;
    background-color: var(--dark-bg);
}

#background-particles-container::before,
#background-particles-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

#background-particles-container::before {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(128, 128, 128, 0.07) 0%, rgba(128, 128, 128, 0) 3%),
        radial-gradient(circle at 70% 80%, rgba(128, 128, 128, 0.08) 0%, rgba(128, 128, 128, 0) 5%),
        radial-gradient(circle at 90% 10%, rgba(128, 128, 128, 0.06) 0%, rgba(128, 128, 128, 0) 4%),
        radial-gradient(circle at 30% 70%, rgba(128, 128, 128, 0.06) 0%, rgba(128, 128, 128, 0) 5%),
        radial-gradient(circle at 50% 10%, rgba(128, 128, 128, 0.07) 0%, rgba(128, 128, 128, 0) 4%);
}

#background-particles-container::after {
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(128, 128, 128, 0.06) 0%, rgba(128, 128, 128, 0) 4%),
        radial-gradient(circle at 75% 85%, rgba(128, 128, 128, 0.06) 0%, rgba(128, 128, 128, 0) 4%),
        radial-gradient(circle at 5% 15%, rgba(128, 128, 128, 0.05) 0%, rgba(128, 128, 128, 0) 3%),
        radial-gradient(circle at 65% 15%, rgba(128, 128, 128, 0.07) 0%, rgba(128, 128, 128, 0) 5%);
    animation: float-particles 30s infinite alternate;
}

/* Animaciones */
@keyframes slide-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes slide-left-2 {
    0% { transform: translateX(100%); }
    100% { transform: translateX(0); }
}

@keyframes shine {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float-particles {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes border-fire {
    0% { background-position: 0% 50%; filter: blur(8px) brightness(1); }
    50% { background-position: 100% 50%; filter: blur(12px) brightness(1.3); }
    100% { background-position: 0% 50%; filter: blur(8px) brightness(1); }
}

@keyframes fire-glow {
    0%, 100% { filter: blur(10px) brightness(1); }
    50% { filter: blur(15px) brightness(1.3); }
}

@keyframes flame-flicker {
    0%, 100% { transform: translateX(-50%) scale(1) rotate(-2deg); filter: blur(10px) brightness(1); }
    25% { transform: translateX(-48%) scale(1.1) rotate(0deg); filter: blur(12px) brightness(1.2); }
    50% { transform: translateX(-52%) scale(0.95) rotate(2deg); filter: blur(9px) brightness(0.9); }
    75% { transform: translateX(-50%) scale(1.05) rotate(-1deg); filter: blur(11px) brightness(1.1); }
}

@keyframes icon-float {
    0% { transform: translateY(-5px) scale(1); }
    100% { transform: translateY(-15px) scale(1.1); }
}

@keyframes ember-rise {
    0% { bottom: 0; opacity: 1; filter: blur(2px) brightness(1); }
    30% { filter: blur(3px) brightness(1.3); }
    100% { bottom: 120%; opacity: 0; filter: blur(4px) brightness(0.8); }
}

@keyframes text-glow {
    0%, 100% { text-shadow: 0 0 8px rgba(255, 165, 0, 0.8); }
    50% { text-shadow: 0 0 15px rgba(255, 0, 0, 0.9); }
}

@keyframes pulse-shield {
    0% { opacity: 0.3; transform: scale(0.95); }
    100% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes security-scan {
    0% { transform: rotate(45deg) translateX(-50%); opacity: 0; }
    20% { opacity: 0.5; }
    80% { opacity: 0.5; }
    100% { transform: rotate(45deg) translateX(50%); opacity: 0; }
}

@keyframes shield-pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 1; }
}

@keyframes badge-glow {
    0% { box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); }
    100% { box-shadow: 0 2px 15px rgba(0, 102, 255, 0.7); }
}

/* Media Queries */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .features-grid, .footer-content { grid-template-columns: repeat(2, 1fr); }
    .hero-image { width: 40%; opacity: 0.7; }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: var(--box-shadow-small);
    }
    
    nav.active ul { display: flex; }
    nav ul li { margin: 10px 0; }
    .mobile-menu-btn { display: block; }
    .hero-content { text-align: center; margin: 0 auto; }
    .hero h1 { font-size: 2.5rem; }
    .hero-image { display: none; }
    .features-grid, .footer-content { grid-template-columns: 1fr; }
    .slider-arrows { display: none; }
    
    .payment-proofs-grid { gap: 10px; }
    .verified-badge { width: 24px; height: 24px; font-size: 12px; }
    .proof-info { padding: 10px; }
    .proof-date, .proofs-title { font-size: 12px; }
    .testimonial-card { padding: 20px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-tagline, .hero-description { font-size: 16px; }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        display: block;
        margin-bottom: 10px;
        width: 100%;
    }
    
    .btn-outline { margin-left: 0; }
    .section-title { font-size: 2rem; }
    
    .payment-proofs-section { padding: 15px; }
    .payment-proofs-grid { gap: 8px; }
    
    .verified-badge {
        width: 20px;
        height: 20px;
        font-size: 10px;
        top: 5px;
        right: 5px;
    }
    
    .proof-info { padding: 8px; }
    .proof-date { font-size: 10px; }
}

/* ================= ESTILOS PARA TESTIMONIOS RESPONSIVOS ================= */

/* Contenedor general de testimonios */
.testimonials {
    padding: 80px 0;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.testimonials-subtitle {
    text-align: center;
    color: #aaa;
    margin: -30px auto 40px;
    max-width: 600px;
    font-size: 16px;
}

/* Sección de comprobantes de pago */
.payment-proofs-section {
    background-color: rgba(0, 100, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 100, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.proofs-title {
    text-align: center;
    margin-bottom: 20px;
    color: #0066ff;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.proofs-title i {
    color: #0066ff;
    font-size: 16px;
    animation: shield-pulse 2s infinite alternate;
}

/* Grid responsivo de comprobantes */
.payment-proofs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.payment-proof-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 100, 255, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.proof-image {
    position: relative;
    width: 100%;
    /* Proporción más pequeña para móviles */
    padding-top: 100%;
    overflow: hidden;
}

.proof-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verified-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background-color: #0066ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border: 1px solid white;
}

.proof-info {
    padding: 8px;
    text-align: center;
    background-color: var(--card-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-date {
    font-size: 12px;
    color: #aaa;
}

/* -------- Versión móvil de testimonios -------- */
.mobile-testimonials {
    display: none; /* Se muestra solo en móviles */
    position: relative;
    margin-top: 20px;
}

.mobile-testimonial-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--card-bg);
}

.mobile-testimonial {
    padding: 20px;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mobile-testimonial.active {
    display: block;
    opacity: 1;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.verification-badge {
    background-color: rgba(0, 128, 0, 0.1);
    color: #4CAF50;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 30px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.verification-badge i {
    color: #4CAF50;
    font-size: 10px;
}

.verification-date {
    color: #aaa;
    font-size: 12px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 1px solid var(--primary-color);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.author-role {
    color: #aaa;
    font-size: 12px;
}

.mobile-testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 8px;
}

.mobile-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* -------- Versión desktop de testimonios -------- */
.desktop-testimonials {
    position: relative;
    margin-top: 30px;
}

.testimonial-slider {
    display: flex;
    overflow-x: hidden;
    position: relative;
}

.testimonial-card {
    min-width: 100%;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

/* Media queries para móviles */
@media (max-width: 768px) {
    .desktop-testimonials {
        display: none; /* Oculta versión desktop en móvil */
    }
    
    .mobile-testimonials {
        display: block; /* Muestra versión móvil */
    }
    
    .payment-proofs-grid {
        gap: 10px;
    }
    
    .proofs-title {
        font-size: 18px;
    }
    
    .payment-proofs-section {
        padding: 15px;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .testimonials-subtitle {
        font-size: 14px;
        margin: -20px auto 30px;
    }
}

@media (max-width: 480px) {
    .payment-proofs-grid {
        gap: 6px;
    }
    
    .proof-date {
        font-size: 10px;
    }
    
    .verified-badge {
        width: 18px;
        height: 18px;
        font-size: 8px;
    }
    
    .mobile-testimonial {
        padding: 15px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .author-avatar {
        width: 35px;
        height: 35px;
    }
    
    .author-name {
        font-size: 13px;
    }
    
    .author-role {
        font-size: 11px;
    }
}

/* Animaciones */
@keyframes shield-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}
/* Estilos para el slider de escritorio */
.desktop-testimonials {
    display: block;
    margin-top: 50px;
}

/* Contenedor principal */
.testimonial-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Wrapper del slider */
.testimonial-wrapper {
    width: 90%;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

/* Track para los slides */
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%; /* 100% por cada slide */
}

/* Cada slide */
.testimonial-slide {
    width: 33.333%; /* 100% / 3 slides */
    flex-shrink: 0;
    padding: 20px;
}

/* Tarjeta individual */
.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cabecera con verificación */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Texto del testimonio */
.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

/* Autor */
.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}

.author-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-role {
    color: #aaa;
    font-size: 14px;
}

/* Flechas de navegación */
.arrow {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 2;
}

.arrow:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

/* Indicadores de paginación */
.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #555;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-testimonials {
        display: none;
    }
    
    .mobile-testimonials {
        display: block;
    }
}

@media (min-width: 769px) {
    .desktop-testimonials {
        display: block;
    }
    
    .mobile-testimonials {
        display: none;
    }
}

/* Estilos específicos para móviles */
.mobile-testimonials {
    display: none;
}

.mobile-testimonial {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-testimonial.active {
    display: block;
    opacity: 1;
}

.mobile-testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.mobile-nav-dot {
    width: 8px;
    height: 8px;
    background-color: #555;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.mobile-nav-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Estilos para las tarjetas de comprobantes */
.payment-proofs-section {
    margin-bottom: 40px;
}

.payment-proofs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.verification-badge {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    background-color: rgba(0, 128, 0, 0.1);
    color: #4CAF50;
    border-radius: 30px;
    font-size: 14px;
}

.verification-badge i {
    margin-right: 5px;
}

.verification-date {
    color: #aaa;
    font-size: 14px;
}
/* Contenedor de imágenes flotantes */
.floating-images-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none; /* Para que no interfiera con clics */
    z-index: 0;
}

/* Estilos base para las imágenes flotantes */
.floating-image {
    position: absolute;
    width: 70px;
    height: 70px;
    object-fit: cover; /* Cambiado a cover para imágenes rectangulares */
    border-radius: 15px; /* Bordes redondeados pero no circulares */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    z-index: 1;
    opacity: 0.85;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

/* Posiciones iniciales de cada imagen */
.floating-image-1 {
    top: 10%;
    left: 5%;
    transform: rotate(-5deg);
}

.floating-image-2 {
    top: 60%;
    right: 8%;
    transform: rotate(8deg);
}

.floating-image-3 {
    top: 35%;
    left: 80%;
    transform: rotate(-10deg);
}

.floating-image-4 {
    top: 70%;
    left: 15%;
    transform: rotate(15deg);
}

.floating-image-5 {
    top: 20%;
    right: 20%;
    transform: rotate(-8deg);
}

.floating-image-6 {
    top: 50%;
    left: 40%;
    transform: rotate(12deg);
}

/* Asegúrate de que la sección de características tenga posición relativa */
.features {
    position: relative;
    padding: 100px 0;
    overflow: hidden; /* Para contener las imágenes flotantes */
}

/* Media query para tablets */
@media (max-width: 992px) {
    .floating-image {
        width: 60px;
        height: 60px;
    }
}

/* Media query para móviles */
@media (max-width: 768px) {
    .floating-image {
        width: 50px;
        height: 50px;
        border-radius: 10px;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 480px) {
    .floating-image {
        width: 40px;
        height: 40px;
    }
}
.category-filter {
    margin: 20px auto 30px;
    display: flex !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.filter-btn {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.product-card {
    display: block !important;
    opacity: 1 !important;
    transform: scale(1) !important;
}
/* Añade esto a tu archivo CSS para mejorar la visualización en móvil */
@media (max-width: 768px) {
    .mobile-testimonials {
        display: block;
        margin-top: 2rem;
        padding: 0 15px;
    }
    
    .mobile-testimonials-title {
        text-align: center;
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
        color: #333;
    }
    
    .mobile-testimonial {
        display: none;
        background-color: #fff;
        border-radius: 10px;
        padding: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 1rem;
    }
    
    .mobile-testimonial.active {
        display: block;
    }
    
    .mobile-testimonial .testimonial-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.8rem;
    }
    
    .mobile-testimonial .verification-badge {
        color: #4CAF50;
        font-weight: 600;
        font-size: 0.85rem;
        display: flex;
        align-items: center;
    }
    
    .mobile-testimonial .verification-badge i {
        margin-right: 5px;
    }
    
    .mobile-testimonial .verification-date {
        color: #777;
        font-size: 0.8rem;
    }
    
    .mobile-testimonial .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #333;
        margin-bottom: 1rem;
    }
    
    .mobile-testimonial .testimonial-author {
        display: flex;
        align-items: center;
    }
    
    .mobile-testimonial .author-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 10px;
    }
    
    .mobile-testimonial .author-info {
        display: flex;
        flex-direction: column;
    }
    
    .mobile-testimonial .author-name {
        font-weight: 600;
        font-size: 0.9rem;
        margin: 0;
    }
    
    .mobile-testimonial .author-role {
        font-size: 0.75rem;
        color: #777;
        margin: 0;
    }
    
    .mobile-testimonial-nav {
        display: flex;
        justify-content: center;
        margin: 1rem 0;
    }
    
    .mobile-nav-dot {
        height: 8px;
        width: 8px;
        border-radius: 50%;
        background-color: #ddd;
        margin: 0 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .mobile-nav-dot.active {
        background-color: #6c63ff;
    }
    
    .mobile-navigation-buttons {
        display: flex;
        justify-content: space-between;
        margin-top: 1.2rem;
    }
    
    .mobile-prev-btn, .mobile-next-btn {
        background-color: #6c63ff;
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 5px;
        font-size: 0.85rem;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .mobile-prev-btn:hover, .mobile-next-btn:hover {
        background-color: #5a52cc;
    }
    
    /* Ocultar sección de escritorio en móvil */
    .desktop-testimonials {
        display: none;
    }
}

/* Para dispositivos de escritorio */
@media (min-width: 769px) {
    .mobile-testimonials {
        display: none;
    }
    
    .desktop-testimonials {
        display: block;
    }
}
/* Añade esto a tu CSS para mejorar la visualización de 10 comprobantes */
.payment-proofs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columnas en escritorio */
    gap: 15px;
    margin-top: 1.5rem;
}

@media (max-width: 992px) {
    .payment-proofs-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columnas en tablets */
    }
}

@media (max-width: 576px) {
    .payment-proofs-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en móviles */
    }
}

.payment-proof-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.payment-proof-card:hover {
    transform: translateY(-5px);
}
/* Estilos para las feature cards destacadas */
.features-grid-simplified {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2.5rem;
}

.feature-card-highlight {
    padding: 2rem;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
    border-top: 4px solid #6c63ff;
}

.feature-card-highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-card-highlight .feature-icon {
    font-size: 2.5rem;
    color: #6c63ff;
    margin-bottom: 1.2rem;
    display: block;
}

.feature-card-highlight .feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #333;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #555;
    border-bottom: 1px solid #f1f1f1;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 1rem;
}

/* Ampliar la colección de imágenes flotantes */
.floating-images-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.floating-image {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    opacity: 0.8;
}

/* Posiciones adicionales para las nuevas imágenes flotantes */
.floating-image-6 {
    top: 75%;
    left: 82%;
    animation: float 6s ease-in-out infinite;
}

.floating-image-7 {
    top: 60%;
    left: 5%;
    animation: float 7s ease-in-out infinite;
}

.floating-image-8 {
    top: 15%;
    left: 30%;
    animation: float 8s ease-in-out infinite;
}

.floating-image-9 {
    top: 28%;
    left: 88%;
    animation: float 9s ease-in-out infinite;
}

.floating-image-10 {
    top: 90%;
    left: 40%;
    animation: float 10s ease-in-out infinite;
}

.floating-image-11 {
    top: 45%;
    left: 70%;
    animation: float 11s ease-in-out infinite;
}

.floating-image-12 {
    top: 30%;
    left: 55%;
    animation: float 9s ease-in-out infinite;
}

.floating-image-13 {
    top: 75%;
    left: 15%;
    animation: float 10s ease-in-out infinite;
}

.floating-image-14 {
    top: 10%;
    left: 75%;
    animation: float 7s ease-in-out infinite;
}

.floating-image-15 {
    top: 50%;
    left: 25%;
    animation: float 8s ease-in-out infinite;
}

.floating-image-16 {
    top: 85%;
    left: 60%;
    animation: float 11s ease-in-out infinite;
}

.floating-image-17 {
    top: 22%;
    left: 12%;
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .features-grid-simplified {
        grid-template-columns: 1fr;
    }
    
    .feature-card-highlight {
        padding: 1.5rem;
    }
    
    .floating-image {
        width: 60px;
        height: 60px;
    }
    
    /* Ajustar posiciones en móvil para que no se vean aglomeradas */
    .floating-image-odd {
        left: 15% !important;
    }
    
    .floating-image-even {
        left: 75% !important;
    }
}
/* Estilos actualizados para tarjetas semitransparentes */
.feature-card-highlight {
    padding: 2rem;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.65); /* Fondo blanco semitransparente */
    backdrop-filter: blur(5px); /* Efecto de desenfoque para mejor legibilidad */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
    border-top: 4px solid #6c63ff;
}

.feature-card-highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.95); /* Ligeramente más opaco al hacer hover */
}

.feature-card-content {
    position: relative;
    z-index: 2; /* Asegura que el contenido esté por encima del fondo semitransparente */
}

.feature-card-highlight .feature-icon {
    font-size: 2.5rem;
    color: #6c63ff;
    margin-bottom: 1.2rem;
    display: block;
    text-shadow: 0 2px 10px rgba(108, 99, 255, 0.2); /* Añade un resplandor suave */
}

.feature-card-highlight .feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #333;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #444; /* Ligeramente más oscuro para mejor contraste */
    border-bottom: 1px solid rgba(241, 241, 241, 0.5); /* Borde más sutil */
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 1rem;
    filter: drop-shadow(0 2px 3px rgba(76, 175, 80, 0.2)); /* Resplandor sutil */
}

/* Mejorar las imágenes flotantes para que se vean mejor a través de las tarjetas */
.floating-image {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    opacity: 0.7; /* Un poco más opacas para que se vean mejor */
    z-index: 0; /* Asegura que estén detrás de las tarjetas */
}

/* Estilos específicos para dispositivos móviles */
@media (max-width: 768px) {
    .feature-card-highlight {
        background-color: rgba(255, 255, 255, 0.65); /* Ligeramente más opaco en móviles para mejor legibilidad */
    }
    
    .floating-image {
        opacity: 0.55; /* Ligeramente más transparentes en móviles */
    }
}

/* Añadir más animación al hover de las tarjetas */
.feature-card-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-highlight:hover::before {
    opacity: 1;
}
/* Estilos para contenedor de botones */
.buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* Espaciado uniforme entre botones */
    margin-bottom: 20px;
}

/* Estilo para el botón de WhatsApp */
.whatsapp-button {
    background-color: #25D366;
    color: white;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #22c55e;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
}

/* Asegurar que los botones tengan el mismo ancho en móvil */
@media (max-width: 480px) {
    .buttons-container {
        flex-direction: column;
        align-items: center;
    }
    
    .buttons-container .btn {
        width: 80%; /* Ancho consistente */
        margin: 5px 0;
    }
}
/* Centrar los botones */
.centrardos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

/* Eliminar margen en pantallas pequeñas para evitar desalineación */
@media (max-width: 768px) {
    .centrardos a.btn {
        margin: 5px !important; /* Sobrescribe cualquier margen inline */
    }
}