:root {
  --rojo: #e60000;
  --negro: #000;
  --blanco: #fff;
  --gris: #cccccc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Tipografía general */
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  letter-spacing: 0.3px;
  background: linear-gradient(to bottom, #1e1e1e, #2c2c2c);
  color: white;
  margin: 0;
}

/* Títulos principales */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.4px;
}

/* Hero principal */
.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 2.9rem;
  margin-bottom: 15px;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #dcdcdc 25%,
    #f9f9f9 50%,
    #cfcfcf 75%,
    #ffffff 100%
  );
  background-size: 250% 250%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineMove 4s ease-in-out infinite;
  letter-spacing: 1px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  font-weight: 700;
}


/* Animación del brillo */
@keyframes shineMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.5;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

/* Botones */
a, button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Sección de reserva / booking */
.booking-container h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #000;
}

.booking-container p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #333;
}

/* Footer y secciones blancas */
.footer, .mission-vision, .founders, .stylists {
  font-family: 'Poppins', sans-serif;
}

.main-header {
  width: 100%;
  background-size: cover;
  color: white;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}




.social-icons a,
.user-icons a {
  color: white;
  margin: 0 10px;
  font-size: 1.2em;
  transition: opacity 0.3s ease;
}

.social-icons a:hover,
.user-icons a:hover {
  opacity: 0.7;
}

.right-icons a {
  color: white;
  margin: 0 10px;
  font-size: 1.2em;
  transition: opacity 0.3s ease;

}

.right-icons a:hover {
  opacity: 0.7;
}

/* ============================== */
/* LOGO HORIZONTAL ESTILO 015 CUTZ BARBERSHOP */
/* ============================== */
.logo {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.8rem;
  line-height: 1;
  margin-top: 10px;
  animation: fadeInLogo 1.2s ease both;
}

.logo a {
  text-decoration: none;
  display: inline-block;
}

/* 015 (blanco) */
.logo a .logo-015 {
  color: #ffffff;
  font-weight: 700;
}

/* CUTZ (degradado rojo intenso) */
.logo a .logo-cutz {
  background: linear-gradient(90deg, #d10000, #ff3b3b, #d10000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin: 0 4px;
}

/* BARBERSHOP (gris metálico) */
.logo a .logo-barbershop {
  color: #bcbcbc;
  font-weight: 400;
  letter-spacing: 3px;
}

/* Animación de entrada */
@keyframes fadeInLogo {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-bar {
  text-align: center;
  margin-top: 10px;
  padding-bottom: 20px;
}

.nav-bar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-bar ul li {
  display: inline-block;
  margin: 0 20px;
}

.nav-bar ul li a {
  color: white;
  text-decoration: none;
  font-size: 1em;
  position: relative;
  padding-right: 10px;
}

.nav-bar ul li a::after {
  content: '\f105';
  /* FontAwesome right arrow */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 0;
}


/* Sección principal con imagen */
.hero-section {
  height: 100vh;
  background: url('barber.jpeg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10%;
  position: relative;
}

/* Degradado para legibilidad */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
  position: relative;
  color: white;
  max-width: 500px;
  text-align: right;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1.2s ease forwards;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #ff0000;
  /* rojo del logo */
  animation: fadeIn 1.5s ease forwards;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  animation: fadeIn 2s ease forwards;
}

.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  animation: fadeIn 2.5s ease forwards;
}

.hero-btn:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.reviews-section {
  text-align: center;
  padding: 50px 20px;
  background: #111;
  color: #fff;
}

.reviews-section h2 {
  font-size: 2.2em;
  color: red;
  margin-bottom: 10px;
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 40px auto 0;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  flex: 0 0 100%;
  /* cada reseña ocupa 100% del ancho */
  max-width: 100%;
  background: #1c1c1c;
  margin: 0;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);

  white-space: normal;
  /* permite saltos de línea normales */
  overflow-wrap: break-word;
  /* evita que se rompan palabras largas */
  word-break: break-word;
  /* por seguridad en navegadores antiguos */
}

.review-card strong {
  font-size: 1.1em;
  color: #fff;
}

.review-rating {
  color: #ffcc00;
  margin-left: 5px;
  font-size: 1.2em;
}

.review-card p {
  margin: 12px 0;
  line-height: 1.5;
}



/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav a {
    margin-left: 0;
    margin-right: 15px;
  }
}

/* Fondo con degradado sutil para diferenciar la sección */
.booking-section {
  background: linear-gradient(to bottom, #ffffff, #f7f7f7);
  padding: 80px 20px;
  text-align: center;
}

/* Contenedor con animación */
.booking-container {
  max-width: 800px;
  margin: auto;
  animation: fadeInUp 1s ease forwards;
}

/* Título */
.booking-container h2 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Párrafo */
.booking-container p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Botón con estilo rojo */
.booking-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #ff0000;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #ff0000;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

/* Efecto hover */
.booking-btn:hover {
  background-color: transparent;
  color: #ff0000;
}

/* Animación de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================
   CONTENIDO 015
========================== */
.contenido015 {
  background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.contenido015 h2 {
font-family: Arial, sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.contenido-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.contenido-item {
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contenido-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.contenido-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.35);
}

.contenido-item img {
  width: 100%;
  display: block;
}

.contenido-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 5px 0;
  color: #fff;
}

.contenido-item p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
  padding: 0 10px;
  line-height: 1.6;
}



.productos-recomendados {
  text-align: center;
  padding: 50px 20px;
}

.productos-recomendados h2 {
  font-family: Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.productos-grid-tienda {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.producto-tienda {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.producto-tienda:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.producto-tienda img {
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

.producto-tienda h3 {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #222;
}

.precio-tienda {
  font-size: 1.1rem;
  font-weight: bold;
  color: #e63946;
  /* Rojo para destacar el precio */
  margin-bottom: 10px;
}


.academia {
  width: 100%;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 50px 20px;
}

.academia h2 {
  font-family: Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.academia-slider {
  position: relative;
}

.slide {
  display: none;
  flex-wrap: wrap;
  min-height: 400px;
}

.slide.active {
  display: flex;
}

.academia-imagen {
  flex: 1 1 50%;
}

.academia-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.academia-info {
  flex: 1 1 50%;
  background: linear-gradient(270deg, #000, #d10000, #111);
  background-size: 600% 600%;
  animation: gradientMove 10s ease infinite;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.academia-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.academia-info p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #ddd;
}

.btn-academia {
  display: inline-block;
  padding: 12px 25px;
  background-color: #d10000;
  /* Rojo Menspire */
  color: white;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: background 0.3s ease;
  border-radius: 4px;
}

.btn-academia:hover {
  background-color: #a80000;
}

/* Flechas */
.flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.flecha:hover {
  background: rgba(209, 0, 0, 0.8);
}

.flecha.izquierda {
  left: 10px;
}

.flecha.derecha {
  right: 10px;
}


/* Sección Ropa */
.ropa {
  padding: 50px 20px;
  background: #000;
  /* fondo negro */
  text-align: center;
  color: #fff;
}

.ropa h2 {
  font-family: Arial, sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.ropa-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.ropa-item {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ropa-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 20px rgba(209, 0, 0, 0.5);
}

.ropa-item img {
  width: 100%;
  display: block;
}

.ropa-item h3 {
  margin: 15px 0 5px;
  font-size: 1.3rem;
  color: #fff;
}

.precio {
  color: #d10000;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.btn-comprar {
  display: inline-block;
  padding: 10px 20px;
  background: #d10000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
  margin-bottom: 20px;
}

.btn-comprar:hover {
  background: #b00000;
}


/* Sección Localización */
.localizacion {
  padding: 60px 20px;
  background: #000;
  color: #fff;
  text-align: center;
}

.localizacion h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #d10000;
  /* rojo del logo */
}

.localizacion p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.localizacion i {
  color: #d10000;
  margin-right: 8px;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border: 3px solid #d10000;
  border-radius: 10px;
  overflow: hidden;
}


/* Sección Filosofía / Testimonios */
.filosofia {
  background: #f39797;
  /* Fondo claro elegante */
  padding: 80px 20px;
  text-align: center;
}

.contenedor-filosofia {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.filosofia-item {
  background: #222121;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.filosofia-item .comillas {
  font-size: 3rem;
  color: #d10000;
  /* rojo del logo */
  position: absolute;
  top: 20px;
  left: 30px;
}

.filosofia-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 30px;
  margin-bottom: 30px;
}

.autor {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.autor img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d10000;
}

.autor h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.autor p {
  margin: 0;
  font-size: 0.9rem;
  color: #e7e4e4;
}


.trust-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
  background: #111;
  /* fondo oscuro elegante */
  color: #fff;
  flex-wrap: wrap;
}

.trust-box {
  flex: 1;
  margin: 20px;
  max-width: 300px;
}

.trust-box i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #e63946;
  /* rojo elegante */
}

.trust-box h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}

.trust-box p {
  font-size: 16px;
  line-height: 1.5;
}


.footer {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-social h4,
.footer-info h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
}

.footer-social a {
  color: #fff;
  font-size: 26px;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #e63946;
  /* Rojo al pasar el ratón */
}

.footer-info ul {
  list-style: none;
  padding: 0;
}

.footer-info ul li {
  margin: 8px 0;
}

.footer-info ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-info ul li a:hover {
  color: #fff;
}

.footer-payments {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-payments img {
  height: 30px;
  transition: transform 0.3s ease;
}

.footer-payments img:hover {
  transform: scale(1.1);
  /* pequeño zoom al pasar el ratón */
}


.footer-bottom {
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}








.top-banner {
  background-color: #111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  font-size: 1rem;
}

.top-banner a {
  color: #fff;
  margin: 0 8px;
  transition: opacity 0.3s ease;
}

.top-banner a:hover {
  opacity: 0.7;
}

.top-banner .center-logo {
  font-weight: bold;
  letter-spacing: 2px;
}

.top-banner .logo-text {
  font-family: 'Arial', sans-serif;
  font-size: 1.2rem;
}

.top-banner .left-icons,
.top-banner .right-icons {
  display: flex;
  align-items: center;
}

.top-banner i {
  font-size: 1.1rem;
}

.logo-social {
  display: flex;
  align-items: center;
  position: relative;
}

.logo-social img {
  width: 50px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo-social img:hover {
  transform: scale(1.05);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-left: 15px;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.social-icons.hidden {
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
}

.social-icons a {
  color: white;
  font-size: 1.2em;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: red;
}



.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  background: #fff;
}

.about-text {
  flex: 1;
  margin-right: 50px;
}

.about-text h2 {
  font-size: 18px;
  font-weight: bold;
  color: #444;
  margin-bottom: 10px;
}

.about-text h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 350px;
}

.stats {
  display: flex;
  justify-content: space-around;
  background: #f7f9fa;
  padding: 40px 10%;
  text-align: center;
  color: #000;
}

.stat {
  flex: 1;
}

.stat h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat p {
  font-size: 16px;
  color: #000000;
}

.logo-animado {
  max-width: 350px;
  animation: girar 20s linear infinite;
}

@keyframes girar {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.mission-vision {
  background-color: #fff;
  padding: 80px 10%;
}

.mission-vision .container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.mission-vision .mv-box {
  flex: 1;
  min-width: 300px;
}

.mission-vision h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid #000;
  display: inline-block;
  margin-bottom: 15px;
  color: #d10000;
  /* rojo del logo */
}

.mission-vision h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #222;
}

.mission-vision p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}


.founders {
  text-align: center;
  padding: 80px 10%;
  background-color: #f9f9f9;
}

.founders h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #d10000;
  /* rojo del logo */
}

.founders .intro {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.founders-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.founder {
  max-width: 300px;
}

.founder img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.founder h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.founder p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}


/* SECCIÓN DIRECTORES */
.directors {
  text-align: center;
  padding: 80px 20px;
  background: #f9f9f9;
  /* gris muy claro para diferenciar de fundadores */
}

.directors h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #d10000;
  /* rojo del logo */
}

.directors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
}

.director {
  max-width: 300px;
  text-align: left;
}

.director img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.director h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #222;
  /* color oscuro para los nombres */
}

.director h4 {
  font-size: 14px;
  font-weight: bold;
  color: #a00;
  /* rojo corporativo */
  margin-bottom: 10px;
}

.director p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  text-align: justify;
}


/* SECCIÓN ESTILISTAS */
.stylists {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  /* fondo blanco para alternar con directores */
}

.stylists h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #d10000;
  /* rojo del logo */
}

.stylists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
}

.stylist {
  max-width: 300px;
  text-align: left;
}

.stylist img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.stylist h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #222;
  /* color oscuro para los nombres */
}

.stylist h4 {
  font-size: 14px;
  font-weight: bold;
  color: #a00;
  /* rojo corporativo */
  margin-bottom: 10px;
}

.stylist p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  text-align: justify;
}


/* ==============================
   Página Academia
============================== */
.academia-page {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
  font-family: 'Oswald', sans-serif;
}

/* Títulos principales */
.academia-page h1 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #e50914;
}

.academia-page .intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ccc;
}

/* Cada curso */
.academia-page .curso-card {
  background: #111;
  border-left: 5px solid #e50914;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.academia-page .curso-card h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  color: #fff;
}

.academia-page .curso-card p {
  color: #bbb;
  line-height: 1.5;
  font-size: 1rem;
}

.academia-page .curso-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
}

/* ==============================
   Formulario Academia
============================== */
.academia-page .formulario-academia {
  margin-top: 60px;
  padding: 40px;
  background: #181818;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.academia-page .formulario-academia h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  color: #fff;
}

.academia-page .formulario-academia form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.academia-page .formulario-academia label {
  font-weight: bold;
  color: #e50914;
}

.academia-page .formulario-academia input,
.academia-page .formulario-academia select {
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  background: #222;
  color: #fff;
  outline: none;
  transition: border 0.2s ease;
}

.academia-page .formulario-academia input:focus,
.academia-page .formulario-academia select:focus {
  border: 1px solid #e50914;
}

.academia-page .formulario-academia button {
  padding: 14px;
  background: #e50914;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.academia-page .formulario-academia button:hover {
  background: #ff1e2b;
  transform: scale(1.05);
}

/* --- TIENDA --- */
.tienda {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  font-family: 'Oswald', sans-serif;
  text-align: center;
}

.tienda-titulo {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.tienda-subtitulo {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ccc;
}

/* ============================== */
/* TÍTULO DE SECCIÓN CON BRILLO   */
/* ============================== */
.seccion-tienda {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin: 60px 0 25px;
  background: linear-gradient(90deg, #ffffff, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  animation: fadeInDown 1s ease both, gradientFlow 6s ease-in-out infinite alternate;
  background-size: 200% 200%;
  overflow: hidden;
}

/* 🔹 Efecto animado del degradado blanco ↔ negro */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Línea inferior con el mismo degradado animado */
.seccion-tienda::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #ffffff, #000000);
  background-size: 200% 200%;
  animation: gradientFlow 6s ease-in-out infinite alternate, lineGrow 1.2s ease forwards;
  border-radius: 2px;
}

/* Animaciones suaves */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lineGrow {
  from { width: 0; opacity: 0; }
  to { width: 90px; opacity: 1; }
}

/* ============================== */
/* GRID DE PRODUCTOS              */
/* ============================== */

.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.producto-card {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.producto-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.producto-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}

.producto-card p {
  font-size: 1rem;
  color: #bbb;
  line-height: 1.5;
}

.producto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}



/* Botones de compra */
.btn-comprar {
  background: #e63946;
  color: white;
  border: none;
  padding: 10px 15px;
  margin-top: 10px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn-comprar:hover {
  background: #c92435;
}


/* Panel del carrito */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

.overlay.active {
  display: block;
}

.carrito-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 300px;
  height: 100%;
  background: #b94141;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
  padding: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.carrito-panel.active {
  right: 0;
}

.carrito-panel h2 {
  margin-top: 0;
}

.carrito-panel ul {
  list-style: none;
  padding: 0;
  flex-grow: 1;
  overflow-y: auto;
}

.carrito-panel li {
  margin: 10px 0;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.carrito-controles {
  display: flex;
  align-items: center;
  gap: 5px;
}

.carrito-controles button {
  background: black;
  color: white;
  border: none;
  padding: 2px 6px;
  cursor: pointer;
  font-size: 14px;
}

.carrito-panel .total {
  font-weight: bold;
  margin-top: 15px;
}

.btn-finalizar {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}

/* ===== LUGAR ===== */
.lugar-hero {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(to right, #111, #222);
  color: #fff;
}

.lugar-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.lugar-info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
  align-items: flex-start;
}

.lugar-detalles {
  flex: 1;
  min-width: 280px;
}

.lugar-detalles h2 {
  margin-top: 20px;
  color: #e63946;
}

.lugar-mapa {
  flex: 1;
  min-width: 320px;
}

.lugar-visual {
  text-align: center;
  padding: 40px 20px;
  background: #f8f8f8;
}

.lugar-visual h2 {
  margin-bottom: 20px;
}



.horario-box {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.horario-tabla {
  width: 100%;
  max-width: 400px;
  border-collapse: collapse;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
}

.horario-tabla td {
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
}

.horario-tabla td:first-child {
  font-weight: bold;
  text-align: left;
}

.horario-tabla td:last-child {
  text-align: right;
}

.horario-tabla .cerrado {
  color: red;
  font-weight: bold;
}

.horario-tabla tr.hoy {
  background: linear-gradient(90deg, #ff0000, #b30000);
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
}


.ubicacion-horario {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 20px;
}

.info-ubicacion {
  flex: 1;
}

.mapa {
  flex: 1;
  max-width: 600px;
}

.horario-tabla {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.horario-tabla td {
  padding: 8px 15px;
  border-bottom: 1px solid #666;
}


.mapa iframe {
  width: 100%;
  height: 400px;
  border: 2px solid #e60000;
  /* Borde rojo elegante */
  border-radius: 12px;
  /* Bordes redondeados */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  /* Sombra elegante */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mapa iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}



/* ===== CONTACTO ===== */
/* Fondo dinámico de la sección */
.contacto-section {
  text-align: center;
  padding: 60px 20px;
  color: white;
  background: linear-gradient(-45deg, #0d0d0d, #1a1a1a, #111, #222);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.contacto-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 500; /* más fino y moderno */
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-align: center;
  background: linear-gradient(90deg, #ff1a1a, #b3b3b3, #ff1a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: brilloTitulo 4s linear infinite;
}

/* animación sutil de brillo tipo metálico */
@keyframes brilloTitulo {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.contacto-section .subtitulo {
  font-size: 1.2rem;
  color: #cccccc;
  letter-spacing: 1px;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 300;
}


/* Grid de barberos */
.grid-barberos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  justify-items: center;
}

/* Tarjetas */
.barbero {
  background: rgba(20, 20, 20, 0.95);
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 280px;
  border: 2px solid transparent;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.barbero:nth-child(1) {
  animation-delay: 0.1s;
}

.barbero:nth-child(2) {
  animation-delay: 0.2s;
}

.barbero:nth-child(3) {
  animation-delay: 0.3s;
}

.barbero:nth-child(4) {
  animation-delay: 0.4s;
}

.barbero:nth-child(5) {
  animation-delay: 0.5s;
}

.barbero:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.barbero:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #e60000;
  box-shadow: 0 0 25px rgba(230, 0, 0, 0.6);
}

.barbero img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.barbero:hover img {
  transform: scale(1.08);
}

.barbero h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Botón Instagram */
.btn-insta {
  display: inline-block;
  padding: 10px 18px;
  background: #e60000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(230, 0, 0, 0.5);
  font-size: 0.95rem;
}

.btn-insta i {
  margin-right: 8px;
}

.btn-insta:hover {
  background: #b30000;
  box-shadow: 0 0 25px rgba(230, 0, 0, 0.9);
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 900px) {
  .grid-barberos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-barberos {
    grid-template-columns: 1fr;
  }
}

/* ----------- SLIDER en móvil ----------- */
@media (max-width: 900px) {
  .slider-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .grid-barberos {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    min-width: max-content;
  }

  .barbero {
    flex: 0 0 80%;
    max-width: 280px;
  }
}

@media (max-width: 600px) {
  .barbero {
    flex: 0 0 90%;
  }
}

/* Ocultar scroll bar en móviles */
.slider-container::-webkit-scrollbar {
  display: none;
}



/* ===== PERFIL USUARIO ===== */
.profile-container {
  position: relative;
  display: inline-block;
}

.profile-panel {
  position: absolute;
  top: 40px;
  right: 0;
  background: #131212;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  width: 200px;
  z-index: 100;
}

.profile-panel.hidden {
  display: none;
}

.profile-panel p {
  margin: 0 0 10px;
  font-weight: bold;
}

.profile-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-panel ul li {
  margin: 8px 0;
}

.profile-panel ul li a {
  text-decoration: none;
  color: #d3cfcf;
  transition: color 0.2s;
}


/* Podcast */
.podcast-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  color: white;
}

.podcast-header h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.podcast-header p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.podcast-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.podcast-card {
  background: #1a1a1a;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.2s ease;
}

.podcast-card:hover {
  transform: translateY(-5px);
}

.podcast-card img {
  width: 100%;
  border-radius: 10px;
}

.podcast-card h3 {
  margin-top: 10px;
  font-size: 1rem;
}


/* ==== PODCAST ==== */
.podcast {
  width: 100%;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 50px 20px;

}

.podcast h2 {
  font-family: Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.podcast-slider {
  position: relative;
}

.podcast-slide {
  display: none;
  flex-wrap: wrap;
  min-height: 400px;

}

.podcast-slide.active {
  display: flex
}

.podcast-imagen {
  flex: 1 1 50%;

}

.podcast-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}

.podcast-info {
  flex: 1 1 50%;
  background: linear-gradient(270deg, #000, #d10000, #111);
  background-size: 600% 600%;
  animation: gradientMove 10s ease infinite;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* 🔥 centrado en horizontal */
  padding: 60px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  text-align: center;
  /* 🔥 centra textos */

}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.podcast-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.podcast-info p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #ddd;
  text-align: center;

}

.btn-podcast {
  display: inline-block;
  padding: 12px 25px;
  background-color: #d10000;
  /* Rojo Menspire */
  color: white;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: background 0.3s ease;
  border-radius: 4px;

}

.btn-podcast:hover {
  background: #b20710;
}

/* Flechas */
.podcast .flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.podcast .flecha.izquierda {
  left: 10px;
}

.podcast .flecha.derecha {
  right: 10px;
}

.podcast .flecha:hover {
  background: #e50914;
}



@media (max-width: 900px) {
  .podcast-slide {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .podcast-info h2 {
    font-size: 1.8rem;
  }
}


/* ============================== */
/* SECCIÓN RESEÑAS PREMIUM */
/* ============================== */
.reviews-section {
  position: relative;
  text-align: center;
  padding: 100px 20px;
  color: #fff;
  background: linear-gradient(to bottom, #141414 0%, #0d0d0d 100%);
  overflow: hidden;
}

/* 💡 Luz ambiental sutil arriba */
.reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 180px;
  background: radial-gradient(circle at top, rgba(255, 0, 0, 0.15), transparent 70%);
  z-index: 0;
}

/* 🔹 Título principal */
.reviews-section h2 {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 25px;
  z-index: 1;
  text-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
  animation: fadeInTitle 1s ease forwards;
  opacity: 0;
}

/* ✨ Línea animada roja debajo del título */
.reviews-section h2::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff0000, #b30000);
  margin: 12px auto 0;
  border-radius: 2px;
  animation: expandLine 1.2s ease forwards 0.6s;
}

@keyframes expandLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 120px;
    opacity: 1;
  }
}

@keyframes fadeInTitle {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🔹 Subtítulo */
.reviews-section p {
  position: relative;
  font-size: 1.1rem;
  color: #bbbbbb;
  z-index: 1;
  margin-bottom: 50px;
  font-weight: 300;
  animation: fadeInSubtitle 1.3s ease forwards;
  opacity: 0;
}

@keyframes fadeInSubtitle {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reviews-section p strong {
  color: #fff;
  font-weight: 500;
}

/* 🔹 Caja de reseñas */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}
