
*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:Arial,sans-serif;background:#ffffff;}

.header{
  background:#9aa39c;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:30px 60px;
}

.logo-top{display:flex;gap:15px;align-items:center;}
.elite{font-size:48px;font-weight:900;color:#111;}
.personal{font-size:18px;letter-spacing:6px;color:#111;}
.guadix{font-size:20px;}

.menu ul{display:flex;list-style:none;gap:40px;}
.menu ul li a{text-decoration:none;color:rgb(48, 44, 44);letter-spacing:2px;font-size:14px;}

.menu-toggle{display:none;flex-direction:column;gap:6px;cursor:pointer;}
.menu-toggle span{width:25px;height:2px;background:white;}

.overlay{
  position:fixed;
  inset:0;
  background:#9aa39c;
  display:flex;
  justify-content:center;
  align-items:center;
  transform:translateY(-100%);
  transition:.4s ease;
  z-index:2000;
}
.overlay.active{transform:translateY(0);}
.overlay ul{list-style:none;text-align:center;}
.overlay li{margin:35px 0;}
.overlay a{text-decoration:none;color:white;font-size:24px;letter-spacing:4px;}
.close-btn{position:absolute;top:30px;right:30px;font-size:28px;color:white;cursor:pointer;}

.hero{
  height:90vh;
  background:linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)), url('../img/hero.jpg') center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:white;
}
.hero h1{font-size:48px;}
.hero p{margin-top:15px;letter-spacing:3px;}
.btn{display:inline-block;margin-top:25px;padding:12px 30px;background:#9aa39c;color:white;text-decoration:none;letter-spacing:2px;}

@media(max-width:1024px){
  .menu{display:none;}
  .menu-toggle{display:flex;}
  .header{padding:20px 30px;}
  .elite{font-size:32px;}
}
.social-section{
  background:#9aa39c;
  padding:35px 15px;   /* mucho más fino */
  text-align:center;
}

.social-title{
  color:white;
  letter-spacing:10px;
  font-size:12px;
  font-weight:300;
  margin-bottom:25px;
  opacity:0.8;
}

.social-links{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.social-item{
  text-decoration:none;
  color:white;
  font-size:13px;
  letter-spacing:6px;
  font-weight:300;
  position:relative;
  padding-bottom:6px;
  opacity:0.85;
  transition:0.3s ease;
}

.social-item::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:60px;     /* línea más corta */
  height:1px;
  background:rgba(255,255,255,0.25);  /* más sutil */
}

.social-item:hover{
  opacity:0.6;
}

/* Desktop */
@media(min-width:768px){

  .social-links{
    flex-direction:row;
    justify-content:center;
    gap:60px;
  }

  .social-item::after{
    width:70%;
    left:15%;
    transform:none;
  }
}
.menu ul li a{
  position:relative;
  text-decoration:none;
  color:white;
  letter-spacing:2px;
  font-size:13px;     /* más pequeño */
  font-weight:300;    /* más fino */
  padding-bottom:5px;
  transition:0.3s ease;
}

/* Línea hover */
.menu ul li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:1px;
  background:#111;
  transition:0.3s ease;
}

.menu ul li a:hover::after{
  width:100%;
}
.about-granada{
  background:#f5f3ef;
  padding:60px 20px;
}

.about-container{
  display:flex;
  flex-direction:column;
  gap:40px;
  max-width:1200px;
  margin:0 auto;
}

.about-image img{
  width:100%;
  height:auto;
  display:block;
}

.about-content h2{
  font-size:28px;
  line-height:1.2;
  margin-bottom:20px;
  color:#111;
}

.about-content p{
  font-size:16px;
  line-height:1.7;
  margin-bottom:18px;
  color:#333;
}

.about-btn{
  display:inline-block;
  margin-top:10px;
  padding:12px 25px;
  background:#111;
  color:white;
  text-decoration:none;
  border-radius:30px;
  font-size:14px;
  letter-spacing:2px;
  transition:0.3s ease;
}

.about-btn:hover{
  background:#333;
}

/* DESKTOP */
@media(min-width:768px){

  .about-container{
    flex-direction:row;
    align-items:center;
    gap:80px;
  }

  .about-image{
    flex:1;
  }

  .about-content{
    flex:1;
  }

  .about-content h2{
    font-size:42px;
  }

}
.brands{
  background:#efefef;
  padding:30px 0;
  overflow:hidden;
}

.brands-track{
  display:flex;
  gap:80px;
  width:max-content;
  animation:scroll 25s linear infinite;
}

.brands img{
  height:40px;
  opacity:0.6;
  transition:0.3s ease;
}

.brands img:hover{
  opacity:1;
}

/* Animación infinita */
@keyframes scroll{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/* Responsive */
@media(max-width:768px){
  .brands-track{
    gap:50px;
    animation:scroll 18s linear infinite;
  }

  .brands img{
    height:28px;
  }
}
.movement{
  background:#eef0ec;
  padding:70px 20px;
  text-align:center;
}

.movement-container{
  max-width:1200px;
  margin:0 auto;
}

.movement-intro h2{
  font-size:22px;
  margin-bottom:10px;
  color:#333;
}

.movement-intro h3{
  font-size:28px;
  font-style:italic;
  color:#8f9792;
  margin-bottom:25px;
}

.movement-intro p{
  font-size:16px;
  line-height:1.7;
  color:#444;
  max-width:700px;
  margin:0 auto 40px auto;
}

.divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
  font-size:13px;
  letter-spacing:2px;
  margin-bottom:50px;
}

.divider::before,
.divider::after{
  content:"";
  width:50px;
  height:1px;
  background:#bbb;
}

.movement-grid{
  display:flex;
  flex-direction:column;
  gap:50px;
}

.movement-card{
  padding:10px;
}

.circle{
  width:90px;
  height:90px;
  border-radius:50%;
  background:#ddd;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px auto;
  font-size:20px;
  font-weight:600;
}

.movement-card h4{
  font-size:20px;
  margin-bottom:10px;
  color:#333;
}

.movement-card p{
  font-size:15px;
  color:#555;
  margin-bottom:20px;
}

.movement-btn{
  display:inline-block;
  padding:8px 20px;
  border:1px solid #333;
  text-decoration:none;
  color:#333;
  font-size:13px;
  transition:0.3s ease;
}

.movement-btn:hover{
  background:#333;
  color:white;
}

/* Desktop */
@media(min-width:768px){

  .movement-intro h2{
    font-size:28px;
  }

  .movement-intro h3{
    font-size:42px;
  }

  .movement-grid{
    flex-direction:row;
    justify-content:center;
    gap:80px;
  }

}
.bonos{
  background:#e9e4db;
  padding:80px 20px;
  text-align:center;
}

.bonos-container{
  max-width:900px;
  margin:0 auto;
}

.bonos-subtitle{
  font-size:14px;
  letter-spacing:3px;
  color:#7f8b86;
  margin-bottom:15px;
}

.bonos-title{
  font-size:34px;
  margin-bottom:20px;
  color:#333;
}

.bonos-text{
  font-size:16px;
  line-height:1.7;
  color:#555;
  margin-bottom:40px;
}

.bonos-btn{
  display:inline-block;
  padding:16px 45px;
  background:linear-gradient(135deg,#1f3a33,#2e5046);
  color:white;
  text-decoration:none;
  border-radius:50px;
  font-size:14px;
  letter-spacing:2px;
  transition:0.3s ease;
}

.bonos-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

/* Desktop */
@media(min-width:768px){

  .bonos-title{
    font-size:56px;
  }

  .bonos-subtitle{
    font-size:16px;
  }

  .bonos-text{
    font-size:18px;
  }

}
.equipo{
  background:#8f9792;
  padding:80px 20px;
  text-align:center;
  color:white;
}

.equipo-container{
  max-width:1200px;
  margin:0 auto;
}

.equipo-header h2{
  font-size:22px;
  margin-bottom:10px;
  font-weight:300;
}

.equipo-header h3{
  font-size:32px;
  margin-bottom:25px;
  letter-spacing:2px;
}

.equipo-header p{
  font-size:16px;
  line-height:1.7;
  max-width:750px;
  margin:0 auto 35px auto;
  color:rgba(255,255,255,0.9);
}

.equipo-btn{
  display:inline-block;
  padding:12px 30px;
  background:#111;
  color:white;
  text-decoration:none;
  font-size:14px;
  letter-spacing:2px;
  transition:0.3s ease;
}

.equipo-btn:hover{
  background:#333;
}

.equipo-grid{
  margin-top:50px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.equipo-grid img{
  width:100%;
  height:auto;
  display:block;
}

/* Desktop */
@media(min-width:768px){

  .equipo-header h2{
    font-size:28px;
  }

  .equipo-header h3{
    font-size:48px;
  }

  .equipo-grid{
    flex-direction:row;
    gap:40px;
  }

  .equipo-grid img{
    width:33.33%;
  }

}
.bonos-granada{
  position:relative;
  padding:100px 20px;
  background:url("../img/bonos-bg.jpg") center/cover no-repeat;
  color:white;
}

.bonos-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

.bonos-container{
  position:relative;
  max-width:1200px;
  margin:0 auto;
}

.bonos-header{
  text-align:center;
  margin-bottom:60px;
}

.bonos-header h2{
  font-size:28px;
  line-height:1.3;
  margin-bottom:20px;
}

.bonos-tag{
  display:inline-block;
  padding:8px 20px;
  background:white;
  color:#111;
  font-size:12px;
  letter-spacing:2px;
}

.bonos-grid{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.bono-card{
  background:white;
  color:#333;
  padding:25px;
  border-radius:6px;
  transition:0.3s ease;
}

.bono-card h3{
  font-size:18px;
  margin-bottom:10px;
}

.bono-card p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:15px;
}

.bono-card a{
  font-size:14px;
  font-weight:bold;
  text-decoration:underline;
  color:#111;
}

.bono-card:hover{
  transform:translateY(-5px);
}

.destacado{
  border:2px solid #8f9792;
}

/* Desktop */
@media(min-width:768px){

  .bonos-header h2{
    font-size:46px;
  }

  .bonos-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:40px;
  }

}
.nutricion{
  background:#2e2e2e;
  color:white;
  padding:80px 20px;
}

.nutricion-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:40px;
}

.nutricion-tag{
  font-size:14px;
  letter-spacing:3px;
  color:#9aa39c;
}

.nutricion-content h2{
  font-size:32px;
  margin:10px 0;
  line-height:1.2;
}

.nutricion-content h3{
  font-size:18px;
  margin-bottom:20px;
  font-weight:400;
  color:#ddd;
}

.nutricion-content p{
  font-size:15px;
  line-height:1.7;
  color:#ccc;
  margin-bottom:25px;
}

.nutricion-btn{
  display:inline-block;
  padding:10px 25px;
  border:1px solid white;
  text-decoration:none;
  color:white;
  font-size:14px;
  transition:0.3s ease;
}

.nutricion-btn:hover{
  background:white;
  color:#111;
}

.nutricion-image img{
  width:100%;
  height:auto;
  display:block;
}

/* Desktop */
@media(min-width:768px){

  .nutricion-container{
    flex-direction:row;
    align-items:center;
    gap:80px;
  }

  .nutricion-content{
    flex:1;
  }

  .nutricion-image{
    flex:1;
  }

  .nutricion-content h2{
    font-size:48px;
  }

}
.opiniones{
  background:#f3f2ee;
  padding:80px 20px;
}

.opiniones-container{
  max-width:1200px;
  margin:0 auto;
}

.opiniones-title{
  text-align:center;
  font-size:26px;
  margin-bottom:50px;
  color:#333;
}

.opiniones-grid{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.opinion-card{
  background:white;
  padding:30px;
  border-radius:8px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  transition:0.3s ease;
}

.opinion-card:hover{
  transform:translateY(-5px);
}

.opinion-card h3{
  font-size:18px;
  margin-bottom:5px;
  color:#111;
}

.opinion-meta{
  font-size:13px;
  color:#777;
  display:block;
  margin-bottom:15px;
}

.opinion-card p{
  font-size:15px;
  line-height:1.7;
  color:#444;
}

/* Desktop */
@media(min-width:768px){

  .opiniones-title{
    font-size:40px;
  }

  .opiniones-grid{
    flex-direction:row;
    gap:40px;
  }

  .opinion-card{
    width:33.33%;
  }

}
.footer-granada{
  background:#3a3a3a; /* gris elegante */
  color:white;
  padding:60px 20px 30px;
}

.footer-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:40px;
}

.footer-logo img{
  width:140px;
}

.footer-col h3{
  font-size:18px;
  margin-bottom:15px;
}

.footer-col p,
.footer-col a,
.footer-col li{
  font-size:14px;
  color:rgba(255,255,255,0.85);
  line-height:1.6;
  text-decoration:none;
}

.footer-phone{
  display:inline-block;
  margin-top:10px;
  padding:8px 15px;
  background:#8f9792;
  color:#111;
  text-decoration:none;
}

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

.footer-col ul li{
  margin-bottom:8px;
}

.footer-text{
  max-width:1000px;
  margin:40px auto 20px;
  font-size:14px;
  color:rgba(255,255,255,0.8);
}

.footer-bottom{
  text-align:center;
  font-size:13px;
  color:rgba(255,255,255,0.6);
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:20px;
}

/* Desktop */
@media(min-width:768px){

  .footer-container{
    flex-direction:row;
    justify-content:space-between;
  }

  .footer-col{
    width:30%;
  }

}
.whatsapp-btn{
  position:fixed;
  bottom:20px;
  left:20px;
  width:60px;
  height:60px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
  transition:0.3s ease;
  z-index:9999;
}

.whatsapp-btn:hover{
  transform:scale(1.1);
}
.hero-granada{
  position:relative;
  min-height:80vh;
  background:url("../img/hero-conocenos.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  padding:60px 20px;
  color:white;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.hero-content{
  position:relative;
  max-width:900px;
}

.hero-content h1{
  font-size:32px;
  line-height:1.2;
  margin-bottom:20px;
}

.hero-content p{
  font-size:16px;
  line-height:1.6;
  margin-bottom:30px;
  color:rgba(255,255,255,0.9);
}

.hero-btn{
  display:inline-block;
  padding:14px 30px;
  background:white;
  color:#111;
  text-decoration:none;
  font-weight:600;
  letter-spacing:1px;
  transition:0.3s ease;
}

.hero-btn:hover{
  background:#9aa39c;
  color:white;
}

/* Desktop */
@media(min-width:768px){

  .hero-content h1{
    font-size:56px;
  }

  .hero-content p{
    font-size:18px;
  }

}
.metodo-elite{
  background:#f2f2ee;
  padding:80px 20px;
}

.metodo-container{
  max-width:1100px;
  margin:0 auto;
}

.metodo-title{
  text-align:center;
  font-size:28px;
  margin-bottom:60px;
  color:#333;
}

.metodo-grid{
  display:flex;
  flex-direction:column;
  gap:40px;
}

.metodo-item{
  display:flex;
  gap:20px;
  align-items:flex-start;
}

.numero{
  font-size:40px;
  font-weight:700;
  color:#9aa39c;
  min-width:70px;
}

.metodo-item p{
  font-size:15px;
  line-height:1.7;
  color:#444;
}

.metodo-btn{
  text-align:center;
  margin-top:60px;
}

.metodo-btn a{
  display:inline-block;
  padding:14px 35px;
  background:#333;
  color:white;
  text-decoration:none;
  transition:0.3s ease;
}

.metodo-btn a:hover{
  background:#8f9792;
}

/* Desktop */
@media(min-width:768px){

  .metodo-title{
    font-size:42px;
  }

  .metodo-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;
  }

  .numero{
    font-size:60px;
  }

}
.movement-granada{
  position:relative;
  padding:100px 20px;
  background:url("../img/movement-granada.jpg") center/cover no-repeat;
  color:white;
  text-align:center;
}

.movement-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

.movement-content{
  position:relative;
  max-width:900px;
  margin:0 auto;
}

.movement-content h2{
  font-size:30px;
  margin-bottom:25px;
}

.movement-text{
  font-size:15px;
  line-height:1.8;
  margin-bottom:20px;
  color:rgba(255,255,255,0.9);
}

.movement-values{
  margin-top:60px;
  display:flex;
  flex-direction:column;
  gap:25px;
}

.value-item span{
  font-size:16px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#dcdcdc;
}

/* Desktop */
@media(min-width:768px){

  .movement-content h2{
    font-size:48px;
  }

  .movement-text{
    font-size:18px;
  }

  .movement-values{
    flex-direction:row;
    justify-content:center;
    gap:60px;
  }

}
.entreno-granada{
  background:#f3f2ee;
  padding:80px 20px;
}

.entreno-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:40px;
}

.entreno-texto h2{
  font-size:30px;
  margin-bottom:15px;
  color:#8f9792;
}

.entreno-sub{
  font-weight:600;
  margin-bottom:20px;
}

.entreno-texto p{
  font-size:15px;
  line-height:1.7;
  margin-bottom:20px;
  color:#444;
}

.entreno-datos{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:20px;
}

.dato{
  font-size:15px;
  font-weight:500;
}

.entreno-btn{
  display:inline-block;
  padding:14px 30px;
  background:#8f9792;
  color:white;
  text-decoration:none;
  transition:0.3s ease;
}

.entreno-btn:hover{
  background:#333;
}

.entreno-img img{
  width:100%;
  height:auto;
  display:block;
}

/* Desktop */
@media(min-width:768px){

  .entreno-container{
    flex-direction:row;
    align-items:center;
    gap:80px;
  }

  .entreno-texto{
    flex:1;
  }

  .entreno-img{
    flex:1;
  }

  .entreno-texto h2{
    font-size:46px;
  }

}
.grupal-granada{
  background:#f3f2ee;
  padding:80px 20px;
}

.grupal-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:40px;
}

.grupal-texto h2{
  font-size:30px;
  margin-bottom:15px;
  color:#8f9792;
}

.grupal-sub{
  font-weight:600;
  margin-bottom:20px;
}

.grupal-texto p{
  font-size:15px;
  line-height:1.7;
  margin-bottom:20px;
  color:#444;
}

.grupal-datos{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:20px;
}

.dato{
  font-size:15px;
  font-weight:500;
}

.grupal-btn{
  display:inline-block;
  padding:14px 30px;
  background:#8f9792;
  color:white;
  text-decoration:none;
  transition:0.3s ease;
}

.grupal-btn:hover{
  background:#333;
}

.grupal-img img{
  width:100%;
  height:auto;
  display:block;
}

/* Desktop */
@media(min-width:768px){

  .grupal-container{
    flex-direction:row;
    align-items:center;
    gap:80px;
  }

  .grupal-texto{
    flex:1;
  }

  .grupal-img{
    flex:1;
  }

  .grupal-texto h2{
    font-size:46px;
  }

}
.planifica-granada{
  background:#f3f2ee;
  padding:80px 20px;
}

.planifica-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:40px;
}

.planifica-texto h2{
  font-size:30px;
  margin-bottom:15px;
  color:#8f9792;
}

.planifica-sub{
  font-weight:600;
  margin-bottom:20px;
}

.planifica-texto p{
  font-size:15px;
  line-height:1.7;
  margin-bottom:20px;
  color:#444;
}

.planifica-btn{
  display:inline-block;
  padding:14px 30px;
  background:#8f9792;
  color:white;
  text-decoration:none;
  transition:0.3s ease;
}

.planifica-btn:hover{
  background:#333;
}

.planifica-img img{
  width:100%;
  height:auto;
  display:block;
}

/* Desktop */
@media(min-width:768px){

  .planifica-container{
    flex-direction:row;
    align-items:center;
    gap:80px;
  }

  .planifica-texto{
    flex:1;
  }

  .planifica-img{
    flex:1;
  }

  .planifica-texto h2{
    font-size:46px;
  }

}
.servicios{
  padding:80px 20px;
  background:#f3f2ee;
}

.servicios-grid{
  display:flex;
  flex-direction:column;
  gap:40px;
  max-width:1200px;
  margin:0 auto;
}

/* TARJETA */
.servicio-card{
  background:white;
  padding:40px;
  border-radius:25px;
  border-left:6px solid #8f9792;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.servicio-card h3{
  font-size:26px;
  margin-bottom:20px;
  font-weight:700;
}

/* META INFO */
.servicio-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:15px;
  margin-bottom:20px;
}

.badge{
  background:#8f9792;
  color:white;
  padding:6px 12px;
  border-radius:8px;
  font-size:14px;
}

.tipo{
  background:#222;
  color:white;
  padding:6px 12px;
  border-radius:8px;
  font-size:14px;
}

.tipo.grupo{
  background:#ddd;
  color:#333;
}

.personas{
  font-size:14px;
}

.categoria{
  font-weight:600;
  font-size:14px;
}

.servicio-card p{
  font-size:16px;
  line-height:1.7;
  color:#444;
}

/* DESKTOP */
@media(min-width:900px){

  .servicios-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:60px;
  }

}
.reserva-title{
  font-size:36px;
  text-align:center;
  color:#8f9792;
}

.reserva-title span{
  display:block;
  font-size:22px;
  color:#333;
  margin-top:10px;
}
/* ====== SECCIÓN PLANES ====== */

.planes-modern {
  padding: 80px 20px;
  background: #f4f4f2;
}

.planes-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ====== TARJETAS ====== */

.plan {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px; /* TODAS MISMA ALTURA */
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Título */
.plan h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Precio */
.price {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Texto */
.plan p {
  font-size: 15px;
  line-height: 1.5;
  flex-grow: 1;
}

/* Link */
.plan a {
  margin-top: 20px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #000;
  width: fit-content;
}

/* ====== PLAN DESTACADO (MISMO TAMAÑO) ====== */

.plan.featured {
  background: #8e9a94;
  color: white;
}

.plan.featured a {
  border-bottom: 2px solid white;
  color: white;
}

.plan .tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: black;
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ====== RESPONSIVE ====== */

@media (max-width: 1100px) {
  .planes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .planes-grid {
    grid-template-columns: 1fr;
  }

  .plan {
    min-height: auto; /* en móvil que crezcan según texto */
  }

  .price {
    font-size: 36px;
  }
}
/* ===== HERO RESERVA ===== */

.reserva-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  border-radius: 30px;
  overflow: hidden;

  /* Fondo degradado moderno */
  background: linear-gradient(135deg, #f4c29a, #e88d57);
}

/* Overlay suave para profundidad */
.reserva-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.05);
}

/* Contenido */
.reserva-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* Subtítulo */
.reserva-content h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #333;
}

/* Título grande */
.reserva-content h1 {
  font-size: 64px;
  font-weight: 800;
  color: white;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

/* Botón */
.btn-reserva {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, #ff7a18, #ff512f);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn-reserva:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

  .reserva-content h1 {
    font-size: 38px;
  }

  .reserva-content h2 {
    font-size: 16px;
  }

  .btn-reserva {
    padding: 14px 35px;
    font-size: 16px;
  }

  .reserva-hero {
    min-height: 60vh;
    border-radius: 20px;
  }
}
.instalaciones-granada{
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;

  background: url("../img/gimnasio-granada.jpg") center/cover no-repeat;
}

/* Overlay elegante */
.instalaciones-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
}

/* Contenido */
.instalaciones-content{
  position: relative;
  z-index: 2;
  color: white;
  max-width: 900px;
}

/* Número gigante */
.metros{
  font-size: clamp(70px, 10vw, 150px);
  font-weight: 800;
  margin: 0;
  letter-spacing: -2px;
}

/* Texto secundario */
.subtexto{
  font-size: clamp(20px, 3vw, 32px);
  margin: 20px 0 40px 0;
  font-weight: 500;
  opacity: 0.9;
}

/* Botón moderno */
.btn-instalaciones{
  display: inline-block;
  padding: 16px 40px;
  background: white;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-instalaciones:hover{
  transform: translateY(-3px);
  background: #f2f2f2;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Responsive */
@media(max-width:768px){

  .instalaciones-granada{
    min-height: 60vh;
    padding: 60px 20px;
  }

  .subtexto{
    margin-bottom: 30px;
  }
}
.espacio-granada{
  padding: 120px 20px;
  background: linear-gradient(to bottom, #f6f6f6 0%, #eef0ef 100%);
  text-align: center;
}

.espacio-container{
  max-width: 900px;
  margin: auto;
}

.espacio-title{
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 40px;
  color: #7f8c86;
  letter-spacing: -1px;
}

.espacio-title span{
  font-style: italic;
  font-weight: 600;
}

.espacio-texto{
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.8;
  color: #333;
}

.espacio-texto strong{
  font-weight: 600;
}
.instalaciones-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 100px 40px;
  background: #f6f6f6;
}

.instalacion-card{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 420px;
  cursor: pointer;
}

.instalacion-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay oscuro elegante */
.instalacion-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
}

/* Texto */
.instalacion-content{
  position: absolute;
  bottom: 40px;
  left: 30px;
  right: 30px;
  color: white;
  z-index: 2;
}

.instalacion-content h3{
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.instalacion-content p{
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Hover moderno */
.instalacion-card:hover img{
  transform: scale(1.08);
}

/* Responsive */
@media(max-width: 992px){
  .instalaciones-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 768px){
  .instalaciones-grid{
    grid-template-columns: 1fr;
    padding: 60px 20px;
  }

  .instalacion-card{
    min-height: 360px;
  }
}
.blog-granada{
  padding: 120px 40px;
  background: #f7f7f7;
}

.blog-header{
  text-align: center;
  margin-bottom: 60px;
}

.blog-header h2{
  font-size: clamp(32px,5vw,52px);
  font-weight: 700;
  margin-bottom: 30px;
}

/* Filtros modernos */
.blog-filtros{
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.blog-filtros button{
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  background: #e6e6e6;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.blog-filtros button.activo{
  background: #8f9792;
  color: white;
}

.blog-filtros button:hover{
  background: #cfcfcf;
}

/* Grid moderno */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card moderna */
.blog-card{
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transition: 0.4s;
}

.blog-card img{
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-content{
  padding: 30px;
}

.blog-content h3{
  font-size: 22px;
  margin-bottom: 15px;
}

.blog-content p{
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-content a{
  text-decoration: none;
  font-weight: 600;
  color: #111;
}

.blog-card:hover{
  transform: translateY(-8px);
}

/* Responsive */
@media(max-width: 992px){
  .blog-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 768px){
  .blog-grid{
    grid-template-columns: 1fr;
  }

  .blog-granada{
    padding: 80px 20px;
  }
}
.cta-granada{
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;

  background: url("../img/contacto-granada.jpg") center/cover no-repeat;
}

/* Overlay elegante */
.cta-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
}

.cta-content{
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: white;
}

.cta-content h2{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0.8;
}

.cta-content h1{
  font-size: clamp(32px,5vw,60px);
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.cta-sub{
  margin-bottom: 50px;
  opacity: 0.8;
  font-size: 16px;
}

/* Botones */
.cta-buttons{
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta{
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

/* Botón principal */
.btn-cta.primary{
  background: #8f9792;
  color: white;
}

.btn-cta.primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Botones secundarios */
.btn-cta.secondary{
  border: 1px solid white;
  color: white;
}

.btn-cta.secondary:hover{
  background: white;
  color: black;
}

/* Responsive */
@media(max-width:768px){

  .cta-granada{
    padding: 70px 20px;
    min-height: 60vh;
  }

  .cta-buttons{
    flex-direction: column;
    gap: 15px;
  }

  .btn-cta{
    width: 100%;
    text-align: center;
  }
}
.contacto-granada{
  padding: 120px 40px;
  background: #f7f7f7;
}

.contacto-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: auto;
}

/* FORM */
.contacto-form{
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.contacto-form h2{
  margin-bottom: 40px;
  font-size: 28px;
}

.input-group{
  margin-bottom: 25px;
}

.input-group input,
.input-group textarea{
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 14px;
  transition: 0.3s;
  outline: none;
}

.input-group input:focus,
.input-group textarea:focus{
  border-color: #8f9792;
  box-shadow: 0 0 0 3px rgba(143,151,146,0.15);
}

.btn-contacto{
  padding: 14px 35px;
  background: #8f9792;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.btn-contacto:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* INFO */
.contacto-info h3{
  font-size: 26px;
  margin-bottom: 30px;
}

.contacto-info p{
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.6;
}

.contacto-info a{
  text-decoration: none;
  color: #8f9792;
  font-weight: 600;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .contacto-container{
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contacto-granada{
    padding: 80px 20px;
  }

  .contacto-form{
    padding: 30px;
  }
}
.como-llegar{
  padding: 120px 20px;
  background: #8f9792;
  color: white;
  text-align: center;
}

.container{
  max-width: 1200px;
  margin: auto;
}

.titulo-seccion{
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.subtitulo{
  max-width: 700px;
  margin: 0 auto 70px;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

.como-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 50px;
}

.como-card{
  background: rgba(255,255,255,0.08);
  padding: 40px 30px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

.como-card:hover{
  transform: translateY(-8px);
  background: rgba(255,255,255,0.15);
}

.icono{
  font-size: 40px;
  margin-bottom: 20px;
}

.como-card h3{
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.como-card p{
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.5;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .como-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .titulo-seccion{
    font-size: 30px;
  }

  .subtitulo{
    font-size: 16px;
  }
}
.mapa-seccion{
  padding: 100px 20px;
  background: #f4f4f4;
}

.mapa-contenido{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mapa-info h2{
  font-size: 38px;
  margin-bottom: 20px;
  color: #2d2d2d;
}

.mapa-info p{
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}

.datos-contacto{
  margin-bottom: 30px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.datos-contacto a{
  color: #8f9792;
  font-weight: 600;
  text-decoration: none;
}

.btn-mapa{
  display: inline-block;
  padding: 14px 30px;
  background: #8f9792;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-mapa:hover{
  background: #6f7772;
}

.mapa-embed iframe{
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media(max-width: 992px){

  .mapa-contenido{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mapa-info h2{
    font-size: 28px;
  }

  .mapa-embed iframe{
    height: 300px;
  }

}
.logo-link{
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.logo-link:hover{
  opacity: 0.85;
  transition: 0.3s ease;
}