@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


@font-face {
    font-family: 'font';
    src: url('./assets/MinasansBold-m2mmP.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

body {
    background-color: #ffffff;
    color: #000000;
}



/* PANTALLA DE CARGA */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.842);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 120px;
    height: 120px;
    animation: pulse 1.5s infinite ease-in-out;
    position: relative;
    z-index: 2;
}

.loading-circle {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 8px solid #f3f3f300; /* Color de fondo del círculo */
    border-top: 8px solid #0400ff; /* Color de la animación */
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    box-sizing: border-box;
}

@keyframes pulse {
    0% { transform: scale(0.95); }
    50% { transform: scale(1.05); }
    100% { transform: scale(0.95); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-container.hidden {
    opacity: 0;
    pointer-events: none;
}

.content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.content.loaded {
    opacity: 1;
}

/* HEADER */
.menu-icon {
    display: none;
}


header {
    
    background-color: #0300b4;
    color: #ffffff;
    padding: 5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.459);
}

nav {
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    letter-spacing: 1px;
    font-family: 'font', sans-serif;
}

.logo-container img {
    
    height: 60px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    background-color: #0300b4;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    letter-spacing: 1px;
    font-family: 'font', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

nav ul li a:hover {
    color: #007bff;
}


/* SLIDER BANNER */
#banner {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 800px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 100%;
    width: 900px;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.slide-content h1 {margin-top: 30px;
    font-family: 'font', sans-serif;
    text-shadow: 0 5px 0.2px rgba(0, 0, 0, 0.541);
    font-weight: 700;
    font-style:italic;
    font-size: 90px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 0.8;
}

.slide-content h2 {
    font-family: 'font', sans-serif;
    text-shadow: 0 5px 0.2px rgba(0, 0, 0, 0.541);
    font-weight: 700;
    font-style:italic;
    font-size: 30px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 0.8;
}

.slide-content p {
    text-shadow: 0 2px 0.2px rgba(0, 0, 0, 0.541);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 0.4;
}

.btn {
    display: inline-block;
    background: #0300b4;
    color: white;
    margin-top: 30px;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #0f13f1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Estilos para la tarjeta */

.socio-card-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

.socio-card {
    width: 400px;
    height: 300px;
    perspective: 1000px;
    cursor: pointer;
}


.socio-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.socio-card:hover .socio-card-inner {
    transform: rotateY(180deg);
}

.socio-card-front, 
.socio-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.socio-card-front {
    color: white;
}

.socio-card-back {
    color: white;
    transform: rotateY(180deg);
}

.socio-card img {
    width: 400px;
    height: 300px;
    margin-bottom: 15px;
    object-fit: contain;
}

.socio-card h3 {
    margin: 0;
    font-size: 1.2rem;
    text-align: center;
}

.socio-card-back p {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 15px;
}

.arrow-icon {
    font-size: 1.5rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

@media (max-width: 768px) {
    .socio-card {
      width: 60px;
      height: 40px;
    }
    
    .socio-card-back p {
      font-size: 12px;
      padding: 0 10px;
    }
  }
  
  @media (max-width: 480px) {
    .socio-card {
      width: 140px;
      height: 20px;
    }
    
    
    
    .socio-card img {
      width: 140px;
      margin-bottom: 10px;
    }
  }
  



/* Controles del slider */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Indicadores */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-indicators span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicators span.active {
    background: #0300b4;
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 992px) {
    .slide-content {
        width: 85%;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    #banner {
        height: 80vh;
    }
    
    .slide-content {
        padding: 1.2rem;
        width: 90%;
    }
    
    .slide-content h1 {
        font-size: 2.7rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        line-height: 1;
        letter-spacing: 1px;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
}

@media (max-width: 480px) {

    .logo {
        letter-spacing: 0px;
    }

    .slide-content .btn{
        padding: 10px;
        margin-top: 10px;
        margin-bottom: -50px;
    }

    .slide-content {
        width: 95%;
    }
    
    .slide-content h1 {
        text-shadow: 0 2px 0.2px rgba(0, 0, 0, 0.541);
        line-height: 30px;
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .slide-content h2{
        padding-bottom: 20px;
        letter-spacing: 1px;
        text-shadow: 0 2px 0.2px rgba(0, 0, 0, 0.541);
        font-size: 0.7rem;
    }
    
    
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
}
/* SOCIOS */
.bsocios {
    color: white;
    background-color: #ff4757;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.bsocios img{
    padding-right: 20px;
    width: 120px;
    height: 60px;
}

.bsocios h2{
    padding-right: 20px;
  font-weight: 700;
  font-style: italic;
}

@media (max-width: 768px) {
    .bsocios h2 {
        font-size: 1.6rem;
    }
    
    .bsocios h4 {
        font-size: 1.1rem;
    }
    
    .plan-container {
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .bsocios {
        padding: 1.5rem 0.5rem;
    }
    
    .bsocios h2 {
        padding-top: 10px;
        line-height: 25px;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .bsocios h4 {
        line-height: 15px;
        font-size: 1rem;
    }
    
    .plan-container {
        padding: 0 0.5rem;
    }
}

#socios {
    position: relative;
    padding: 60px 0;
    background: url('assets/socios.jpg') center/cover no-repeat;
}

#socios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 37, 105, 0.568);
    /* Color del club con transparencia */
}

#socios h2 {
    text-align: center;
    color: #f4f4f4;
}

#socios .planes {
    position: relative;
    z-index: 1;
}

.planes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.plan-card h3 {
    color: #0300b4;
    transition: color 0.3s ease;
}

/* CSS completo para la card mejorada */
.plan-card {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 280px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 15px;
    perspective: 1000px;
    transform-style: preserve-3d;
    cursor: pointer;
}

.plan-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.plan-header img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.plan-card:hover .plan-header img {
    transform: scale(1.8);
    margin-top: 20px;
    margin-bottom: 35px;
}

.plan-header h3 {
    color: #007bff;
    font-size: 1.5rem;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #062669;
    margin-bottom: 15px;
}

.plan-features p {
    margin: 12px 0;
    padding-left: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.plan-features p::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #007bff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.plan-card:hover .plan-features p::before {
    width: 8px;
    height: 8px;
    background: #062669;
}

.plan-cta {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #44ec3f, #15bb06);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(15, 71, 3, 0.3);
}

.plan-card:hover .plan-cta {
    bottom: 25px;
    opacity: 1;
}

.plan-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #ff4757;
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
    width: 120px;
    text-align: center;
    transition: all 0.3s ease;
}

.plan-card:hover .plan-badge {
    right: -25px;
}

/* Efecto hover 3D */
.plan-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Borde luminoso */
.plan-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0300b4, transparent);
    transition: all 0.6s ease;
}

.plan-card:hover::after {
    left: 100%;
}

/* HINCHAS - ACORDEÓN HORIZONTAL */
.bhinchas {
    color: white;
    background-color: #07208d;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.bhinchas img{
    padding-right: 20px;
    width: 120px;
    height: 60px;
}

.bhinchas h2{
    padding-right: 20px;
  font-weight: 700;
  font-style: italic;
}

@media (max-width: 768px) {
    
    .bhinchas h2 {
        font-size: 1.6rem;
    }
    
    .bhinchas h4 {
        font-size: 1.1rem;
    }
    
    .plan-container {
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .bhinchas {
        
        padding: 1.5rem 0.5rem;
    }
    
    .bhinchas h2 {
        
        font-size: 1.4rem;
    }
    
    .bhinchas h4 {
        line-height: 15px;
        font-size: 1rem;
    }
    
    .plan-container {
        padding: 0 0.5rem;
    }
}

/* SECCIÓN TESTIMONIOS CON SLIDER */
#hinchas {
    position: relative;
    padding: 80px 0;
    background: url('assets/testimonios.jpg') center/cover no-repeat;
    color: white;
    overflow: hidden;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 37, 105, 0.432);
}

.section-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonios-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 -15px;
}

.testimonios-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    margin: 0 15px;
    flex: 1;
    scrollbar-width: none; /* Firefox */
}

.testimonios-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.testimonio-card {
    scroll-snap-align: start;
    flex: 0 0 380px;
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #333;
    margin: 0 15px;
    height: auto;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-arrow i {
    transition: transform 0.3s ease;
}

.slider-arrow:hover i {
    transform: scale(1.2);
}

.prev-arrow {
    margin-right: 10px;
}

.next-arrow {
    margin-left: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Estilos existentes para el contenido de las cards (se mantienen igual) */
.testimonio-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonio-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #007bff;
    margin-right: 15px;
}

.testimonio-author h3 {
    color: #062669;
    margin: 0;
    font-size: 1.2rem;
}

.member-time {
    color: #666;
    font-size: 0.8rem;
    display: block;
    margin-top: 3px;
}

.testimonio-body p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #444;
}

.testimonio-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars {
    color: #FFD700;
    font-size: 1.1rem;
}

.date {
    color: #888;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonio-card {
        flex: 0 0 320px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .section-content {
        padding: 0 20px;
    }
    
    .testimonio-card {
        flex: 0 0 280px;
        padding: 20px;
    }
    
    .slider-arrow {
        display: none; /* Ocultar flechas en móviles */
    }
    
    .testimonios-slider {
        margin: 0;
        padding: 20px 10px;
    }
}
/* SECCIÓN CONTACTO MEJORADA */
#contacto {
    position: relative;
    background: url('assets/contacto.jpg') center/cover no-repeat;
    color: white;
    overflow: hidden;
    padding: 40px 20px 80px 20px;
    background-color: #f9f9f9;
}

.contacto-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.contacto-header h2 {
    font-size: 2.5rem;
    color: #062669;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contacto-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #007bff;
}

.contacto-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contacto-info, .contacto-form {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.info-card {
    padding: 30px;
}

.info-card h3 {
    color: #062669;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: #007bff;
}

.info-card p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.mapa-container {
    margin: 25px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.contacto-detalles {
    margin-top: 30px;
}

.detalle-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.detalle-item i {
    color: #007bff;
    font-size: 1.2rem;
    margin-top: 3px;
}

.detalle-item h4 {
    color: #062669;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.detalle-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Formulario */
.form-container {
    padding: 30px;
}

.form-container h3 {
    color: #062669;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-container p {
    color: #666;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #007bff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
    outline: none;
}

.submit-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.whatsapp-link {
    margin-top: 25px;
    text-align: center;
}

.whatsapp-link p {
    color: #666;
    margin-bottom: 10px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contacto-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
    
    .info-card, .form-container {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .contacto-header {
        margin-bottom: 30px;
    }
    
    .contacto-header h2 {
        font-size: 2rem;
    }
    
    .detalle-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .form-group input,
    .form-group textarea {
        padding-left: 15px;
    }
    
    .form-group i {
        display: none;
    }
}

@media (max-width: 480px) {
    #contacto {
        padding: 60px 15px;
    }
    
    .info-card, .form-container {
        padding: 20px;
    }
    
    .submit-btn, .whatsapp-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}


/* FOOTER */
footer {
    background-color: #0300b4;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.redes-sociales {
    margin-top: 10px;
}

.redes-sociales a {
    color: white;
    margin: 0 10px;
    font-size: 24px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.redes-sociales a:hover {
    transform: scale(1.2);
    color: #007bff;
}


/* RESPONSIVE */


@media (max-width: 768px) {

    /* Header y navegación */
    nav ul {
        display: none;
        flex-direction: column;
        background-color: #062669;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 10px 0;
    }

    nav ul li {
        text-align: center;
        padding: 10px;
    }

    .menu-icon {
        display: block;
        color: white;
        font-size: 24px;
        cursor: pointer;
    }

    .menu-icon:hover {
        color: #007bff;
    }

    .nav-active ul {
        display: flex;
    }

    /* Banner */
    #banner {
        height: 50vh;
    }

    .banner-cont img {
        height: 50vh;
    }

    .banner-text {
        margin-top: 30px;
        width: 80%;
        padding: 10px;
    }

    .banner-text h1 {
        font-size: 24px;
    }

    /* Socios */
    .planes {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        width: 90%;
    }

    /* Hinchas */
    .hinchas-container {
        flex-direction: column;
        align-items: center;
    }

    .hinchas-card {
        width: 90%;
    }

    /*Contacto*/
    .contacto-container {
        flex-direction: column;
        text-align: center;
    }

    .info-contacto {
        text-align: center;
    }

    /* Footer */
    .redes-sociales a {
        font-size: 20px;
    }

}

/* Contenedor principal */
.contacto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Contenedor flexible para el mapa y el formulario */
.contacto-columnas {
    display: flex;
    gap: 20px;
    /* Espacio entre el mapa y el formulario */
    margin-top: 20px;
}

/* Estilos para el mapa */
.mapa {
    flex: 1;
    /* Ocupa la mitad del espacio disponible */
}

.mapa iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    /* Altura mínima para el mapa */
    border: none;
    border-radius: 10px;
}

/* Estilos para el formulario */
form {
    flex: 1;
    /* Ocupa la otra mitad del espacio disponible */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form input,
form textarea,
form button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #0056b3;
}

/* Estilos para el botón de WhatsApp */
.whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 150px;
    height: 150px;
    z-index: 100;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    border-radius: 50%;
    overflow: hidden;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    animation: none;
}

/* Animación de pulso */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive */


@media (max-width: 480px) {
    .whatsapp-float {
        width: 200px;
        height: 200px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 150px;
        height: 150px;
        bottom: 20px;
        right: 20px;
    }
}




.fullscreen-image {
    /* Técnica de fondo responsive */
    background-image: url('./assets/lbdf.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* Cubre todo el contenedor */
    background-attachment: fixed; /* Opcional: efecto parallax */
    
    /* Dimensiones completas */
    width: 100%;
    height: 100vh; /* 100% del viewport height */
    
}

/* Contenido sobre la imagen (opcional) */
.content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 80%;
}

/* Media Query para móviles en orientación horizontal */
@media (max-height: 500px) and (orientation: landscape) {
    .fullscreen-image {
        background-attachment: scroll;
        height: 150vh; /* Ajuste especial para móviles horizontales */
    }
}

/* Efectos de Scroll */
html {
    scroll-behavior: smooth;
}

/* Scroll Progress Indicator */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: transparent;
    z-index: 1001;
}

.progress-bar {
    height: 5px;
    background: linear-gradient(90deg, #0300b4, #00a8ff);
    width: 0%;
    transition: width 0.1s ease;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Effects */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Efectos específicos para secciones */
#socios .plan-card {
    transition-delay: calc(0.1s * var(--i));
}

.testimonio-card {
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.testimonio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Efecto de escalado suave al hacer scroll */
.scale-on-scroll {
    transition: transform 0.5s ease;
}

.scale-on-scroll.active {
    transform: scale(1.05);
}