/* ==========================================================
   LA ROCA - Centro de Alto Rendimiento
   Estilo Deportivo Moderno (Negro + Rojo)
   ========================================================== */

/* ---------------------------
   VARIABLES DE COLOR
--------------------------- */
:root {
  --negro: #0a0a0a;
  --gris-oscuro: #141414;
  --gris-claro: #bfbfbf;
  --rojo: #e50914;
  --rojo-oscuro: #b00610;
  --blanco: #ffffff;
}

/* ---------------------------
   RESETEO Y BASE
--------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--negro);
  color: var(--blanco);
  overflow-x: hidden;
}

/* ---------------------------
   NAVBAR
--------------------------- */
.navbar {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--rojo);
}

.navbar-brand img {
  height: 60px;
  margin-right: 10px;
}

.navbar-brand span {
  color: var(--rojo);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.nav-link {
  color: var(--blanco) !important;
  font-weight: 600;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--rojo) !important;
}

/* ---------------------------
   HERO / SLIDER
--------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
}

.carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35); 
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: center;
}

.carousel-caption h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--rojo);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.carousel-caption p {
  font-size: 1.2rem;
  color: var(--gris-claro);
  margin: 10px 0;
}

.carousel-caption h3 {
  font-weight: 700;
  color: var(--blanco);
  background-color: rgba(229, 9, 20, 0.8);
  display: inline-block;
  padding: 8px 15px;
  border-radius: 8px;
  margin-top: 15px;
}

/* ---------------------------
   SECCIONES GENERALES
--------------------------- */
section {
  padding: 80px 20px;
  background-color: var(--negro);
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--rojo);
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------------------------
   ACTIVIDADES
--------------------------- */
#actividades .card {
  background-color: var(--gris-oscuro);
  border: 2px solid transparent;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

#actividades .card img {
  height: 220px;
  object-fit: cover;
  filter: brightness(0.9);
}

#actividades .card h3 {
  color: var(--rojo);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

#actividades .card p {
  color: var(--gris-claro);
}

#actividades .card:hover {
  transform: translateY(-8px);
  border-color: var(--rojo);
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
}

/* ---------------------------
   HORARIOS
--------------------------- */
#horarios table {
  border-radius: 10px;
  overflow: hidden;
}

.table-dark {
  --bs-table-bg: var(--gris-oscuro);
  --bs-table-striped-bg: #1a1a1a;
  --bs-table-hover-bg: #222;
}

.table-danger th {
  background-color: var(--rojo) !important;
  color: var(--blanco);
  border: none;
}

/* ---------------------------
   PRECIOS
--------------------------- */
.pricing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pricing .card {
  background-color: var(--gris-oscuro);
  border: 2px solid var(--rojo);
  border-radius: 15px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing .card h3 {
  background-color: var(--rojo);
  color: var(--blanco);
  padding: 15px;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
  font-size: 1.4rem;
}

.pricing .card p {
  font-size: 1.1rem;
  color: var(--gris-claro);
  padding: 25px;
}

.pricing .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(229, 9, 20, 0.4);
}

/* ---------------------------
   FORMULARIO CONTACTO
--------------------------- */
#contacto .form-control {
  background-color: var(--gris-oscuro);
  border: 1px solid #333;
  color: var(--blanco);
}

#contacto .form-control:focus {
  border-color: var(--rojo);
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.3);
}

.btn-roca {
  background-color: var(--rojo);
  color: var(--blanco);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 12px 25px;
  transition: all 0.3s ease;
  border: none;
}

.btn-roca:hover {
  background-color: var(--rojo-oscuro);
  box-shadow: 0 0 15px rgba(229, 9, 20, 0.5);
}

/* ---------------------------
   FOOTER
--------------------------- */
footer {
  background-color: var(--gris-oscuro);
  color: var(--gris-claro);
  text-align: center;
  padding: 40px 20px;
  border-top: 2px solid var(--rojo);
}

footer p {
  margin: 5px 0;
  font-size: 0.95rem;
}

footer i {
  color: var(--rojo);
  margin-right: 6px;
}

/* ---------------------------
   RESPONSIVE
--------------------------- */
@media (max-width: 992px) {
  .carousel-caption h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .pricing {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================
   LA ROCA - Fuente Deportiva y Moderna
   Bebas Neue (titulares) + Rajdhani (texto)
   ========================================================== */

body {
  font-family: 'Rajdhani', sans-serif;
  background-color: var(--negro);
  color: var(--blanco);
  overflow-x: hidden;
  font-weight: 500;
  letter-spacing: 0.3px;
}

h1, h2, h3, .navbar-brand span, .section-title {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* HERO */
.carousel-caption h1 {
  font-size: 4rem;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--rojo);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.carousel-caption h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

/* NAVBAR */
.nav-link {
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.8px;
}

/* ACTIVIDADES Y TARJETAS */
#actividades .card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

/* PRECIOS */
.pricing .card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 1px;
}

/* FORMULARIO */
.btn-roca {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FOOTER */
footer p {
  font-family: 'Rajdhani', sans-serif;
}

/* ==========================================================
   SECCIÓN HORARIOS - PARALLAX
   ========================================================== */

#horarios {
  position: relative;
  background-image: url('img/horariosfondo.jpg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--blanco);
}

#horarios::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

#horarios .container {
  position: relative;
  z-index: 1;
}

#horarios h2 {
  color: var(--rojo);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#horarios table {
  background-color: rgba(20, 20, 20, 0.85);
  border-radius: 10px;
  overflow: hidden;
}

#horarios th {
  background-color: var(--rojo);
  color: var(--blanco);
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
}

#horarios td {
  color: var(--blanco);
  font-family: 'Rajdhani', sans-serif;
}

/* ==========================================================
   HERO SLIDER MODERNO - LA ROCA
   ========================================================== */

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#hero .carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

#hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 100%);
  z-index: 1;
}

#hero .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

#hero .carousel-caption h1 {
  font-size: 4rem;
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  color: var(--rojo);
  letter-spacing: 3px;
}

#hero .carousel-caption h1 span {
  color: #fff;
}

#hero .carousel-caption p {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 20px 0;
  color: #eee;
  font-family: 'Rajdhani', sans-serif;
}

.btn-roca {
  background-color: var(--rojo);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-roca:hover {
  background-color: #fff;
  color: var(--rojo);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  #hero .carousel-caption h1 {
    font-size: 2.3rem;
  }
  #hero .carousel-caption p {
    font-size: 1rem;
  }
}

/* ==========================================================
   NAVBAR LOGO + TEXTO PERSONALIZADO
   ========================================================== */

.navbar {
  background-color: #000 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.navbar-brand .brand-text {
  line-height: 1;
}

.navbar-brand .brand-title {
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.navbar-brand .brand-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  color: var(--rojo);
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.7px;
}

.navbar-nav .nav-link:hover {
  color: var(--rojo) !important;
}


/* ==========================================================
   SECCIÓN ACTIVIDADES (PARALLAX GALLERY)
   ========================================================== */

.actividades-section {
  width: 100%;
  overflow: hidden;
}

.actividades-section .actividad {
  position: relative;
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.actividades-section .overlay {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  text-align: center;
  padding: 60px 30px;
  max-width: 800px;
  border-radius: 10px;
  transition: all 0.4s ease;
}

.actividades-section .overlay:hover {
  background: rgba(255, 0, 0, 0.2);
  transform: scale(1.03);
}

.actividades-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--rojo);
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.actividades-section p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  margin: 0;
}

@media (max-width: 768px) {
  .actividades-section .actividad {
    height: 50vh;
    background-attachment: scroll; /* mejora rendimiento mobile */
  }

  .actividades-section .overlay {
    padding: 40px 20px;
  }

  .actividades-section h2 {
    font-size: 1.8rem;
  }

  .actividades-section p {
    font-size: 1rem;
  }
}

/* ==========================================================
   SECCIÓN PRECIOS - LA ROCA GYM
   ========================================================== */

#precios {
  background: var(--negro);
  text-align: center;
}

#precios .section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--rojo);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.price-card {
  background: #151515;
  border: 2px solid #2b2b2b;
  border-radius: 15px;
  padding: 40px 25px;
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
}

.price-card:hover {
  border-color: var(--rojo);
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(229, 9, 20, 0.3);
}

.price-card.featured {
  background: linear-gradient(180deg, #1a1a1a, #000);
  border-color: var(--rojo);
  box-shadow: 0 0 30px rgba(229, 9, 20, 0.4);
}

.price-card .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}

.price-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--rojo);
  margin-bottom: 15px;
}

.price-card .price {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  font-family: 'Rajdhani', sans-serif;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.price-card ul li {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 8px;
}

.price-card a.btn {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.price-card a.btn:hover {
  background: var(--rojo);
  color: #fff !important;
  border-color: var(--rojo);
}

.promo-section {
  background: #111;
  border: 1px solid #2b2b2b;
  border-radius: 10px;
  padding: 25px;
  margin-top: 40px;
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.6;
}

.promo-section h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

.separator-fino {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,0,0,0) 0%, #ff1a1a 50%, rgba(255,0,0,0) 100%);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
  border: none;
  margin: 0;              /* 🔥 Elimina los márgenes */
  padding: 0;
  animation: softGlow 3s ease-in-out infinite alternate;
}

#actividades {
  width: 100%;
  background-color: #000; /* Fondo negro absoluto */
  color: #fff;
  padding: 80px 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

#actividades .container {
  max-width: 1400px;
}

.actividad-card {
  background-color: transparent; /* 🔥 sin fondo gris */
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.actividad-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.actividad-card:hover img {
  filter: brightness(1);
}

.actividad-card .card-body {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  padding: 20px;
  text-align: center;
  border-top: 2px solid #ff1a1a;
}

.actividad-card h5 {
  font-weight: 700;
  text-transform: uppercase;
  color: #ff1a1a;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.actividad-card p {
  color: #ccc;
  font-size: 0.95rem;
}

.actividad-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

#contacto {
  position: relative;
  background: url('https://images.unsplash.com/photo-1605296867304-46d5465a13f1') center/cover no-repeat; /* 🔁 poné tu imagen acá */
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}

/* Capa oscura + blur para difuminar la imagen */
#contacto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 0;
}

/* Contenido */
#contacto .container {
  position: relative;
  z-index: 1;
}

#contacto h2 {
  color: #ff1a1a;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 40px;
  text-align: center;
}

#contacto form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
}

#contacto .form-control {
  background-color: rgba(30, 30, 30, 0.8);
  border: 1px solid #ff1a1a;
  color: #fff;
  border-radius: 8px;
  padding: 12px 15px;
}

#contacto .form-control:focus {
  background-color: rgba(50, 50, 50, 0.9);
  border-color: #ff3b3b;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

#contacto button {
  background: #ff1a1a;
  border: none;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 8px;
  transition: 0.3s ease;
}

#contacto button:hover {
  background: #ff3b3b;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
  transform: translateY(-2px);
}

#contacto {
  position: relative;
  background: url('https://images.unsplash.com/photo-1598970434795-0c54fe7c0642') center/cover no-repeat;
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}

/* Capa semitransparente + blur leve */
#contacto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  z-index: 0;
}

/* Contenedor del contenido */
#contacto .container {
  position: relative;
  z-index: 1;
}

#contacto h2 {
  color: #ff1a1a;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 40px;
  text-align: center;
}

#contacto form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.65);
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.25);
}

/* === INPUTS === */
#contacto .form-control {
  background-color: rgba(20, 20, 20, 0.7);
  border: 1px solid rgba(255, 26, 26, 0.6);
  color: #fff;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: 0.3s ease;
}

/* Placeholders visibles */
#contacto .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

/* Al enfocar */
#contacto .form-control:focus {
  background-color: rgba(35, 35, 35, 0.85);
  border-color: #ff3b3b;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* === ICONOS === */
#contacto .input-group-text {
  background-color: rgba(255, 26, 26, 0.8);
  color: #fff;
  border: none;
  border-radius: 8px 0 0 8px;
}

#contacto .fa {
  font-size: 1.2rem;
}

/* === BOTÓN === */
#contacto button {
  background: linear-gradient(90deg, #ff1a1a, #ff3b3b);
  border: none;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 8px;
  transition: 0.3s ease;
}

#contacto button:hover {
  background: linear-gradient(90deg, #ff3b3b, #ff1a1a);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
  transform: translateY(-2px);
}
.footer {
  background: #000;
  color: #eee;
  padding: 60px 20px 20px;
  border-top: 2px solid #ff0000;
  position: relative;
  z-index: 5;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  align-items: start;
  text-align: center;
}

.footer-logo img {
  width: 70px;
  margin-bottom: 10px;
}

.footer-logo h3 {
  color: #fff;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.footer-logo .subtitulo {
  color: #ff1a1a;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-links h4,
.footer-contacto h4,
.footer-redes h4 {
  color: #ff1a1a;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ff1a1a;
}

.footer-contacto p,
.footer-redes a {
  color: #ccc;
  margin: 6px 0;
  font-size: 0.95rem;
}

.footer-contacto i {
  color: #ff1a1a;
  margin-right: 8px;
}

.footer-redes .redes a {
  font-size: 1.3rem;
  margin: 0 10px;
  color: #ccc;
  transition: all 0.3s ease;
}

.footer-redes .redes a:hover {
  color: #ff1a1a;
  transform: scale(1.15);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 0, 0, 0.2);
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #999;
}

.footer-bottom span {
  color: #ff1a1a;
  font-weight: 600;
}

/* BOTÓN FLOTANTE WHATSAPP - ESTILO ROJO ELEGANTE */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background: rgba(255, 0, 0, 0.85);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background: #ff0000;
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.8);
}

.whatsapp-float i {
  color: #fff;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}
.whatsapp-float::after {
  content: "¡Escribinos!";
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.whatsapp-float:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* =======================
   LOADER LA ROCA GYM
   ======================= */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

.loader-content {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-logo {
  width: 150px;
  z-index: 2;
  filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.4));
}

/* Borde animado */
.loader-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: #ff0000;
  border-right-color: #ff0000;
  border-bottom-color: #ff0000;
  border-left-color: #ff0000;
  border-radius: 10px;
  animation: spin 2.2s linear infinite, glow 1.5s ease-in-out infinite alternate;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes glow {
  from { box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000; }
  to { box-shadow: 0 0 25px #ff0000, 0 0 45px #ff0000; }
}

/* Ocultar el loader cuando la página carga */
body.loaded #loader {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.testimonios-section {
  padding: 100px 20px;
  background: #0a0a0a;
  color: white;
  text-align: center;
}

.testimonios-section h2 {
  color: #ff0000;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 0, 0, 0.4);
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.review-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.review-rating {
  color: #ff0000;
  font-weight: bold;
  margin: 8px 0;
}

.review-text {
  font-style: italic;
  color: #ccc;
}

.reviews-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px;
}

.review-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 0, 0, 0.4);
  border-radius: 12px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
}

.review-card img {
  border: 2px solid #ff0000;
}

.testimonios-section {
  background: linear-gradient(to bottom right, rgba(0,0,0,0.9), rgba(40,0,0,0.9)),
              url('img/fondo-gym.jpg') center/cover fixed;
  padding: 120px 20px;
  color: #fff;
  text-align: center;
}

/* ==== EFECTO DE TRUENOS SUTILES (oscuro) ==== */
.hero-lightning {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.hero-lightning::before,
.hero-lightning::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 40%, rgba(0,0,0,0.3) 0%, transparent 60%),
              radial-gradient(circle at 80% 60%, rgba(0,0,0,0.25) 0%, transparent 60%);
  opacity: 0;
  animation: thunderFlash 6s infinite ease-in-out;
}

.hero-lightning::after {
  background: radial-gradient(circle at 60% 20%, rgba(0,0,0,0.35) 0%, transparent 60%),
              radial-gradient(circle at 40% 80%, rgba(0,0,0,0.3) 0%, transparent 60%);
  animation-delay: 3s;
}

@keyframes thunderFlash {
  0%, 90%, 100% {
    opacity: 0;
  }
  92% {
    opacity: 0.4;
  }
  94% {
    opacity: 0.15;
  }
  96% {
    opacity: 0.35;
  }
}


