:root{
  --brand-rose:#FF8BA0;      /* derivado del logo */
  --brand-teal:#69C1B5;      /* derivado del logo */
  --store-logo:#cae9e4;      /* color para los logos de Apple y Android */
  --ink:#1F2937;
  --ink-2:#374151;
  --muted:#6B7280;
  --line:#E5E7EB;
  --bg:#FAFAFB;
  --bg-alt:#F5FBFA;          /* ligero tinte teal */
  --white:#FFFFFF;
  --shadow:0 8px 28px rgba(31,41,55,.12);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Manrope",system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}

/* Utilities */
.container{width:min(1100px,92%); margin-inline:auto}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.5rem; padding:.9rem 1.2rem; border-radius:999px; border:1px solid transparent;
  font-weight:700; cursor:pointer; transition:.2s transform ease, .2s box-shadow ease, .2s background ease;
}
.btn:hover{transform:translateY(-1px); box-shadow:var(--shadow)}
.btn-primary{background:var(--brand-rose); color:var(--white)}
.btn-ghost{background:transparent; color:var(--ink); border-color:var(--line)}
.btn-outline{background:var(--white); color:var(--brand-rose); border-color:var(--brand-rose)}
.link{background:none; border:none; color:var(--brand-rose); font-weight:700; cursor:pointer; padding:0}
.lead{color:var(--ink-2)}
.bullets{padding-left:1.2rem}
.bullets li{margin:.35rem 0}

/* Header */
.site-header{
  position:sticky; top:0; z-index:30; background:rgba(255,255,255,.8);
  backdrop-filter:saturate(120%) blur(8px); border-bottom:1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  padding: .75rem 0;
}
.brand{display:flex; align-items:center; gap:.6rem; text-decoration:none; color:inherit}
.brand-logo{width:42px; height:42px; border-radius:12px; box-shadow:var(--shadow)}
.brand-name {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: .2px;
  margin-right: 2rem;
}
.brand-name .la {
  color: var(--brand-teal);
}
.brand-name .vi {
  color: var(--brand-rose);
}
.main-nav {
  display: flex;
  align-items: center;
}
.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: color .2s;
}
.main-nav a.is-active,
.main-nav a:hover {
  color: var(--brand-rose);
}
.main-nav .divider{width:1px; height:24px; background:var(--line); margin-inline:.25rem}
.main-nav .auth{display:flex; align-items:center; gap:.5rem}
.hamburger{display:none; width:40px; height:40px; background:var(--white); border:1px solid var(--line); border-radius:12px}
.hamburger span{display:block; width:22px; height:2px; background:var(--ink); margin:6px auto}

/* Hero */
.hero{
  background:
    radial-gradient(1200px 400px at 10% -10%, rgba(105,193,181,.18), transparent 70%),
    radial-gradient(1000px 500px at 100% 10%, rgba(255,139,160,.16), transparent 70%),
    linear-gradient(180deg, var(--white), var(--bg));
  padding:4rem 0 2rem;
}
.hero-inner{display:grid; grid-template-columns:1.2fr .8fr; gap:2rem; align-items:center}
.hero h1{font-size:clamp(2rem, 4vw, 3rem); line-height:1.1; margin:.25rem 0}
.hero p{font-size:1.125rem; color:var(--ink-2)}
.cta-group{display:flex; flex-wrap:wrap; gap:.75rem; margin:1rem 0}
.aux{color:var(--muted)}
.hero-media img{width:100%; height:auto; border-radius:var(--radius); box-shadow:var(--shadow)}

/* Sections */
.section{padding:4rem 0}
.section.alt{background:var(--bg-alt)}
.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:2rem; align-items:center}
.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem; margin-top:1.2rem}
.card{
  background:var(--white); border:1px solid var(--line); border-radius:22px; padding:1rem;
  box-shadow:0 2px 10px rgba(0,0,0,.03);
}
.card img{width:100%; height:auto; border-radius:18px; background:linear-gradient(135deg,#fefefe,#f7f7f7)}
.card h3{margin:.6rem 0 .25rem}

/* Footer */
.site-footer {
  background: #ffffff;
  color: #707784;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem 0 1rem 0;
}
.footer-col {
  flex: 1 1 180px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.footer-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: #707784;
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: .5rem;
}
.footer-social a {
  color: #7EC2B9 !important;
  font-size: 1.6rem;
  opacity: 0.85;
  transition: opacity .2s;
}
.footer-social a:hover {
  opacity: 1;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: .3rem;
}
.footer-col ul a {
  color: #707784;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.85;
  transition: opacity .2s;
}
.footer-col ul a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  color: #fff;
  font-size: .95rem;
  opacity: 0.85;
}
@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .footer-col {
    min-width: 0;
  }
}
@media (max-width: 680px) {
  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0 1rem 0;
  }
  .footer-col.menu-rapido {
    display: none;
  }
  .footer-title {
    font-size: 1rem;
  }
}

/* Footer copyright color */
.site-footer .footer-bottom small {
  color: #000;
}

/* Footer branding y redes sociales alineados y proporcionados */
.site-footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.site-footer .footer-col:first-child {
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.site-footer .footer-title.brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.site-footer .footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

/* Menú rápido animación: negritas + zoom suave */
.site-footer .menu-rapido ul li a {
  transition: font-weight 0.2s, transform 0.2s;
  font-weight: 400;
}
.site-footer .menu-rapido ul li a:hover,
.site-footer .menu-rapido ul li a:focus {
  font-weight: 700;
  transform: scale(1.08);
  text-decoration: none;
}

/* Animación y color para todos los enlaces del footer (incluye Información y Datos de Contacto) */
.site-footer .footer-col ul li a,
.site-footer .footer-col a {
  color: #707784;
  font-size: 1rem;
  opacity: 0.85;
  transition: font-weight 0.2s, transform 0.2s;
  font-weight: 400;
  text-decoration: none;
}
.site-footer .footer-col ul li a:hover,
.site-footer .footer-col ul li a:focus,
.site-footer .footer-col a:hover,
.site-footer .footer-col a:focus {
  font-weight: 700;
  transform: scale(1.08);
  text-decoration: none;
  opacity: 1;
}

/* Mobile Bottom Nav */
.bottom-nav{
  position:fixed; bottom:0; left:0; right:0; z-index:40;
  display:none; background:var(--white); border-top:1px solid var(--line);
}
.bottom-nav .item{
  flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:.5rem .25rem; text-decoration:none; color:var(--muted); font-size:.8rem; gap:.25rem; border:none; background:none;
}
.bottom-nav .item.is-active, .bottom-nav .item:focus{color:var(--brand-rose)}
.bottom-nav .ico{width:22px; height:22px; fill:currentColor}

/* Dialog (Auth) */
dialog{border:none; border-radius:22px; width:min(420px, 92%); padding:0; box-shadow:var(--shadow)}
.auth-modal{padding:1.25rem}
.auth-modal header{display:flex; align-items:center; justify-content:space-between}
.auth-modal h3{margin:0}
.auth-modal .icon{background:none; border:none; font-size:1.1rem; cursor:pointer}
.auth-modal .fields{display:grid; gap:.75rem; margin:1rem 0}
.auth-modal label{display:grid; gap:.35rem}
.auth-modal input{
  border:1px solid var(--line); border-radius:12px; padding:.8rem .9rem; font-size:1rem;
}
.auth-modal menu{display:flex; gap:.5rem; justify-content:flex-end; padding:0; margin:0}

/* Install App Menu */
.install-app-menu {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.install-btn {
  width: 100%;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  box-sizing: border-box;
  background: rgba(255, 139, 160, 0.18); /* rosa muy suave y translúcido */
  backdrop-filter: blur(8px) saturate(160%);
  -webkit-backdrop-filter: blur(8px) saturate(160%);
  border: 1px solid transparent;
}
.install-btn:hover {
  background: #ff6f9c;
}
.store-logos {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}
.store-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.85;
  filter: invert(54%) sepia(18%) saturate(1042%) hue-rotate(135deg) brightness(92%) contrast(92%);
}
.store-logo svg {
  fill: #cae9e4;
}

/* Footer logo centrado sobre redes sociales */
.footer-logo-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 0.5rem;
}
.footer-logo {
  width: 90px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Redes sociales más grandes */
.footer-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 0;
  justify-content: center;
}
.footer-social a {
  color: #7EC2B9 !important;
  font-size: 2.1rem;
  opacity: 0.85;
  transition: opacity .2s;
}
.footer-social a:hover {
  opacity: 1;
}

/* Modal Coach */
.coach-modal {
  max-width: 400px;
  border-radius: 1.2rem;
  border: none;
  padding: 0;
  box-shadow: 0 4px 32px rgba(106,199,202,0.18);
  font-family: 'Manrope', 'Sulphur Point', sans-serif;
}
.coach-modal header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem 0.5rem 1.5rem;
  border-bottom: 1px solid #cae9e4;
}
.coach-modal h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #6ec6ca;
  font-weight: 700;
}
.coach-modal .icon {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: #888;
}
.coach-info {
  padding: 1.2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
}
.coach-modal-img {
  max-width: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(106,199,202,0.10);
}
.coach-info p {
  text-align: justify;
  font-size: 1rem;
  color: #333;
}


/* Responsive */
@media (max-width: 1024px){
  .hero-inner{grid-template-columns:1fr; text-align:center}
  .hero-media img{max-width:540px; margin-inline:auto}
  .grid-2{grid-template-columns:1fr}
  .cards{grid-template-columns:repeat(2,1fr)}
  .main-nav { display: none; }
  .brand-name { margin-right: 0; }
  .hamburger{display:inline-block}
}
@media (max-width: 680px){
  .cards{grid-template-columns:1fr}
  .site-header{padding-bottom:56px} /* espacio para la bottom nav */
  .bottom-nav{display:flex}
  .bottom-nav .item{min-height:56px}
}

/* Calendario moderno con colores del proyecto */
.calendar-sept {
  background: rgba(255, 139, 160, 0.18); /* Rosa principal con transparencia */
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px 0 #0002;
  padding: 2rem 1rem 1.5rem 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.calendar-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
  margin-bottom: 0.7rem;
  font-family: 'Sulphur Point', sans-serif;
  font-size: 1.05rem;
  color: #6a7c7c;
  text-align: center;
  font-weight: 700;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.3rem;
}

.calendar-day {
  background: rgba(105, 193, 181, 0.13); /* Teal sutil y translúcido */
  border-radius: 0.7rem;
  min-height: 70px;
  box-shadow: none;
  border: 2px solid #69C1B5; /* Borde teal */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sulphur Point', 'Manrope', sans-serif;
  font-size: 1.25rem;
  color: #1F2937; /* Número del día */
  font-weight: 700;
  transition: box-shadow 0.2s, background 0.2s, border-color 0.2s;
  cursor: pointer;
}

.calendar-day:hover {
  box-shadow: 0 2px 12px 0 #69C1B5;
  background: rgba(105, 193, 181, 0.22);
  color: #1F2937;
  border-color: #FF8BA0; /* Borde rosa al pasar el mouse */
}

.calendar-day.empty {
  background: transparent;
  box-shadow: none;
  border: none;
  cursor: default;
}

.calendar-day span {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1F2937; /* Número del día */
}

@media (max-width: 600px) {
  .calendar-sept {
    padding: 1rem 0.2rem;
    max-width: 100%;
  }
  .calendar-day {
    min-height: 48px;
    font-size: 1rem;
  }
}

body, h1, h2, h3, h4, h5, h6, p, a, li, button, input, textarea, label, small, span {
  font-family: 'Sulphur Point', sans-serif !important;
}

.auth-menu {
  position: fixed;
  top: 0; right: 0;
  width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 12px rgba(0,0,0,0.08);
  transform: translateX(100%);
  transition: transform 0.3s;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
}
.auth-menu.open { transform: translateX(0); }
.close-auth { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; }
.auth-actions { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; }
.footer-social a { color: #7EC2B9; font-size: 1.5rem; margin: 0 0.5rem; }
.btn-contact { background: #FF97B0; color: #fff; padding: 0.5rem 1rem; border-radius: 4px; text-decoration: none; }
.mobile-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .mobile-only {
    display: flex !important;
  }

}
#userMenuBtn {
  display: none !important;
}
@media (max-width: 1024px) {
  #userMenuBtn {
    display: flex !important;
  }
}
@media (min-width: 1025px) {
  #userMenuBtn {
    display: flex !important;
  }
}
#userMenuBtn .bi-person {
  color: var(--brand-teal) !important;
}
#userMenuBtn {
  background: rgba(255, 139, 160, 0.18); /* rosa muy suave y translúcido */
  border: none;
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(105,193,181,0.13); /* blur verde más pequeño y sutil */
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  transition: transform 0.18s;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
#userMenuBtn:hover, #userMenuBtn:focus {
  transform: scale(1.04);
  box-shadow: 0 0 0 3px rgba(105,193,181,0.13);
}
.img-blur-green {
  border-radius: 24px;
  box-shadow: 0 0 32px 0 #69c1b5aa, 0 0 0 4px #cae9e4;
  background: transparent;
}

/* Ubicación y contacto */
.ubicacion-contacto-inner {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.contacto-info {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  background: #f5fbfa;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(105,193,181,0.10);
  padding: 2rem 1.5rem;
  margin-bottom: 1rem;
}
.contacto-info h2 {
  margin-top: 0;
  color: var(--brand-teal);
  font-size: 1.35rem;
  font-weight: 800;
}
.contacto-info p {
  margin: 1.1rem 0;
  color: var(--ink-2);
  font-size: 1.08rem;
}
.contacto-mail {
  color: var(--brand-rose);
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
}
.contacto-mail:hover {
  color: var(--brand-teal);
  text-decoration: underline;
}
.contacto-mapa {
  flex: 2 1 400px;
  min-width: 280px;
  max-width: 600px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 32px 0 #69c1b5aa, 0 0 0 4px #cae9e4;
  background: #fff;
}
.contacto-mapa iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
  border-radius: 18px;
}
@media (max-width: 900px) {
  .ubicacion-contacto-inner {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .contacto-mapa {
    max-width: 100%;
  }
}

/* Botón Google estilo adjunto */
.btn-google {
  background: #fff;
  color: #1F2937;
  border: 1.5px solid #E5E7EB;
  border-radius: 999px;
  font-weight: 700;
  font-family: 'Sulphur Point', 'Manrope', sans-serif;
  padding: 0.7rem 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-google:hover {
  background: #f8fafc;
  box-shadow: 0 2px 8px #0001;
}
.btn-google img {
  height: 20px;
  width: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Classes Grid Styles */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.class-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.class-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(31,41,55,.15);
}

.class-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.class-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.class-card:hover .class-image img {
  transform: scale(1.05);
}

.class-content {
  padding: 1.5rem;
  position: relative;
}

.class-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5rem 0;
}

.class-content p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

.class-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--brand-rose);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.class-arrow:hover {
  background: var(--brand-teal);
  transform: scale(1.1);
}

.class-arrow svg {
  width: 18px;
  height: 18px;
}

/* Class Modal Styles */
.class-modal {
  border: none;
  border-radius: var(--radius);
  padding: 0;
  max-width: 900px;
  width: 90vw;
  max-height: 90vh;
  background: transparent;
}

.class-modal::backdrop {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.class-modal-content {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.class-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--ink);
  z-index: 10;
  transition: all 0.3s ease;
}

.class-modal-close:hover {
  background: var(--white);
  transform: scale(1.1);
}

.class-modal-image {
  height: 300px;
  overflow: hidden;
}

.class-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.class-modal-info {
  padding: 2rem;
  flex: 1;
  overflow-y: auto;
}

.class-modal-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1rem 0;
}

.class-modal-description {
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.class-modal-description h4 {
  color: var(--ink);
  font-weight: 600;
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1.1rem;
}

.class-modal-description ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.class-modal-description li {
  margin: 0.5rem 0;
  color: var(--muted);
}

.class-reserve-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .classes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
  }

  .class-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .class-image {
    height: 180px;
  }

  .class-content {
    padding: 1.25rem;
  }

  .class-content h3 {
    font-size: 1.1rem;
  }

  .class-content p {
    font-size: 0.85rem;
  }

  .class-arrow {
    width: 35px;
    height: 35px;
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .class-arrow svg {
    width: 16px;
    height: 16px;
  }

  /* Modal responsive */
  .class-modal {
    width: 95vw;
    max-height: 95vh;
  }

  .class-modal-content {
    flex-direction: column;
  }

  .class-modal-image {
    height: 200px;
  }

  .class-modal-info {
    padding: 1.5rem;
  }

  .class-modal-info h2 {
    font-size: 1.5rem;
  }

  .class-reserve-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .classes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  /* Para 7 clases en tablet, eliminar posicionamiento específico */
}

@media (min-width: 1025px) {
  /* Organizar en 3x3 layout para 7 clases */
  .classes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  /* Eliminar cualquier posicionamiento manual - dejar que el grid fluya naturalmente */
}

/* Packages CTA Section */
.packages-cta-section {
  background: linear-gradient(135deg, var(--bg-alt) 0%, rgba(105, 193, 181, 0.1) 100%);
  padding: 3rem 0;
  margin: 3rem 0;
  border-radius: var(--radius);
  text-align: center;
}

.packages-cta-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
}

.packages-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 1rem 0;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--brand-rose), var(--brand-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.packages-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 2rem 0;
  line-height: 1.5;
  font-weight: 400;
}

.btn-packages {
  background: linear-gradient(135deg, var(--brand-rose), var(--brand-teal));
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 139, 160, 0.3);
}

.btn-packages:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 139, 160, 0.4);
}

.btn-packages svg {
  transition: transform 0.3s ease;
}

.btn-packages:hover svg {
  transform: translateX(3px);
}

/* Responsive para packages CTA */
@media (max-width: 768px) {
  .packages-cta-section {
    padding: 2rem 0;
    margin: 2rem 0;
  }

  .packages-title {
    font-size: 1.8rem;
  }

  .packages-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .btn-packages {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .packages-title {
    font-size: 1.5rem;
  }

  .packages-subtitle {
    font-size: 0.9rem;
  }
}

/* Floating Chat Button */
.chat-floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #69C1B5, #FF8BA0);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(105, 193, 181, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1000;
  transition: all 0.3s ease;
  font-family: 'Sulphur Point', sans-serif;
  max-width: 200px;
}

.chat-floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(105, 193, 181, 0.5);
}

.chat-floating-btn i {
  font-size: 18px;
}

.chat-btn-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Chat Modal */
.chat-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 2000;
}

.chat-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 800px;
  height: 80%;
  max-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-modal-header {
  background: linear-gradient(135deg, #69C1B5, #FF8BA0);
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Sulphur Point', sans-serif;
}

.chat-modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.chat-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.chat-modal-body {
  flex: 1;
  padding: 0;
  background: #f8f9fa;
}

.chat-modal-body iframe {
  border: none;
  border-radius: 0 0 15px 15px;
}

/* Mobile responsive for chat */
@media (max-width: 768px) {
  .chat-floating-btn {
    bottom: 80px;
    right: 15px;
    padding: 10px 16px;
    font-size: 13px;
    max-width: 180px;
  }

  .chat-floating-btn i {
    font-size: 16px;
  }

  .chat-modal-content {
    width: 95%;
    height: 85%;
    border-radius: 10px;
  }

  .chat-modal-header {
    padding: 12px 15px;
  }

  .chat-modal-header h3 {
    font-size: 1.1rem;
  }

  .chat-btn-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .chat-floating-btn {
    bottom: 90px;
    right: 10px;
    padding: 8px 12px;
    font-size: 12px;
    max-width: 160px;
  }

  .chat-btn-text {
    display: none;
  }

  .chat-floating-btn {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
  }
}