/* css/style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f6f2;
  color: #243333;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding: 0 5%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: .3s;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  margin-left: auto;
}

.nav a {
  text-decoration: none;
  color: #243333;
  font-size: 15px;
  position: relative;
}

.nav a:hover {
  color: #1ca7a8;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #1ca7a8;
  transition: .3s;
}

.nav a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  border: none;
  background: none;
  font-size: 28px;
}
/* HERO */

.hero {
  min-height: 82vh;
  padding: 120px 8% 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,#dff7f6 0%,#ffffff 55%,#fff7e8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(28,167,168,.28);
  border-radius: 50%;
  left: -120px;
  top: 80px;
  filter: blur(20px);
}

.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(216,192,143,.3);
  border-radius: 50%;
  left: 420px;
  bottom: -120px;
  filter: blur(25px);
}

.hero-content {
  flex: 0 1 700px;
  max-width: 700px;
  min-height: 440px;
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 45px;
  border-radius: 35px;
  border: 1px solid rgba(255,255,255,.75);
  box-shadow:
    0 30px 70px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.8);
}

.hero-image {
  flex: 0 1 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  animation: flotar 4s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  max-width: 650px;
  height: 440px;
  object-fit: cover;
  border-radius: 35px;
  box-shadow: 0 30px 70px rgba(0,0,0,.18);
  transition: .4s;
}

.hero-image img:hover {
  transform: translateY(-10px) scale(1.02);
}

@keyframes flotar {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* GENERALES */

.tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #e9f8f8;
  color: #1ca7a8;
  font-size: 14px;
  font-weight: bold;
}

h1 {
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 26px;
}

h2 {
  font-size: 48px;
  line-height: 1.08;
  margin-bottom: 18px;
}

p {
  font-size: 17px;
  line-height: 1.7;
  color: #5d6a6a;
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: .3s;
}

.primary {
  background: #1ca7a8;
  color: #fff;
}

.primary:hover {
  background: #168c8d;
  transform: translateY(-3px);
}

.secondary {
  border: 1px solid #d8c08f;
  color: #9f7f35;
  background: #fffaf0;
}

.secondary:hover {
  transform: translateY(-3px);
}

.section,
.promo,
.hotsale,
.ruleta,
.instagram-section,
.contacto-section {

  padding: 90px 8%;
  background: transparent;

}

.section {
  text-align: center;
}

.section-subtitle {
  max-width: 680px;
  margin: 0 auto 42px;
  font-size: 18px;
  line-height: 1.65;
}

/* SERVICIOS */

.cards {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
}

.card {
  position: relative;
  padding: 22px;
  border-radius: 30px;
  background: linear-gradient(145deg,#ffffff,#f2fbfb);
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  text-align: left;
  transition: .35s;
  overflow: hidden;
  border: 1px solid rgba(28,167,168,.12);
  min-height: 380px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(28,167,168,.18);
}

.card-img-container {
  height: 220px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
  display: block;
  transition: .5s;
}

.card:hover .card-img {
  transform: scale(1.08);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1ca7a8;
}

.card-link {
  display: inline-block;
  margin-top: 18px;
  color: #9f7f35;
  font-weight: bold;
  text-decoration: none;
}

/* PROMOCIONES */

.promo {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.promo::before{
  display:none;
}

.promo::after{
  display:none;
}

.promo-header,
.promo-layout,
.hotsale-content,
.ruleta-content,
.instagram-content,
.contact-layout {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

.promo-header {
  text-align: left;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.promo-header p {
  font-size: 18px;
  line-height: 1.65;
  max-width: 700px;
}

.promo-layout {
  display: grid;
  grid-template-columns: .9fr 1.35fr;
  gap: 45px;
  align-items:start;
  position: relative;
  z-index: 2;
}

.promo-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.promo-card {
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(20px);
  padding: 35px;
  border-radius: 35px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  border: 1px solid rgba(255,255,255,.8);
  transition: .4s;
  overflow: hidden;
  position: relative;
  min-height: 220px;
}

.promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(28,167,168,.20);
}

.promo-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e9f8f8;
  color: #1ca7a8;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 18px;
}

.promo-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #243333;
}

.promo-card p {
  margin-bottom: 25px;
}

.promo-link {
  text-decoration: none;
  font-weight: bold;
  color: #1ca7a8;
  transition: .3s;
}

.promo-link:hover {
  padding-left: 10px;
}

.promo-video{
  width:100%;
  height:100%;
  min-height:720px;
  position:relative;
  border-radius:35px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,.15);
  background:rgba(255,255,255,.45);
  align-self:stretch;
}

.promo-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* AUDIO BUTTON */

.audio-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,.90);
  color: #243333;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  transition: .3s;
}

.audio-btn:hover {
  transform: translateY(-3px);
}

/* HOT SALE */

.hotsale{
  background: transparent;
}

.hotsale-content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
}

.hotsale-text {
  text-align: left;
}

.hotsale-text p {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.hotsale-gallery {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  align-items: center;
}

.hotsale-gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 35px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  transition: .5s;
  cursor: pointer;
}

.hotsale-gallery img:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 30px 70px rgba(28,167,168,.25);
}

.countdown {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}

.time-box {
  background: white;
  padding: 15px;
  border-radius: 20px;
  min-width: 90px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.time-box span {
  display: block;
  font-size: 30px;
  font-weight: bold;
  color: #1ca7a8;
}

.time-box small {
  color: #666;
}

/* GALERÍA */

.galeria {
  text-align: center;
}

.gallery {
  display: grid !important;
  grid-template-columns: repeat(4,260px) !important;
  justify-content: center !important;
  gap: 22px;
  margin: 40px auto 0;
  width: 100%;
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 30px;
  transition: .4s;
  cursor: pointer;
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
  filter: saturate(1.08) contrast(1.04);
}

.gallery img:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 32px 70px rgba(28,167,168,.25);
}

/* RULETA */

.ruleta {
  background: transparent;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ruleta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.ruleta-circle {
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.ruleta-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  animation: flotarRuleta 4s ease-in-out infinite;
}

.ruleta-icon:hover {
  transform: scale(1.03);
}

@keyframes flotarRuleta {
  0% { transform: scale(1) translateY(0); }
  50% { transform: scale(1) translateY(-8px); }
  100% { transform: scale(1) translateY(0); }
}

.ruleta .btn {
  margin-top: 30px;
  position: relative;
  z-index: 2;
  padding: 18px 34px;
  background: linear-gradient(135deg,#1ca7a8,#36c8c9);
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 999px;
  box-shadow: 0 15px 35px rgba(28,167,168,.35);
}

/* RULETA CELULAR */
@media (max-width: 768px) {
  .ruleta-content {
    flex-direction: column;
    gap: 20px;
  }

  .ruleta-circle {
    width: 210px;
    height: 210px;
  }

  .ruleta-icon {
    transform: scale(1) !important;
  }

  .ruleta h2 {
    margin-top: 15px;
    font-size: 38px;
  }
}
/* INSTAGRAM */

.instagram-section {
  background: #f7f6f2;
}

.instagram-content {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
}

.instagram-text {
  text-align: left;
}

.instagram-text p {
  margin-bottom: 28px;
}

.instagram-card {
  padding: 38px;
  max-width: 420px;
  margin-left: auto;
  border-radius: 35px;
  background: white;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  text-align: center;
  transition: .4s;
}

.instagram-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(28,167,168,.18);
}

.instagram-card h3 {
  font-size: 34px;
  color: #1ca7a8;
  margin-bottom: 15px;
}

.insta-link {
  color: #1ca7a8;
  font-weight: bold;
  text-decoration: none;
  transition: .3s;
}

.insta-link:hover {
  opacity: .7;
}

/* CONTACTO */

.contact-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  max-width: 1250px;
  margin: 50px auto 0;
  align-items: stretch;
}

.contact-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  border-radius: 35px;
  background: white;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  text-align: left;
}

.contact-box .btn {
  margin-top: 20px;
  width: fit-content;
  padding: 16px 32px;
}

.map-box {
  height: 420px;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.10);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
/* SUCURSALES */

.branches-grid{
  display:flex;
  flex-direction:column;
  gap:45px;

  max-width:1300px;
  margin:50px auto 0;
}

.branch-card{
  display:grid;
  grid-template-columns:380px 1fr;
  gap:35px;
  min-height: 420px;
  align-items:stretch;

  padding:28px;

  border-radius:38px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.78),
      rgba(245,252,252,.92)
    );

  backdrop-filter:blur(18px);

  box-shadow:
    0 25px 60px rgba(0,0,0,.08);

  border:1px solid rgba(255,255,255,.9);
}

.branch-info{
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.branch-info h3{
  font-size:42px;
  margin-bottom:18px;
  color:#1ca7a8;
}

.branch-info p{
  margin-bottom:18px;
  line-height:1.8;
}

.branch-map{
  overflow:hidden;
  border-radius:30px;
  min-height:420px;

  box-shadow:
    0 18px 45px rgba(0,0,0,.10);
}

.branch-map iframe{
  width:100%;
  height:100%;
  border:none;
  display:block;
}

@media(max-width:900px){

  .branch-card{
    grid-template-columns:1fr;
  }

  .branch-map{
    min-height:320px;
  }

}
/* FOOTER */

.footer {
  padding: 28px 8%;
  text-align: center;
  background: #173333;
}

.footer p {
  color: #ffffff;
  font-size: 14px;
}

/* WHATSAPP */

.whatsapp {

  position: fixed;
  right: 34px;
  bottom: 34px;
  width: 72px;
  height: 72px;
  padding: 0;
  justify-content: center;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(28,167,168,.92),
    rgba(54,200,201,.88)
  );

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border: 1px solid rgba(255,255,255,.9);

  border-radius: 50%;

  color: #ffffff;

  font-size: 16px;
  font-weight: 700;

  text-decoration: none;

  box-shadow:
    0 22px 50px rgba(28,167,168,.30),
    inset 0 1px 0 rgba(255,255,255,.95);

  z-index: 9999;

  transition: .35s ease;
}

.wa-icon{
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-icon i{
  width: 32px;
  height: 32px;
}

.whatsapp:hover{

  transform:
    translateY(-5px)
    scale(1.04);

  box-shadow:
    0 25px 55px rgba(28,167,168,.22);

}

.whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(37,211,102,.75);
  box-shadow: 0 20px 45px rgba(37,211,102,.30);
}

@media (max-width: 768px) {

  .whatsapp{
    width: 60px;
    height: 60px;
    right: 18px;
    bottom: 110px;
  }

  .wa-icon i{
    width: 26px;
    height: 26px;
  }

}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(6px);
}

.lightbox.active {
  display: flex;
}

#lightbox-img {
  max-width: 70%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  animation: zoom .3s ease;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 45px;
  font-size: 50px;
  color: white;
  cursor: pointer;
}

#prevBtn,
#nextBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 55px;
  color: white;
  cursor: pointer;
  padding: 20px;
  z-index: 10000;
}

#prevBtn {
  left: 40px;
}

#nextBtn {
  right: 40px;
}

#prevBtn:hover,
#nextBtn:hover {
  transform: translateY(-50%) scale(1.2);
}

@keyframes zoom {
  from {
    transform: scale(.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* TABLET */

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

  .hero {
  flex-direction: column;
  text-align: center;
  padding: 120px 6% 70px;
  gap: 35px;
}

  .hero-content {
    min-height: auto;
    padding: 30px 24px;
    border-radius: 28px;
    max-width: 640px;
  }

  .hero-content h1 {
    font-size: 42px;
    line-height: 1.05;
  }

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

  .hero-image img {
    height: 320px;
    border-radius: 28px;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .nav{
  position:fixed;
  top:82px;
  right:-100%;

  width:240px;
  max-width:82%;
  max-height:calc(100vh - 100px);

  padding:10px 14px;

  display:flex;
  flex-direction:column;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.82),
      rgba(236,248,248,.74),
      rgba(255,255,255,.66)
    );

  backdrop-filter:blur(32px);
  -webkit-backdrop-filter:blur(32px);

  border:1px solid rgba(255,255,255,.9);

  border-radius:34px 0 0 34px;

  box-shadow:
    -18px 20px 60px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.95);

  overflow-y:auto;
  overflow-x:hidden;
  overscroll-behavior:contain; 

  transition:.45s ease;

  z-index:9999;
}

.nav.active{
  right:0;
}

.nav a{
  display:grid;
  grid-template-columns:30px 1fr;
  align-items:center;
  min-height:44px;
  padding:4px 0;
  font-size:15px;
  font-weight:700;
  color:#243333;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.45);
  gap:18px;
}

.nav a:last-child{
  border-bottom:none;
}

.nav a:hover{
  color:#1ca7a8;
}

.nav a::after{
  display:none;
}

.nav a svg{
  width:24px;
  height:24px;

  stroke:#1ca7a8;
  stroke-width:2;

  flex-shrink:0;
}

.nav a:last-child{
  border-bottom:none;
}

.nav a::after{
  display:none;
}

 .menu-btn {
  display: block;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 16px;
  background: rgba(255,255,255,.38);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
  0 8px 25px rgba(0,0,0,.08),
  inset 0 1px 0 rgba(255,255,255,.7);
  color: #243333;
  font-size: 28px;
  transition: .3s;
  }

  .menu-btn:hover {
    transform: scale(1.04);
  }

  .promo-layout,
  .hotsale-content,
  .instagram-content,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .promo-video {
    min-width: 100%;
    width: 100%;
    height: 450px;
    min-height: 450px;
  }

  .hotsale-gallery {
    grid-template-columns: 1fr;
  }

  .hotsale-gallery img {
    height: 360px;
  }

  .ruleta-content {
    flex-direction: column;
    gap: 35px;
  }

  .instagram-text {
    text-align: center;
  }

  .instagram-card {
    margin: 0 auto;
  }

  .map-box {
    height: 360px;
  }

  .gallery {
    grid-template-columns: repeat(2,260px) !important;
  }
}

/* MÓVIL */

@media (max-width:600px) {
  .header {
    padding: 0 6%;
  }

  .logo img {
    height: 58px;
  }

  .section,
  .promo,
  .hotsale,
  .ruleta,
  .instagram-section,
  .contacto-section {
    padding: 70px 6%;
  }

  .hero {
    min-height: auto !important;
    padding: 105px 6% 45px !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 28px !important;
  }

  .hero-content {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    padding: 28px 22px !important;
    border-radius: 28px !important;
  }

  .hero-content h1 {
    font-size: 32px !important;
    line-height: 1.12 !important;
    margin-bottom: 18px !important;
  }

  .hero-content p {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .hero-buttons {
    margin-top: 26px !important;
  }

  .hero-image {
    flex: none !important;
    width: 100% !important;
  }

  .hero-image img {
    width: 100% !important;
    height: 300px !important;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .promo-header,
  .hotsale-text,
  .instagram-text {
    text-align: center;
  }

  .promo-header h2,
  .hotsale-text h2,
  .ruleta h2,
  .instagram-text h2,
  .contacto-section h2,
  .section h2 {
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 18px;
  }

  .promo-header p,
  .hotsale-text p,
  .ruleta p,
  .instagram-text p,
  .section-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .countdown {
    justify-content: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .contact-box .btn {
    width: 100%;
  }

  .gallery {
    grid-template-columns: 260px !important;
  }

  .ruleta-circle {
    width: 340px;
    height: 340px;
  }

  .ruleta-icon {
    transform: scale(1.7);
  }

  @keyframes flotarRuleta {
    0% { transform: scale(1.7) translateY(0); }
    50% { transform: scale(1.7) translateY(-8px); }
    100% { transform: scale(1.7) translateY(0); }
  }

  .whatsapp {
  width: 60px;
  height: 60px;
  padding: 0;
  font-size: 15px;
  bottom: 20px;
  right: 14px;
}

  #lightbox-img {
    max-width: 88%;
  }

  #prevBtn {
    left: 8px;
    font-size: 38px;
  }

  #nextBtn {
    right: 8px;
    font-size: 38px;
  }
}

/* ANIMACIONES SUAVES AL HACER SCROLL */

.reveal {
  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* EFECTO MÁS SUAVE EN TARJETAS */

.card,
.promo-card,
.hotsale-gallery img,
.gallery img,
.instagram-card,
.contact-box,
.map-box {
  transition:
    transform .5s ease,
    box-shadow .5s ease,
    opacity 1.2s ease;
}

/* EVENTO GLOW */

.evento-glow{
  padding:90px 8%;
  background:transparent;
}

.evento-glow .btn{
  outline: none;
  border: none;
}

.evento-glow-content{
  max-width:1250px;
  margin:0 auto;
  display:grid;
  grid-template-columns:420px 650px;
  justify-content:center;
  gap:55px;
  align-items:center;
  padding:45px;
  border-radius:40px;
  background:rgba(255,255,255,.45);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  box-shadow:0 25px 70px rgba(28,167,168,.08);
  border:1px solid rgba(255,255,255,.85);
}

.evento-glow-img img{
  width:100%;
  display:block;
  border-radius:35px;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.evento-glow-text{
  text-align:left;
}

.evento-glow-text h2{
  font-size:54px;
}

.evento-horarios{
  margin:28px auto;
  padding:18px 28px;
  width:fit-content;
  border-radius:24px;
  background:#e9f8f8;
  color:#1ca7a8;
  text-align:center;
}

.evento-horarios span{
  display:block;
  font-weight:700;
  margin-bottom:8px;
}

.evento-horarios strong{
  color:#243333;
  font-size:18px;
  font-weight:700;
}

.evento-cupos{
  text-align:center;
  margin:20px 0;
  color:#b38728;
  font-weight:600;
}

.evento-glow-text .btn{
  display:block;
  width:fit-content;
  margin:20px auto 0;
}

@media(max-width:768px){

  .evento-glow{
    padding: 50px 6% !important;
  }

  .evento-glow-content{
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    padding: 24px !important;
    text-align: center !important;
  }

  .evento-glow-img img{
    width: 100% !important;
    max-width: 280px !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
    border-radius: 28px !important;
  }

  .evento-glow-text{
    text-align: center !important;
  }

  .evento-glow-text h2{
    font-size: 34px !important;
    line-height: 1.08 !important;
  }

}
/* ABOUT */

.about{
  padding:90px 8%;
  background:transparent;
}

.about-content{
  max-width:1250px;
  margin:0 auto;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-text h2{
  margin-bottom:24px;
}

.about-text p{
  margin-bottom:18px;
  font-size:17px;
  line-height:1.8;
}

.about-image img{
  width:100%;
  height:540px;
  object-fit:cover;

  border-radius:35px;

  box-shadow:
  0 25px 60px rgba(0,0,0,.12);

  transition:.4s;
}

.about-image img:hover{
  transform:translateY(-8px);
}

/* TABLET */

@media (max-width:900px){

  .about-content{
    grid-template-columns:1fr;
    gap:35px;
  }

  .about-text{
    text-align:center;
  }

}

/* MOBILE */

@media (max-width:600px){

  .about{
    padding:70px 6%;
  }

  .about-image img{
    height:320px;
    border-radius:28px;
  }

}
/* SIGNIFICADO Y&Y */

.meaning{
  padding:90px 8%;
  background:transparent;
  text-align:center;
}

.meaning-content{
  max-width:1250px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
  padding:50px 60px;
  border-radius:40px;
  background:rgba(255,255,255,.52);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  box-shadow:0 18px 45px rgba(0,0,0,.05);
  border:1px solid rgba(255,255,255,.85);
}

.meaning-text{
  text-align:left;
}

.meaning-text h2{
  font-size: clamp(48px, 4.5vw, 62px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
  max-width: 560px;
}

.meaning-text p{
  font-size:18px;
  line-height:1.8;
  margin-bottom:28px;
}

.meaning-text h3{
  font-size:30px;
  line-height:1.32;
  margin:42px 0;
  font-weight:700;
  color:#243333;
  max-width:560px;
}

.meaning-final{
  font-size:19px !important;
  color:#9f7f35;
  font-weight:600;

  padding-left:18px;

  border-left:3px solid rgba(159,127,53,.35);

  margin-top:34px;

  max-width:520px;

  line-height:1.7;
}

.meaning-logo{
  display:flex;
  justify-content:center;
  align-items:center;
}

.meaning-logo-circle{
  width:340px;
  height:340px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.95), rgba(233,248,248,.65));
  backdrop-filter:blur(25px);
  box-shadow:
    0 25px 70px rgba(28,167,168,.18),
    inset 0 1px 0 rgba(255,255,255,.9);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  animation:floatMeaning 5s ease-in-out infinite;
}

.meaning-logo-circle::before{
  content:"";
  position:absolute;
  width:104%;
  height:104%;
  border-radius:50%;
  border:1px solid rgba(28,167,168,.18);
}

.meaning-logo-circle img{
  width:68%;
  object-fit:contain;
  opacity:.78;
}

@keyframes floatMeaning{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
  100%{ transform:translateY(0); }
}

/* SIGNIFICADO RESPONSIVE */

@media (max-width:900px){
  .meaning-content{
    grid-template-columns:1fr;
    padding:45px 32px;
    gap:40px;
  }

  .meaning-text{
    text-align:center;
  }

  .meaning-logo-circle{
    width:300px;
    height:300px;
  }
}

@media (max-width:600px){
  .meaning{
    padding:70px 6%;
  }

  .meaning-content{
    padding:36px 22px;
  }

  .meaning-text p{
    font-size:16px;
  }

  .meaning-text h3{
    font-size:34px;
  }

  .meaning-final{
    font-size:20px !important;
  }

  .meaning-logo-circle{
    width:240px;
    height:240px;
  }
}
/* =========================================
   NUESTRA GUÍA
========================================= */

.guide-section{

  padding: 110px 8%;
}

.guide-header{

  text-align: center;
  margin-bottom: 70px;
}

.guide-grid{

  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 32px;
}

.guide-card{

  background: rgba(255,255,255,.42);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,.9);

  border-radius: 34px;

  padding: 38px 34px 32px;

  box-shadow:
    0 12px 40px rgba(0,0,0,.05);

  transition: .35s ease;
  min-height: 320px;
}

.guide-card:hover{

  transform: translateY(-8px);
  border-color: rgba(28,167,168,.25);
  box-shadow:
    0 18px 50px rgba(28,167,168,.12);
}

.guide-icon{

  width: 72px;
  height: 72px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;

  margin-bottom: 24px;

  background: linear-gradient(
    135deg,
    rgba(28,167,168,.18),
    rgba(255,255,255,.9)
  );
}

.guide-card h3{

  font-size: 34px;
  color: #1ca7a8;

  margin-bottom: 20px;
}

.guide-card p{

  line-height: 1.9;
  color: #556060;
}

.values-list{

  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 24px;
}

.values-list span{

  padding: 12px 18px;

  border-radius: 999px;

  background: rgba(28,167,168,.12);

  color: #1ca7a8;

  font-weight: 600;

  border: 1px solid rgba(28,167,168,.12);
}
.guide-header h2{

  font-size: 72px;

  letter-spacing: -2px;

  margin-bottom: 18px;
}
/* POR QUÉ ELEGIR Y&Y */

.why-section{
  padding: 100px 8%;
}

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

.why-grid{
  max-width: 1250px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

.why-card{
  padding: 34px 28px;
  border-radius: 32px;

  background: rgba(255,255,255,.42);
  border: 1px solid rgba(255,255,255,.9);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 18px 45px rgba(0,0,0,.055);

  transition: .35s ease;
}

.why-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(28,167,168,.14);
  border-color: rgba(28,167,168,.24);
}

.why-card svg{
  width: 42px;
  height: 42px;
  stroke: #1ca7a8;
  stroke-width: 2.2;
  margin-bottom: 22px;
}

.why-card h3{
  font-size: 24px;
  color: #1ca7a8;
  margin-bottom: 14px;
}

.why-card p{
  font-size: 16px;
  line-height: 1.75;
}

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

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

.why-header h2{

  font-size: 58px;

  line-height: 1.1;

  max-width: 900px;

  margin: 0 auto 24px;
}
/* =========================================
   FOOTER PREMIUM
========================================= */

.footer{

  margin-top: 120px;

  background:
  linear-gradient(
  135deg,
  #052728 0%,
  #0b3d3e 45%,
  #156163 100%
  );

  color: white;

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding:
  48px 8% 26px;

  border-top-left-radius: 50px;
  border-top-right-radius: 50px;

  position: relative;

  overflow: hidden;
}

.footer::before{

  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  background:
  radial-gradient(
    rgba(54,200,201,.18),
    transparent 70%
  );

  top: -180px;
  right: -120px;
}

.footer-top{
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.footer-brand{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.footer-brand img{
  width: 130px;
  margin-bottom: 12px;
  filter:
    drop-shadow(0 0 18px rgba(92,225,230,.22));
}

.footer-brand h3{
  font-size: 34px;
  margin-bottom: 10px;
}

.footer-brand p{
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

.footer-links,
.footer-contact{

  display: flex;
  flex-direction: column;
}

.footer-links{

  padding-top: 12px;

}

.footer-links h4,
.footer-contact h4{

  font-size: 22px;

  margin-bottom: 22px;
}

.footer-links a{

  color: rgba(255,255,255,.72);

  text-decoration: none;

  margin-bottom: 14px;

  transition: .3s ease;
}

.footer-links a:hover{

  color: #5ce1e6;

  transform: translateX(4px);
}

.footer-contact p{

  color: rgba(255,255,255,.72);

  margin-bottom: 14px;

  line-height: 1.7;
}

.footer-instagram{

  display: inline-flex;

  width: fit-content;

  margin-top: 12px;

  padding: 12px 18px;

  border-radius: 999px;

  background: rgba(255,255,255,.08);

  border: 1px solid rgba(255,255,255,.1);

  color: #5ce1e6;

  text-decoration: none;

  transition: .3s ease;
}

.footer-instagram:hover{

  background: rgba(255,255,255,.14);

  transform: translateY(-3px);
}

.footer-bottom{
  margin-top: 32px;
  padding-top: 28px;
  border-top:
  1px solid rgba(255,255,255,.05);
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-bottom p{

  color: rgba(255,255,255,.58);

  font-size: 14px;
}

@media(max-width:900px){

  .footer-top{

    grid-template-columns: 1fr;

    gap: 50px;
  }

  .footer{

    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
  }
}
.footer-slogan{

  margin: 8px 0 12px;
  color: #7fd7d9;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer-social small{

  display: block;

  margin-top: 12px;

  color: rgba(255,255,255,.65);

  font-size: 13px;

  line-height: 1.6;
}

.evento-destacado{
  margin-top:30px;

  padding:28px;

  border-radius:28px;

  background:rgba(255,255,255,.65);

  backdrop-filter:blur(12px);

  border:1px solid rgba(28,167,168,.12);

  box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.evento-destacado h4{
  font-size:24px;
  color:#1ca7a8;
  margin-bottom:18px;
}

.evento-destacado ul{
  list-style:none;
  padding:0;
}

.evento-destacado li{
  margin-bottom:12px;
  color:#243333;
  font-size:17px;
}
