/* Reset and Variables */
:root {
    /* Colors */
    --primary-gold: #f2b337;
    --primary-dark: #121220;
    --primary-blue: #6c8cf4;
    --text-light: #9798ae;
    --text-dark: #2d3748;
    --white: #ffffff;
    --light-bg: #faf9fb;
    --purple-light: #cbcce0;
    --orange-accent: #f4d39c;
    --brown-accent: #926a54;
    --pink-accent: #ddaba3;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --font-script: 'Sacramento', cursive;

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 12px;

    /* Shadows */
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 10px 50px rgba(18, 18, 32, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    transition: background-color 0.3s ease;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 120px;
    height: auto;
    animation: pulse 2s infinite;
}

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

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), #ffa726);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 16px;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(18, 18, 32, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.navbar {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e1e2e 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-gold));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: -2s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: -4s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 30%;
    animation-delay: -1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(-20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-gold), #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    margin-bottom: 40px;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-coins {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-coin {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: floatCoin 4s ease-in-out infinite;
}

.coin-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.coin-2 {
    top: 50%;
    right: 10%;
    animation-delay: -1.5s;
}

.coin-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: -3s;
}

@keyframes floatCoin {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(180deg); }
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin: 20px 0;
    font-weight: 700;
}

.about-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-visual img {
    width: 100%;
    height: auto;
}

/* Video Section */
.video-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.video-text-container {
    padding: 20px;
}

.video-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.video-description {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.video-sponsor-text {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--primary-gold);
    margin: 20px 0 10px;
}

.sponsor-logo {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
}

.video-player-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 10px solid var(--primary-gold);
}

.video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Services Section - ¿Qué servicios ofrecemos? */
.services-section-full {
    padding: var(--section-padding);
    background: var(--white);
    text-align: center;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.services-description {
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.services-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.services-list-left,
.services-list-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-list-right {
    text-align: left;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.service-icon-circle {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-gold));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-icon-circle img {
    width: 32px;
    height: 32px;
}

.service-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.service-text p {
    color: var(--text-dark);
}

.services-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-illustration img {
    max-width: 100%;
    height: auto;
}

/* Comunidad Section */
.community {
    padding: var(--section-padding) 0;
    text-align: center;
    background: var(--primary-dark);
    color: var(--white);
}

.community .container {
    padding-bottom: 60px;
}

.community .section-title {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.community p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.community-cta {
    margin-top: 20px;
}

/* Full-width Slider */
.full-width-slider {
    position: relative;
    width: 100%;
    margin-top: 60px;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    flex-shrink: 0;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: var(--primary-gold);
}


/* Counters Section */
.counters-section {
    padding: 80px 0;
    background-color: var(--white);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.counter-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 40px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.counter-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.counter-label {
    font-size: 1rem;
    color: var(--text-dark);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--primary-dark);
    color: var(--white);
}

.footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.footer-brand .footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand .footer-copyright {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.footer-social .social-icon:hover {
    transform: translateY(-5px);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

/* Redes sociales flotantes en la izquierda */
.social-bar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.social-bar .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.social-bar .icon img {
    width: 24px;
    height: 24px;
}

.social-bar .icon.facebook {
    background-color: #3b5998;
}

.social-bar .icon.youtube {
    background-color: #c4302b;
}

.social-bar .icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-bar .icon:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--primary-dark);
    color: var(--white);
    margin: 5% auto;
    padding: 30px 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: var(--shadow-strong);
    animation: fadeIn 0.5s;
}

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

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.close-modal {
    color: var(--text-light);
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 25px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-gold);
}

.contact-info-container {
    background-color: #212133;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.contact-info-container h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-info-container p {
    font-size: 1rem;
    margin: 5px 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--white);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #3d3d52;
    border-radius: 8px;
    background-color: #212133;
    color: var(--white);
    font-family: var(--font-primary);
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.contact-form textarea {
    resize: vertical;
}

.modal-btn {
    width: 100%;
    font-size: 16px;
    margin-top: 15px;
}

/* Estilos para páginas secundarias (Términos, Privacidad) */
.header-secondary {
    position: relative;
    background: var(--primary-dark);
    padding: 15px 0;
    box-shadow: var(--shadow-soft);
}

.page-content {
    padding-top: 100px;
    background: var(--light-bg);
}

.policy-section {
    padding: var(--section-padding);
}

.page-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.policy-section h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 30px;
    margin-bottom: 10px;
}

.policy-section p,
.policy-section li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Modal de Libro de Reclamaciones */
.claim-book-form {
    text-align: left;
}

.claim-book-form p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--primary-gold);
    padding-bottom: 5px;
}

.claim-book-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #3d3d52;
    border-radius: 8px;
    background-color: #212133;
    color: var(--white);
    font-family: var(--font-primary);
    transition: border-color 0.3s;
}

/* Estilos para la barra de scroll (Webkit) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background-color: var(--primary-blue);
    border-radius: 10px;
    border: 3px solid var(--primary-dark);
}
::-webkit-scrollbar-thumb:hover {
    background-color: #5a7bd4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .video-content,
    .services-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .services-list-left,
    .services-list-right {
        gap: 20px;
        text-align: center;
        flex-direction: column;
    }
    
    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-links,
    .footer-social {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease-in-out;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Ocultar el slider de la comunidad en dispositivos móviles */
    .full-width-slider {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .services-row, .counters-grid {
        grid-template-columns: 1fr;
    }
    .footer .container {
        align-items: center;
    }
    .social-links {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-coins {
        height: 300px;
    }
}






dame el codigo completo css con el ocultar slider para movil.


Aquí tienes el código CSS completo y corregido, que incluye la solución para ocultar el slider de la comunidad en dispositivos móviles.

Simplemente reemplaza el contenido de tu archivo styles.css con el código a continuación. El cambio clave se encuentra dentro de la media query @media (max-width: 768px) { ... }, donde se añade la regla display: none; para el elemento con la clase .full-width-slider.

styles.css (Código CSS Completo y Corregido)
CSS

/* Reset and Variables */
:root {
    /* Colors */
    --primary-gold: #f2b337;
    --primary-dark: #121220;
    --primary-blue: #6c8cf4;
    --text-light: #9798ae;
    --text-dark: #2d3748;
    --white: #ffffff;
    --light-bg: #faf9fb;
    --purple-light: #cbcce0;
    --orange-accent: #f4d39c;
    --brown-accent: #926a54;
    --pink-accent: #ddaba3;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --font-script: 'Sacramento', cursive;

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 12px;

    /* Shadows */
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 10px 50px rgba(18, 18, 32, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    transition: background-color 0.3s ease;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 120px;
    height: auto;
    animation: pulse 2s infinite;
}

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

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), #ffa726);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 16px;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(18, 18, 32, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.navbar {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e1e2e 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-gold));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: -2s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: -4s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 30%;
    animation-delay: -1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(-20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-gold), #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    margin-bottom: 40px;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-coins {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-coin {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: floatCoin 4s ease-in-out infinite;
}

.coin-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.coin-2 {
    top: 50%;
    right: 10%;
    animation-delay: -1.5s;
}

.coin-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: -3s;
}

@keyframes floatCoin {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(180deg); }
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin: 20px 0;
    font-weight: 700;
}

.about-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-visual img {
    width: 100%;
    height: auto;
}

/* Video Section */
.video-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.video-text-container {
    padding: 20px;
}

.video-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.video-description {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.video-sponsor-text {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--primary-gold);
    margin: 20px 0 10px;
}

.sponsor-logo {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
}

.video-player-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 10px solid var(--primary-gold);
}

.video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Services Section - ¿Qué servicios ofrecemos? */
.services-section-full {
    padding: var(--section-padding);
    background: var(--white);
    text-align: center;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.services-description {
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.services-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.services-list-left,
.services-list-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-list-right {
    text-align: left;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.service-icon-circle {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-gold));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-icon-circle img {
    width: 32px;
    height: 32px;
}

.service-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.service-text p {
    color: var(--text-dark);
}

.services-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-illustration img {
    max-width: 100%;
    height: auto;
}

/* Comunidad Section */
.community {
    padding: var(--section-padding) 0;
    text-align: center;
    background: var(--primary-dark);
    color: var(--white);
}

.community .container {
    padding-bottom: 60px;
}

.community .section-title {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.community p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.community-cta {
    margin-top: 20px;
}

/* Full-width Slider */
.full-width-slider {
    position: relative;
    width: 100%;
    margin-top: 60px;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    flex-shrink: 0;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: var(--primary-gold);
}


/* Counters Section */
.counters-section {
    padding: 80px 0;
    background-color: var(--white);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.counter-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 40px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.counter-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.counter-label {
    font-size: 1rem;
    color: var(--text-dark);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--primary-dark);
    color: var(--white);
}

.footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.footer-brand .footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand .footer-copyright {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.footer-social .social-icon:hover {
    transform: translateY(-5px);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

/* Redes sociales flotantes en la izquierda */
.social-bar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.social-bar .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.social-bar .icon img {
    width: 24px;
    height: 24px;
}

.social-bar .icon.facebook {
    background-color: #3b5998;
}

.social-bar .icon.youtube {
    background-color: #c4302b;
}

.social-bar .icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-bar .icon:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--primary-dark);
    color: var(--white);
    margin: 5% auto;
    padding: 30px 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: var(--shadow-strong);
    animation: fadeIn 0.5s;
}

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

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.close-modal {
    color: var(--text-light);
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 25px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-gold);
}

.contact-info-container {
    background-color: #212133;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.contact-info-container h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-info-container p {
    font-size: 1rem;
    margin: 5px 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--white);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #3d3d52;
    border-radius: 8px;
    background-color: #212133;
    color: var(--white);
    font-family: var(--font-primary);
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.contact-form textarea {
    resize: vertical;
}

.modal-btn {
    width: 100%;
    font-size: 16px;
    margin-top: 15px;
}

/* Estilos para páginas secundarias (Términos, Privacidad) */
.header-secondary {
    position: relative;
    background: var(--primary-dark);
    padding: 15px 0;
    box-shadow: var(--shadow-soft);
}

.page-content {
    padding-top: 100px;
    background: var(--light-bg);
}

.policy-section {
    padding: var(--section-padding);
}

.page-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.policy-section h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 30px;
    margin-bottom: 10px;
}

.policy-section p,
.policy-section li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Modal de Libro de Reclamaciones */
.claim-book-form {
    text-align: left;
}

.claim-book-form p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--primary-gold);
    padding-bottom: 5px;
}

.claim-book-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #3d3d52;
    border-radius: 8px;
    background-color: #212133;
    color: var(--white);
    font-family: var(--font-primary);
    transition: border-color 0.3s;
}

/* Estilos para la barra de scroll (Webkit) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background-color: var(--primary-blue);
    border-radius: 10px;
    border: 3px solid var(--primary-dark);
}
::-webkit-scrollbar-thumb:hover {
    background-color: #5a7bd4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .video-content,
    .services-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .services-list-left,
    .services-list-right {
        gap: 20px;
        text-align: center;
        flex-direction: column;
    }
    
    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-links,
    .footer-social {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease-in-out;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Ocultar el slider de la comunidad en dispositivos móviles */
    .full-width-slider {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .services-row, .counters-grid {
        grid-template-columns: 1fr;
    }
    .footer .container {
        align-items: center;
    }
    .social-links {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-coins {
        height: 300px;
    }
}