
/* RESET */
*{margin:0;padding:0;box-sizing:border-box;}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f6fa;
    color:#222;
}

/* ===== PRELOADER PRO ===== */
#preloader{
    position:fixed;
    width:100%;
    height:100%;
    background:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

#preloader img{
    width:120px;
    margin-bottom:20px;
}

.loader-bar{
    width:200px;
    height:6px;
    background:#eee;
    border-radius:10px;
    overflow:hidden;
}

.loader-bar span{
    display:block;
    height:100%;
    width:0%;
    background:linear-gradient(90deg,#ff0000,#0057ff);
    animation:loading 2s linear forwards;
}

@keyframes loading{
    from{width:0;}
    to{width:100%;}
}

/* ===== HEADER ===== */
header{
    text-align:center;
    padding:30px 20px;
}

header img{
    height:80px;
}

/* ===== HERO ===== */
.hero{
    height:420px;
    background:
    linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
    url('../fondo.png') center/cover;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.hero h1{
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
}

.hero p{
    font-size:18px;
    opacity:0.9;
}

/* ===== BOTÓN CLUB ===== */
.club-container{
    text-align:center;
    margin-top:-30px;
}

.btn-club{
    display:inline-block;
    padding:16px 30px;
    font-size:18px;
    font-weight:600;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    background:linear-gradient(135deg,#ff0000,#0057ff);
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
    transition:0.3s;
    animation:pulse 2s infinite;
}

.btn-club:hover{
    transform:scale(1.05);
}

/* ===== SECTIONS ===== */
.section{
    padding:60px 20px;
    max-width:1100px;
    margin:auto;
}

.card{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    margin-bottom:20px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

h2{
    margin-bottom:10px;
    font-weight:600;
}

/* ===== WHATSAPP ===== */
.whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25d366;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
    animation:pulse 1.5s infinite;
}

.whatsapp img{
    width:28px;
}

/* ===== FOOTER ===== */
footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:20px;
}

/* ===== ANIMACIONES ===== */
@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.08);}
    100%{transform:scale(1);}
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
.hero h1{font-size:24px;}
.hero p{font-size:15px;}
}
	
	/* ===== MAPA PRO ===== */
.map-container{
    position:relative;
    width:100%;
    height:320px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    margin-top:15px;
}

/* iframe */
.map-container iframe{
    width:100%;
    height:100%;
    border:0;
}

/* overlay suave para estética */
.map-container::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to top, rgba(0,0,0,0.15), transparent 40%);
    pointer-events:none;
    border-radius:18px;
}
	/* ===== HORARIOS PRO ===== */
.horario-box{
    text-align:center;
    padding:15px;
    border-radius:15px;
    background:#f9f9f9;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.estado{
    font-weight:700;
    padding:10px;
    border-radius:10px;
    display:inline-block;
}

.estado.abierto{
    background:#e9f9ef;
    color:#1e9e52;
}

.estado.cerrado{
    background:#fdeaea;
    color:#d93025;
}
.banner-galvan{
    position:relative;
    width:100%;
    height:300px;
    overflow:hidden;
    border-radius:12px;
    margin-bottom:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.12); /* 👈 le da separación visual */
}

/* SLIDES */
.slides{
    position:absolute;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transform:scale(1.1);
    transition:opacity 1s ease, transform 6s ease;
}

.slide.active{
    opacity:1;
    transform:scale(1);
}

/* OVERLAY OSCURO */
.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(to right, rgba(0,0,0,.6), rgba(0,0,0,.2));
    z-index:2;
}

/* CONTENIDO */
.contenido{
    position:absolute;
    z-index:3;
    color:#fff;
    left:40px;
    top:50%;
    transform:translateY(-50%);
}

.logo{
    height:50px;
    background:#fff;
    padding:5px 10px;
    border-radius:6px;
}

.contenido h2{
    font-size:28px;
    margin:0;
    font-weight:bold;
    letter-spacing:2px;
}

.contenido p{
    margin:5px 0 0;
    font-size:14px;
    opacity:.9;
}

/* MOBILE */
@media(max-width:768px){
    .contenido{
        left:20px;
    }
    .contenido h2{
        font-size:20px;
    }
}
/* ===== CONSULTA PUNTOS PRO ===== */

.titulo-puntos{
    text-align:center;
    font-weight:700;
}

.sub{
    text-align:center;
    color:#777;
    margin-bottom:25px;
}

/* FORM */
.form-puntos{
    max-width:350px;
    margin:0 auto;
}

/* INPUT PRO */
.input-group-pro{
    display:flex;
    align-items:center;
    background:#f8f9fc;
    border-radius:12px;
    padding:10px 12px;
    margin-bottom:12px;
    border:1px solid #eee;
    transition:0.3s;
}

.input-group-pro span{
    margin-right:10px;
    font-size:18px;
    opacity:0.6;
}

.input-group-pro input{
    border:none;
    outline:none;
    background:transparent;
    width:100%;
    font-size:15px;
}

/* FOCUS */
.input-group-pro:focus-within{
    border:1px solid #0057ff;
    box-shadow:0 0 0 3px rgba(0,87,255,0.1);
    background:#fff;
}

/* BOTÓN PRO */
.btn-consulta-pro{
    width:100%;
    padding:14px;
    border:none;
    border-radius:14px;
    font-weight:600;
    color:#fff;
    margin-top:10px;

    background:linear-gradient(135deg,#ff0000,#0057ff);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);

    transition:0.3s;
}

.btn-consulta-pro:hover{
    transform:scale(1.03);
}

/* RESULTADO */
.resultado-pro{
    margin-top:20px;
    text-align:center;
    padding:18px;
    border-radius:14px;
    display:none;
    font-size:16px;
    font-weight:600;
    background:#f5f7ff;
}
	
	
/* ===== HEADER PRO ===== */

.header-pro{
    position:sticky;
    top:0;
    background:#fff;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.container-header{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 20px;
}

.logo-header img{
    height:50px;
}

/* MENU */
.menu{
    display:flex;
    gap:25px;
}

.menu a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    position:relative;
}

.menu a::after{
    content:"";
    position:absolute;
    bottom:-5px;
    left:0;
    width:0%;
    height:2px;
    background:#0057ff;
    transition:0.3s;
}

.menu a:hover::after{
    width:100%;
}

/* HAMBURGER */
.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:25px;
    height:3px;
    background:#333;
}

/* MOBILE */
@media(max-width:768px){

.menu{
    position:fixed;
    top:0;
    right:-100%;
    width:260px;
    height:100%;
    background:#fff;
    flex-direction:column;
    padding:80px 20px;
    transition:0.3s;
    box-shadow:-5px 0 20px rgba(0,0,0,0.1);
}

.menu.active{
    right:0;
}

.hamburger{
    display:flex;
}

}

/* ===== FOOTER PRO ===== */

.footer-pro{
    background:#0d0d0d;
    color:#fff;
    padding:40px 20px;
    text-align:center;
}

.footer-logo{
    height:60px;
    margin-bottom:15px;
}

.footer-menu{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin:15px 0;
}

.footer-menu a{
    color:#ccc;
    text-decoration:none;
}

.footer-menu a:hover{
    color:#fff;
}

.footer-text{
    margin-top:10px;
    font-size:14px;
    opacity:0.7;
}

.powered{
    margin-top:10px;
    font-size:13px;
    color:#888;
}

/* ===== CONTACTO PRO ===== */

.contacto-texto{
    text-align:center;
    color:#555;
    margin-bottom:20px;
}

.contacto-lista{
    list-style:none;
    padding:0;
    margin:20px 0;
}

.contacto-lista li{
    padding:8px 0;
    font-size:15px;
}

/* BOTÓN */
.btn-contacto{
    display:block;
    text-align:center;
    padding:14px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    color:#fff;
    margin-top:15px;

    background:linear-gradient(135deg,#25d366,#128c7e);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);

    transition:0.3s;
}

.btn-contacto:hover{
    transform:scale(1.03);
}