/* ===========================
   RESET BÁSICO
=========================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===========================
   BODY
=========================== */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0d0d0d;
  color: #f5f5f5;
  line-height: 1.6;
  min-height: 100vh;
}

/* ===========================
   HEADER
=========================== */
.header {
  text-align: center;
  padding: 30px 20px;
}

.header h1 {
  font-size: 2rem;
}

.header p {
  color: #ffffff;
}

/* ===========================
   ADMIN HEADER
=========================== */
.admin-header {
  background: #000;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #b30000;
}

.admin-header h1 {
  color: #fff;
}

.logout-btn {
  background: #b30000;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.logout-btn:hover {
  background: #ff1a1a;
}

/* ===========================
   TÍTULOS H2 / H3
=========================== */
h2 {
  background: #000;
  padding: 25px;
  text-align: center;
  border-bottom: 3px solid #b30000;
  letter-spacing: 1px;
  font-size: 24px;
}

h3 {
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 5px solid #b30000;
  font-size: 20px;
}

/* ===========================
   CONTENEDOR PRINCIPAL
=========================== */
.contenedor {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
}

.container {
  width: 95%;
  max-width: 1200px;
  margin: 30px auto;
}

/* ===========================
   TARJETAS / CARDS
=========================== */
.card {
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  padding: 40px 20px;
  border-radius: 12px;
  font-size: 1.2rem;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
}

.card:hover {
  background-color: #ff2e2e;
  transform: scale(1.03) translateY(-3px);
}

/* ===========================
   FORMULARIOS
=========================== */
input,
textarea,
select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  border-radius: 6px;
  transition: 0.3s;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #b30000;
  outline: none;
  box-shadow: 0 0 5px #b30000;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

/* ===========================
   BOTONES
=========================== */
button {
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

button[type="submit"] {
  background: #b30000;
  color: #fff;
}

button[type="submit"]:hover {
  background: #ff1a1a;
}

button[name="eliminar_tatuador"],
button[name="eliminar_horario"],
button[name="cancelar_id"] {
  background: #660000;
}

button[name="eliminar_tatuador"]:hover,
button[name="eliminar_horario"]:hover,
button[name="cancelar_id"]:hover {
  background: #cc0000;
}

.btn-red {
  background: #b30000;
  color: white;
}

.btn-red:hover {
  background: #ff1a1a;
}

.btn-dark {
  background: #330000;
  color: white;
}

.btn-dark:hover {
  background: #990000;
}

/* ===========================
   TABLAS
=========================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
}

th {
  background: #111;
  padding: 12px;
  border-bottom: 2px solid #b30000;
  text-align: left;
}

td {
  padding: 12px;
  border-bottom: 1px solid #333;
}

tr:hover {
  background: #222;
}

/* ===========================
   IMÁGENES
=========================== */
img {
  border-radius: 8px;
  margin-bottom: 10px;
  max-width: 100%;
}

hr {
  border: 1px solid #222;
  margin: 30px 0;
}

/* ===========================
   HERO HOME
=========================== */
.hero {
  background: radial-gradient(circle at top, #222, #000000);
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
}

.hero p {
  color: #c9a24d;
  margin-top: 10px;
}

/* ===========================
   HERO MÓDULO
=========================== */
.hero-modulo {
  padding: 100px 20px 80px;
  text-align: center;
  background: radial-gradient(circle at top, #ffffff 0%, #807f7f 60%, #1f1e1e 100%);
}

.hero-contenido {
  max-width: 900px;
  margin: auto;
}

.logo-superior img {
  width: 200px;
  height: auto;
  margin-bottom: 30px;
  transition: transform 0.3s;
}

.logo-superior img:hover {
  transform: scale(1.08);
}

.hero-modulo h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #000000;
  letter-spacing: 1px;
}

.hero-modulo p {
  color: #000000;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* ===========================
   PRESENTACIÓN
=========================== */
.presentacion {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.presentacion h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #c9a24d;
  background: none;
  border-bottom: none;
  padding: 0;
}

.presentacion p {
  color: #ddd;
  line-height: 1.7;
}

/* ===========================
   DESCRIPCIÓN
=========================== */
.descripcion {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.descripcion h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  background: none;
  border-bottom: none;
  padding: 0;
}

.descripcion p {
  color: #ccc;
  line-height: 1.7;
}

.descripcion-modulo {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  font-size: 1.05rem;
  color: #000000;
  line-height: 1.8;
}

.descripcion-estudio {
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-weight: 500;
}

/* ===========================
   PRECIOS
=========================== */
.precios {
  padding: 50px 20px;
  text-align: center;
}

.cards-precio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.precio-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #2a2a2a;
}

.precio {
  font-size: 1.8rem;
  color: #c9a24d;
}

/* ===========================
   BENEFICIOS
=========================== */
.beneficios {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 40px 20px;
}

.beneficio {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
}

.beneficio h3 {
  color: #c9a24d;
  margin-bottom: 10px;
  border-left: none;
  padding-left: 0;
  font-size: inherit;
}

.beneficio p {
  font-size: 0.95rem;
  color: #ccc;
}

/* ===========================
   GALERÍA
=========================== */
.galeria {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.galeria h2 {
  text-align: center;
  margin-bottom: 30px;
  background: none;
  border-bottom: none;
  padding: 0;
}

.galeria-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.galeria-grid img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.3s ease;
  margin-bottom: 0;
}

.galeria-grid img:hover {
  transform: scale(1.05);
}

/* ===========================
   GALERÍA SECCIÓN (módulos)
=========================== */
.galeria-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.galeria-section h1 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 40px;
  letter-spacing: 2px;
  position: relative;
}

.galeria-section h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ff0000;
  margin: 15px auto 0;
  border-radius: 10px;
}

.galeria-section .galeria {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin: 0;
  padding: 0;
  max-width: none;
}
.galeria-section .galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas */
  gap: 16px;
}

.galeria-section .galeria img {
  width: 100%;
  aspect-ratio: 3 / 4;   /* proporción vertical, ideal para tatuajes */
  object-fit: contain;
  background-color: #111; /* fondo oscuro para los espacios vacíos */
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 255, 34, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.galeria-section .galeria img:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 40px rgba(201,0,0,.4);
}

/* ===========================
   INFO
=========================== */
.info {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.info-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
}

.info-card h3 {
  margin-bottom: 10px;
  border-left: none;
  padding-left: 0;
}

.info-card p {
  color: #bbb;
}

/* ===========================
   MÓDULOS BOTONES
=========================== */
.modulos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

.modulo-btn {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s;
  font-size: 1.2rem;
  font-weight: bold;
}

.modulo-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
}

.modulo-btn,
.modulo-btn * {
  position: relative;
  z-index: 1;
}

.modulo-btn span {
  display: block;
  font-size: 0.9rem;
  color: #ffdede;
  margin-top: 8px;
  font-weight: normal;
}

.modulo-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

/* Fondos de módulos */
.temporales  { background-image: url("../img/henna.jpg"); }
.artesanias  { background-image: url("../img/arte.jpg"); }
.permanentes { background-image: url("../img/perma.jpg"); }

/* ===========================
   CONTACTO HOME
=========================== */
.contacto-home {
  padding: 50px 20px;
  background: #000000;
  text-align: center;
}

.contacto-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.contact-card {
  display: block;
  padding: 18px;
  text-align: center;
  font-weight: bold;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  background: #1a1a1a;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  cursor: pointer;
}

.contact-card:hover {
  background: #c9a24d;
  color: #000;
  transform: translateY(-4px);
}

.contact-card[href*="wa.me"]        { background: #25D366; }
.contact-card[href*="wa.me"]:hover  { box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5); transform: translateY(-4px); }

.contact-card[href*="instagram"]       { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.contact-card[href*="instagram"]:hover { box-shadow: 0 10px 25px rgba(221, 42, 123, 0.5); transform: translateY(-4px); }

.contact-card[href*="maps.google"]       { background: #EA4335; }
.contact-card[href*="maps.google"]:hover { box-shadow: 0 10px 25px rgba(234, 67, 53, 0.5); transform: translateY(-4px); }

.contact-card[href*="facebook"]       { background: #1877F2; }
.contact-card[href*="facebook"]:hover { box-shadow: 0 10px 25px rgba(24, 119, 242, 0.5); transform: translateY(-4px); }

.contact-card i {
  font-size: 26px;
  margin-bottom: 8px;
  display: block;
}

/* ===========================
   CTA
=========================== */
.cta {
  display: inline-block;
  padding: 15px 40px;
  background: #c9a24d;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.cta-agenda {
  background: radial-gradient(circle at top, #222, #000);
  padding: 80px 20px;
  text-align: center;
}

.cta-agenda h2 {
  font-size: 2.2rem;
  background: none;
  border-bottom: none;
  padding: 0;
}

.cta-agenda p {
  color: #c9a24d;
  margin: 15px 0 30px;
}

.btn-agendar {
  display: inline-block;
  padding: 15px 45px;
  background: #c90000;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-agendar:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

/* ===========================
   BOTONES WSP / VOLVER
=========================== */
.btn-wsp,
.btn-volver {
  text-decoration: none;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  display: block;
}

.btn-wsp    { background-color: #25D366; }
.btn-volver { background-color: #444; }

.acciones {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.volver {
  position: absolute;
  left: 20px;
  top: 20px;
  color: #fff;
  text-decoration: none;
}

.top-left-btn {
  position: absolute;
  top: 20px;
  left: 20px;
}

/* ===========================
   AGENDA
=========================== */
.agenda {
  padding: 80px 20px;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  text-align: center;
}

.agenda h2,
#tituloAgenda {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #c9a24d;
}

.agenda-desc {
  color: #bbb;
  margin-bottom: 50px;
  font-size: 1rem;
}

/* ===========================
   GRID TATUADORES
=========================== */
.tatuadores {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.tatuador-card {
  background: #1a1a1a;
  border-radius: 18px;
  padding: 25px;
  cursor: pointer;
  border: 1px solid #2a2a2a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tatuador-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(201,0,0,0.4);
}

.tatuador-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;      /* imagen completa sin recorte */
  object-position: center;
  background: #0a0a0a;      /* fondo oscuro en espacios vacíos */
  border-radius: 14px;
  margin-bottom: 15px;
}

.tatuador-card h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  border-left: none;
  padding-left: 0;
}

.tatuador-card span {
  font-size: 0.9rem;
  color: #c9a24d;
}

/* ===========================
   FORM AGENDA
=========================== */
.form-agenda {
  max-width: 500px;
  margin: auto;
  background: #111;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 15px 40px rgba(0,0,0,.6);
}

.form-agenda h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #c9a24d;
  background: none;
  border-bottom: none;
  padding: 0;
  font-size: 1.5rem;
}

.form-agenda label {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  color: #ccc;
  font-size: 0.9rem;
}

.form-agenda input,
.form-agenda select {
  margin-top: 8px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
}

.form-agenda input:focus,
.form-agenda select:focus {
  outline: 2px solid #c90000;
  box-shadow: none;
  border-color: transparent;
}

.form-agenda button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #c90000, #ff2e2e);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.form-agenda button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,0,0,.4);
}

/* ===========================
   AGENDA TIPO CALENDARIO
=========================== */
.agenda-calendario {
  min-height: 100vh;
  padding: 60px 20px;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #fff;
}

.agenda-calendario h1 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.servicio {
  color: #c9a24d;
  margin-bottom: 30px;
}

.agenda-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 900px;
}

.calendario {
  background: #111;
  padding: 25px;
  border-radius: 18px;
  border: 1px solid #2a2a2a;
}

.calendario-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendario-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
}

.dias-semana,
.dias {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 10px;
}

.dias-semana span {
  color: #aaa;
  font-size: 0.85rem;
}

.dias span {
  padding: 10px 0;
  border-radius: 50%;
  cursor: pointer;
}

.dias span:hover       { background: #222; }
.dias .activo          { background: #fff; color: #000; font-weight: bold; }
.dias .deshabilitado   { color: #555; cursor: not-allowed; }

.horas {
  background: #111;
  padding: 25px;
  border-radius: 18px;
  border: 1px solid #2a2a2a;
}

.horas h3 {
  margin-bottom: 20px;
  border-left: none;
  padding-left: 0;
}

.hora-btn {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  background: #000;
  border: 1px solid #333;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
}

.hora-btn:hover  { background: #222; }
.hora-btn.activo { background: #fff; color: #000; font-weight: bold; }

.zona-horaria {
  margin-top: 30px;
  max-width: 400px;
}

.zona-horaria label {
  display: block;
  margin-bottom: 6px;
  color: #bbb;
}

.zona-horaria select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #111;
  color: #fff;
}

.btn-confirmar {
  margin-top: 30px;
  padding: 15px 40px;
  background: linear-gradient(135deg, #c90000, #ff2e2e);
  border: none;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
/* ===========================
   OPINIONES
=========================== */
.opiniones {
  padding: 80px 20px;
  background: #0b0b0b;
}
.opiniones h2 {
  text-align: center;
  font-size: 2rem;
  background: none;
  border-bottom: none;
  padding: 0;
}
.subtitulo {
  text-align: center;
  color: #c9a24d;
  margin-top: 6px;
  font-size: 0.95rem;
}
.opiniones-grid {
  max-width: 1100px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.opinion-card {
  background: #1a1a1a;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid #2a2a2a;
  transition: transform 0.3s, box-shadow 0.3s;
}
.opinion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,.4);
}
.estrellas {
  color: #fbbc04;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.opinion-card p    { font-size: 0.95rem; color: #ddd; line-height: 1.4; }
.opinion-card span { display: block; margin-top: 12px; font-size: 0.85rem; color: #aaa; }
.form-opinion {
  max-width: 600px;
  margin: 70px auto 0;
  background: #111;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #2a2a2a;
}
.form-opinion h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  border-left: none;
  padding-left: 0;
}
.form-opinion input,
.form-opinion select,
.form-opinion textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
}
.form-opinion textarea    { resize: none; min-height: 100px; }
.form-opinion input[type="file"] { border: none; background: transparent; color: #aaa; }
.form-opinion button {
  width: 100%;
  padding: 15px;
  background: #c9a24d;
  color: #000;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}
.form-opinion button:hover {
  background: #e6b84e;
  transform: scale(1.03);
}
.opinion-foto {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  background: #111;
  border-radius: 10px;
  margin-top: 14px;
  border: 1px solid #2a2a2a;
}

/* ===========================
   WHATSAPP FLOTANTE
=========================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
  animation: pulse 2s infinite;
}

/* ===========================
   ESTADO
=========================== */
.estado      { padding: 5px 10px; border-radius: 6px; font-size: 12px; font-weight: bold; }
.disponible  { background: #00c853; color: white; }
.ocupado     { background: #d50000; color: white; }

/* ===========================
   UTILIDADES
=========================== */
.oculto { display: none; }

.confirmacion {
  margin-top: 25px;
  color: #25D366;
  font-weight: bold;
  text-align: center;
  font-size: 1.1rem;
}

/* ===========================
   LOGO / TÍTULO
=========================== */
.titulo-con-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo-titulo {
  width: 60px;
  height: auto;
}

/* ===========================
   ADMIN GRID / FORM-BOX
=========================== */
.section     { margin-bottom: 50px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.form-box {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
}

/* ===========================
   HERO ARTESANÍAS
=========================== */
.artesanias-hero {
  background:
    linear-gradient(to bottom, rgba(0,0,0,.7), rgba(0,0,0,.9)),
    url("../img/artesanias-hero.jpg") center / cover no-repeat;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #aaa;
}

/* ===========================
   RESPONSIVE
=========================== */

/* Tablet ≥ 768px */
@media (min-width: 768px) {
  .contenedor        { grid-template-columns: repeat(2, 1fr); }
  .cards-precio      { grid-template-columns: repeat(2, 1fr); }
  .contacto-cards    { grid-template-columns: repeat(4, 1fr); }
  .beneficios        { grid-template-columns: repeat(4, 1fr); }
  .modulos           { grid-template-columns: repeat(3, 1fr); }
  .galeria-grid      { grid-template-columns: repeat(2, 1fr); }
  .galeria-section .galeria { grid-template-columns: repeat(2, 1fr); }
  .info              { grid-template-columns: repeat(3, 1fr); }
  .tatuadores        { grid-template-columns: repeat(3, 1fr); }
  .opiniones-grid    { grid-template-columns: repeat(3, 1fr); }
  .acciones          { flex-direction: row; }
  .agenda-grid       { grid-template-columns: 1fr 1fr; }

  table, thead, tbody, th, td, tr { display: revert; }
}

/* PC ≥ 1024px */
@media (min-width: 1024px) {
  .contenedor {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: auto;
  }

  .galeria-grid          { grid-template-columns: repeat(4, 1fr); }
  .galeria-section .galeria { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile ≤ 480px */
@media (max-width: 480px) {
  .hero h1         { font-size: 2rem; }
  .hero p          { font-size: 0.95rem; }
  .logo-superior img { width: 140px; }
}

/* Mobile ≤ 768px — tablas responsive */
@media (max-width: 768px) {
  table, thead, tbody, th, td, tr { display: block; }

  th { display: none; }

  td {
    border: none;
    position: relative;
    padding-left: 50%;
    margin-bottom: 10px;
    background: #1a1a1a;
  }

  td:before {
    position: absolute;
    left: 10px;
    top: 12px;
    font-weight: bold;
    color: #b30000;
  }
}
.countdown-text {
    font-size: 0.9rem;
    color: #aaa;
    letter-spacing: 0.5px;
}

.countdown-text span {
    color: #25D366;
    font-weight: bold;
}