:root {
  --black-soft: #11100d;
  --black-footer: #0d0c0a;
  --black-card: #1d1812;
  --gold: #e8bd82;
  --gold-light: #f5d7a9;
  --brown: #6b4422;
  --cream: #fff4e4;
  --text: #f8ead8;
  --muted: #d8b991;
  --bg: #cfa06b;
  --bg-dark: #9a6a3d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background:antiquewhite;
  color: var(--text);
  overflow-x: hidden;
}

.container {
  width: 100%;
  margin: 0 auto;
  background-color: antiquewhite;
  padding: 0;
  box-shadow: 0 0 20px rgba(9, 0, 0, 0.1);
  border-radius: 10px;
  box-sizing: border-box;
}

/* HEADER */

.header {
  width: 100%;
  background: rgba(17, 16, 13, 0.96);
  border-bottom: 1px solid rgba(232, 189, 130, 0.18);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header {
  width: 100%;
  background: #0d0c0a;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar {
  width: min(1200px, 92%);
  margin: auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--cream);
}

.logo img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 18px;
}

.logo h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #FFFFFF;
}

.logo span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  padding-left: 100px;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding: 8px 0px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: var(--gold);
  left: 0;
  bottom: 0;
  border-radius: 20px;
  transition: width 0.35s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-reservar {
  text-decoration: none;
  padding: 13px 23px;
  border-radius: 999px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: 0.3s ease;
  box-shadow: 0 12px 25px rgba(214, 170, 118, 0.22);
  background: linear-gradient(
    270deg,
    #5ed088,
    #00cf4c,
    #25d366,
    #47d47a
  );
  background-size: 300% 300%;
  color: #f8f8f8;
  animation: moverColores 4s ease infinite;
}

.btn-reservar:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.162);
}

@keyframes moverColores {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  color: var(--cream);
  font-size: 28px;
  cursor: pointer;
}

/* REDES SOCIALES LATERALES */


.social-fixed {
  position: fixed;
  right: 0;
  top: 80%;
  transform: translateY(-70%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-fixed a {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 25px;
  border-radius: 34px 0 0 34px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);

  /* Aquí queda pegado a la derecha */
  transform: translateX(8px);

  /* Solo se anima este botón, no los demás */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-fixed a:hover,
.social-fixed a:focus,
.social-fixed a:active {
  transform: translateX(0);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.social-fixed i {
  pointer-events: none;
}

.facebook {
  background: #1877f2;
}

.instagram {
  background: linear-gradient(135deg, #feda75, #d62976, #962fbf, #4f5bd5);
}

.tiktok {
  background: #050505;
}

.whatsapp {
  background: #25d366;
}

/* HERO */

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(214, 170, 118, 0.24), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(241, 208, 163, 0.11), transparent 30%),
    linear-gradient(135deg, #050505 0%, #101010 55%, #25180d 100%);
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 50px 0px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  background: rgba(214, 170, 118, 0.12);
  border: 1px solid rgba(214, 170, 118, 0.35);
  border-radius: 999px;
  color: var(--dorado-claro);
  font-weight: 900;
  margin-bottom: 24px;
}

.hero-text h2 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  font-weight: 900;
  color: #e5e5e3;
  margin-bottom: 24px;
}

.hero-text p {
  max-width: 590px;
  color: var(--texto-suave);
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  box-shadow: 0 15px 28px rgba(214, 170, 118, 0.23);
    background: linear-gradient(
    270deg,
    #5ed088,
    #00cf4c,
    #25d366,
    #47d47a
  );
  background-size: 300% 300%;
  color: #ffffff;
  animation: moverColores 4s ease infinite;
}

@keyframes moverColores {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.btn-secondary {
  color: #feffff;
  border: 1px solid rgba(8, 107, 157, 0.35);
  background: rgb(6, 107, 180);
  text-decoration: none;
  background: linear-gradient(
    270deg,
    #1f1fc1,
    #272492,
    #3d48c0,
    #0a53a6
  );
  background-size: 300% 300%;
  color: #ffffff;
  animation: moverColores 4s ease infinite;
}

.btn-secondary:hover {
  transform: translateY(-4px);
}

.hero-image-card {
  background: #e7cca6;
  border: 1px solid rgba(214, 170, 118, 0.25);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--sombra);
}

.hero-image {
  min-height: 500px;
  border-radius: 20px;
  background:
    linear-gradient(rgba(241, 241, 241, 0.12), rgba(5, 5, 5, 0.35)),
    url("logos/logo-educando.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-info {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 310px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(5, 5, 5, 0.78);
  border: 1px solid rgba(214, 170, 118, 0.25);
  backdrop-filter: blur(10px);
}

.hero-info h3 {
  color: var(--dorado-claro);
  font-size: 21px;
  font-weight: 900;
}

.hero-info p {
  color: var(--texto-suave);
  margin-top: 5px;
  line-height: 1.5;
}

/* TITULOS */

main
{
  background: antiquewhite;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0px;
  box-sizing: border-box;
}

/* Este es el que centra todo */
.contenedor-principal {
  width: 100%;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 35px;
}

.section-title h2 {
  font-family: "Montserrat", sans-serif;
  margin: 10px 0;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1;
  font-weight: 900;
  font-size: 38px;
  color: #0e1011;
  margin-bottom: 15px;
}

/*SEPARADOR*/

.separador-paw {
  width: min(1200px, 90%);
  margin: 45px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.separador-paw span {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    #e8bd82,
    #8b5e34,
    #e8bd82,
    transparent
  );
}

.separador-paw i {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #8b5e34, #e8bd82);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(139, 94, 52, 0.35);
  animation: huellaPulse 1.8s infinite ease-in-out;
}

@keyframes huellaPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(139, 94, 52, 0.35);
  }

  50% {
    transform: scale(1.12);
    box-shadow: 0 14px 35px rgba(139, 94, 52, 0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(139, 94, 52, 0.35);
  }
}

/* Responsive */
@media (max-width: 576px) {
  .separador-paw {
    width: 92%;
    gap: 12px;
    margin: 5px auto;
  }

  .separador-paw i {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }

  .separador-paw span {
    height: 2px;
  }
}

/* SERVICIOS */

.servicios-perrunos {
  padding: 0px 20px;
  padding-bottom: 40px;
  background: antiquewhite;
}

.servicios-contenedor {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title span {
  color: #8b5e34;
  font-weight: 700;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #3b2414;
}

/* GRID PRINCIPAL */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

/* TODAS LAS CARDS */

.servicio-card {
  grid-column: span 2;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 35px 25px;
  min-height: 280px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: transparent;
  isolation: isolate;
  transition: all 0.3s ease;
}

/* Borde dorado animado */
.servicio-card::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    #6a0bb8 120deg,
    #461092 160deg,
    #0832a4 190deg,
    #1d1c76 220deg,
    transparent 360deg
  );
  animation: bordeDorado 4s linear infinite;
  z-index: -2;
}

/* Fondo interno de la card */
.servicio-card::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: #fff;
  border-radius: 20px;
  z-index: -1;
}

/* Animación del borde */
@keyframes bordeDorado {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Efecto al pasar el mouse */
.servicio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.35);
}

.servicio-icon-img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  margin-bottom: 18px;
  display: block;
}

.servicio-card h3 {
  color: #3b2414;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.servicio-card p {
  color: #6b4b33;
  line-height: 1.6;
}

/* CENTRAR LAS 2 DE ABAJO */
.servicio-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.servicio-card:nth-child(5) {
  grid-column: 4 / span 2;
}

/* QUIÉNES SOMOS */

.quienes-somos {
  padding: 0px;
  padding-top: 45px;
}

.quienes-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.quienes-texto {
  animation: fadeInUp 0.8s ease;
}

.quienes-etiqueta {
  display: inline-block;
  background: #18a099;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.quienes-texto h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: #3b2414;
  margin-bottom: 20px;
  font-weight: 800;
}

.quienes-texto p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5f4633;
  margin-bottom: 16px;
}

.quienes-imagen {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.9s ease;
}

.imagen-decoracion {
  position: absolute;
  width: 100%;
  max-width: 420px;
  height: 100%;
  max-height: 420px;
  background: linear-gradient(135deg, #13a2a7, #16b6a8);
  border-radius: 35% 65% 64% 36% / 43% 35% 65% 57%;
  top: 20px;
  right: 0;
  z-index: 1;
  opacity: 0.95;
}

.quienes-imagen img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  transition: transform 0.4s ease;
}

.quienes-imagen img:hover {
  transform: scale(1.03) rotate(-1deg);
}

@media (max-width: 600px) {
  .servicio-icon-img {
    width: 60px;
    height: 60px;
  }

  .servicio-card {
    padding: 28px 20px;
    min-height: 240px;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .quienes-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quienes-texto {
    order: 1;
    text-align: center;
  }

  .quienes-botones {
    justify-content: center;
  }

  .quienes-imagen {
    order: 2;
  }

  .quienes-imagen img {
    height: 420px;
  }

  .imagen-decoracion {
    max-width: 360px;
    max-height: 360px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .quienes-somos {
    padding: 40px 16px;
  }

  .quienes-texto h2 {
    font-size: 1.9rem;
  }

  .quienes-texto p {
    font-size: 0.98rem;
  }

  .quienes-imagen img {
    max-width: 100%;
    height: 340px;
    border-radius: 22px;
  }

  .imagen-decoracion {
    max-width: 280px;
    max-height: 280px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(35px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*INSTAGRAM*/

.elfsight-app-6a099f40-ff8a-4416-a260-e170574ec99d span {
  color: #ffffff;
  border-radius: 50px;
}

.instagram-section {
  padding: 0;
  margin: 0;
}

.instagram-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background: #000000;
  border-radius: 20px;
}

/* ENCABEZADO */
.instagram-header {
  padding: 20px 30px;
  border-bottom: 1px solid #0c0c0c;
}

.instagram-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.profile-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e1306c;
  padding: 0px;
  background: #fff;
}

.profile-info {
  flex: 1;
}

.profile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.profile-top h2 {
  font-size: 20px;
  color: #ffffff;
  margin: 0;
}

.profile-user {
  color: #c5c5c5;
  margin: auto;
  font-size: 16px;
  margin-bottom: 10px;
}

.profile-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  color: #c5c5c5;
  font-size: 16px;
}

.profile-stats strong {
  color: #c5c5c5;
}

.follow-btn {
  background: #0095f6;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.follow-btn:hover {
  background: #007ed6;
}

/*PREGUNTAS*/

.faq-section {
  padding: 0;
  margin: 40px 0px;
  font-family: 'Poppins', sans-serif;
  max-width: 1200px;
  width: 100%;
  border-radius: 20px;
}

.faq-title {
  text-align: center;
  margin-bottom: 35px;
}

.faq-title h2 {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  background: #f2c300;
  border-radius: 20px;
  color: #083b2f;
  padding: 8px 35px;
  font-size: 32px;
  font-weight: 700;
  
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  align-items: start; /* ESTO EVITA QUE LA CAJA DEL LADO SE ESTIRE */
}

.faq-item {
  align-self: start;
  height: auto;
}

.faq-question {
  width: 100%;
  padding: 15px 25px;
  background: #fff;
  border-radius: 20px;
  border: none;
  outline: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 14px;

  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #00613c;
  text-align: left;
}

.faq-question .icon {
  font-size: 28px;
  font-weight: 800;
  color: #00613c;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  color: #f2b800;
}

.faq-item.active .icon {
  color: #f2b800;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 20px 10px;
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: #102b24;
}

.faq-answer p + p {
  padding-top: 15px;
}

/* RESERVA */

.reserva {
  max-width: 1200px;
  width: 100%;
  margin-bottom: 20px;
  padding: 48px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(35, 28, 20, 0.96), rgba(94, 60, 27, 0.92));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(232, 189, 130, 0.2);
}

.reserva-card h2 {
  max-width: 1000px;
  margin: 28px auto 18px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  color: var(--cream);
}

.reserva-card p {
  color: #e8dac7;
  font-size: 19px;
  margin-bottom: 34px;
}

.reserva-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 13px 23px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(
    270deg,
    #e6bb8b,
    #f1d0a3,
    #d2a06d,
    #d6aa76
  );
  background-size: 300% 300%;
  color: #000000;
  animation: moverColores 4s ease infinite;
}

.reserva-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgb(234, 224, 208);
  color: #644615;
  padding: 10px 28px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
  font-weight: 800;
}

.tag i {
  color: var(--brown);
}

/* FOOTER */

.footer {
  background: rgba(13, 12, 10, 0.98);
  border-top: 1px solid rgba(232, 189, 130, 0.16);
  padding: 70px 20px 28px;
}

.footer-content {
  width: min(1180px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: 70px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(232, 189, 130, 0.16);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.footer-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 18px;
}

.footer-logo h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  color: #ffffff;
}

.footer-logo span {
  color: var(--gold-light);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.footer-brand p {
  color: #ffffff;
  line-height: 1.8;
  max-width: 460px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.footer-social a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #000000;
  border: 1px solid rgba(232, 189, 130, 0.26);
  font-size: 21px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-5px);
  background: var(--gold-light);
}

.footer-column h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  margin-bottom: 22px;
  color: #ffffff;
}

.footer-column a,
.footer-column p {
  display: block;
  color: var(--gold-light);
  text-decoration: none;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-column i {
  width: 28px;
  color: #ffffff;
}

.footer-column a:hover {
  color: var(--cream);
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  color: #ffffff;
  font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .navbar {
    gap: 18px;
  }

  .nav-links {
    gap: 18px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    padding: 0px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .section-title {
  text-align: center;
  margin-bottom: 25px;
}

}
@media (max-width: 990px) {
  .menu-icon {
    display: block;
    padding-right: 20px;
  }

  .navbar {
    min-height: 82px;
  }

  .logo img {
    width: 58px;
    height: 58px;
  }

  .logo h1 {
    font-size: 24px;
  }

  .logo span {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: rgba(17, 16, 13, 0.98);
    flex-direction: column;
    align-items: center;
    padding: 26px 20px;
    gap: 22px;
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    border-bottom: 1px solid rgba(232, 189, 130, 0.2);
  }

  #menu-toggle:checked ~ .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .btn-reservar {
    display: none;
  }

  .reserva {
    min-height: auto;
    padding: 80px 16px 60px;
  }

  .reserva-card {
    border-radius: 20px;
    padding: 44px 24px;
  }

  .reserva-card p {
    font-size: 17px;
  }

  .gallery-grid,
  .quienes-grid {
    grid-template-columns: 1fr;
  }

  .reserva {
    flex-direction: column;
    text-align: center;
    padding: 38px 0px;
  }
}

@media (max-width: 600px) {
  .section {
    width: 92%;
    padding: 0px 0px;
    border-radius: 20px;
  }

  .cards {
    grid-template-columns: 1fr;
    padding: 0px 20px;
  }

  .gallery-grid img {
    height: 260px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo {
    align-items: flex-start;
  }

  .footer-logo span {
    font-size: 11px;
  }

  .footer-social {
    flex-wrap: wrap;
  }
}

@media (max-width: 992px) {
  .hero-content,
  .about-container,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .section, .hero
  {
    padding: 20px 0px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section .quienes-grid {
  padding: 0px 20px;

  }
}

  @media (max-width: 480px) {
  .logo-text span {
    display: none;
  }

  .hero-text h2 {
    font-size: 39px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  }

@media (max-width: 768px) {

  .hero-content {
    padding: 10px 10px;
    gap: 35px;
  }

  .hero-text h2 {
    font-size: 38px;
    line-height: 1.05;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-buttons {
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-image-card {
    padding: 14px;
    border-radius: 20px;
  }

  .hero-image {
    min-height: 250px;
    border-radius: 20px;
    width: auto;
    height: auto;
    max-width: none;
    flex-shrink: 0;
  }

  .hero-info {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }

}

@media (max-width: 1300px) {

  .hero-content {
    padding: 10px 50px;
  }
}

@media (max-width: 768px) {
  .social-fixed a{
    display: none;
  }
}

/* TABLET */
@media (max-width: 900px) {
  .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .servicio-card,
  .servicio-card:nth-child(4),
  .servicio-card:nth-child(5) {
    grid-column: auto;
  }
}

/* CELULAR */
@media (max-width: 576px) {
  .servicios-grid {
    grid-template-columns: 1fr;
  }

  .servicio-card {
    min-height: auto;
    padding: 30px 22px;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

/* RESPONSIVE Instagram*/
@media (max-width: 1100px) {
  .instagram-feed {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1400px) {
  main{
    padding: 0px 20px;
  }

  .servicios-perrunos {
  padding: 30px 0px;
}
  .separador-paw {
  margin: 25px auto;
  margin-bottom: 0;

}
}

@media (max-width: 768px) {
  .instagram-header {
    padding: 20px 0px;
    max-width: 100%;
  }

  .profile-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-stats {
    gap: 15px;
    font-size: 15px;
  }

  .instagram-feed {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .instagram-feed {
    grid-template-columns: 1fr;
  }

  .profile-img {
    width: 65px;
    height: 65px;
  }

  .profile-top h2 {
    font-size: 18px;
  }

  .profile-user,
  .profile-stats {
    font-size: 14px;
  }

  .follow-btn {
    padding: 9px 14px;
    font-size: 14px;
  }
}

/*PREGUNTAS*/

@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-title h2 {
    font-size: 22px;
    padding: 8px 10px;
  }

  .faq-question {
    font-size: 17px;
  }

  .faq-answer p {
    font-size: 16px;
  }

  .faq-section{
    margin: 25px 0px;
  }

  .servicios-perrunos {
  padding: 20px 0px;
}

}

.barra-beneficios {
  width: 100%;
  background: #553a96;
  padding: 26px 20px;
  position: relative;
}

/* franja superior más oscura */
.barra-beneficios::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.18);
}

.barra-contenedor {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 55px;
  flex-wrap: wrap;
}

.beneficio-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.beneficio-item i {
  color: #ffc400;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .barra-beneficios {
    padding: 24px 15px;
  }

  .barra-contenedor {
    gap: 22px;
    justify-content: flex-start;
  }

  .beneficio-item {
    width: 100%;
    justify-content: center;
    font-size: 15px;
  }
}

.icono {
  color: #ffc400;
  font-size: 20px;
  display: inline-block;
}

/* Corazón con efecto de latido */
.latido {
  animation: latido 1.4s infinite ease-in-out;
}

@keyframes latido {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}

/* Árbol con movimiento suave */
.balanceo {
  animation: balanceo 2s infinite ease-in-out;
}

@keyframes balanceo {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

/* Carrito moviéndose */
.mover-carro {
  animation: moverCarro 1.8s infinite ease-in-out;
}

@keyframes moverCarro {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-8px);
  }
}

/* Estrella girando 360 grados */
.girar-estrella {
  animation: girarEstrella 2.5s infinite linear;
}

@keyframes girarEstrella {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 390px) {
  .barra-contenedor {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .beneficio-item {
    font-size: 13px;
  }
}

/* Responsive barra verde */
@media (max-width: 768px) {
  .barra-beneficios {
    padding: 20px 20px;
  }

  .barra-contenedor {
    max-width: 400px;
    margin: 0px auto;
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    align-items: center;
    column-gap: 28px;
    row-gap: 22px;
  }

  .beneficio-item {
    width: auto;
    justify-content: center;
    font-size: 12px;
    white-space: nowrap;
  }

  .beneficio-item i {
    font-size: 15px;
  }

  /* Primer item arriba centrado */
  .beneficio-item:nth-child(1) {
    grid-column: 1 / -1;
  }

  /* Último item abajo centrado */
  .beneficio-item:nth-child(4) {
    grid-column: 1 / -1;
  }
}