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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #fff;
  color: #1f2937;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; }

:root {
  --navy:   #1E2B58;
  --cyan:   #00DFB2;
  --violet: #7A37F4;
  --light:  #F8FAFC;
  --dark:   #0a1028;
  --nav-h:  72px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.utility-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  padding: 6px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.utility-bar a { color: inherit; transition: color .2s; }
.utility-bar a:hover { color: var(--cyan); }
.utility-bar .phone-link {
  color: var(--cyan);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: linear-gradient(90deg, #1E2B58 0%, #16224a 50%, #1a1060 100%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.navbar-accent-top    { height: 3px; background: linear-gradient(90deg,var(--cyan),var(--violet),var(--cyan)); }
.navbar-accent-bottom { height: 1px; background: linear-gradient(90deg,transparent,var(--cyan) 30%,var(--violet) 70%,transparent); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 24px 0 32px;
  max-width: 100%;
}

.navbar-logo { display: flex; align-items: center; height: 100%; padding: 6px 0; }
.navbar-logo img { height: 46px; width: auto; object-fit: contain; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar-links a {
  color: rgba(255,255,255,.80);
  font-size: .875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.navbar-links a:hover { background: rgba(255,255,255,.10); color: #fff; }

.navbar-divider { width: 1px; height: 24px; background: rgba(255,255,255,.2); margin: 0 8px; }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--cyan), #00c49e);
  color: var(--navy) !important;
  font-weight: 700;
  font-size: .875rem;
  padding: 10px 20px;
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s;
}
.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,223,178,.40);
  background: linear-gradient(135deg, var(--cyan), #00c49e) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background .2s;
}
.hamburger:hover { background: rgba(255,255,255,.10); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform .3s, opacity .3s;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 4px;
  background: linear-gradient(180deg, #1a2050, #141840);
  border-top: 1px solid rgba(255,255,255,.10);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,.80);
  font-size: .875rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,.08); color: #fff; }
.mobile-menu .mobile-cta-wrap {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 12px;
  margin-top: 8px;
}
.mobile-menu .btn-cta { justify-content: center; width: 100%; }

.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.carousel-slide { min-width: 100%; position: relative; overflow: hidden; }
.carousel-slide img { width: 100%; height: auto; display: block; object-fit: cover; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background .2s;
  z-index: 10;
}
.carousel-btn:hover { background: rgba(0,0,0,.55); }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  cursor: pointer;
  transition: background .25s, transform .25s;
  padding: 0;
}
.carousel-dot.active { background: #fff; transform: scale(1.3); }

.hero-cta-bar {
  background: #fff;
  padding: 18px 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: .875rem;
  padding: 12px 28px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: background .2s;
}
.btn-whatsapp:hover { background: #1ebe5a; }

.plans-section {
  padding: 56px 16px;
  background: var(--light);
}
.section-label {
  display: inline-block;
  background: rgba(0,223,178,.12);
  color: var(--cyan);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
  border: 1px solid rgba(0,223,178,.25);
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: #1f2937;
  line-height: 1.2;
}
.section-title span { color: var(--navy); }
.section-sub { color: #6b7280; font-size: .9rem; margin-top: 8px; }

.tabs-bar {
  background: var(--navy);
  border-radius: 16px;
  padding: 6px;
  display: flex;
  gap: 4px;
  margin: 28px 0 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.tab-btn {
  flex: 1;
  background: none;
  border: none;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .25s, color .25s;
  text-align: center;
}
.tab-btn.active { background: var(--violet); color: #fff; }
.tab-btn:hover:not(.active) { background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.plan-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.12); }
.plan-card.popular { border: 2px solid var(--violet); }

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--violet);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-speed { font-size: 3rem; font-weight: 900; color: var(--navy); line-height: 1; }
.plan-unit  { font-size: 1rem; font-weight: 700; color: var(--navy); }
.plan-name  { font-size: .7rem; font-weight: 600; color: #9ca3af; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.plan-price-label { font-size: .7rem; color: #9ca3af; }
.plan-price { font-size: 1.8rem; font-weight: 900; color: #1f2937; }
.plan-price span { font-size: .8rem; font-weight: 500; color: #9ca3af; }
.plan-divider { height: 1px; background: #f3f4f6; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .85rem;
  color: #4b5563;
}
.plan-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300DFB2' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 1px;
}

.btn-plan {
  display: block;
  text-align: center;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 700;
  font-size: .875rem;
  padding: 12px;
  border-radius: 12px;
  margin-top: auto;
  transition: background .2s, transform .15s;
}
.btn-plan:hover { background: #00c9a0; transform: scale(1.02); }

.contact-section {
  padding: 64px 16px;
  background: #fff;
  text-align: center;
}
.wa-icon-wrap {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(37,211,102,.10);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(37,211,102,.15);
}
.contact-section h2 { font-size: clamp(1.4rem,3.5vw,2rem); font-weight: 900; color: #1f2937; margin-bottom: 8px; }
.contact-section p  { color: #6b7280; font-size: .9rem; margin-bottom: 32px; }
.btn-chat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--violet);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(122,55,244,.30);
  transition: background .2s, transform .2s;
}
.btn-chat:hover { background: #6628d4; transform: scale(1.03); }

.info-section {
  padding: 64px 16px;
  background: linear-gradient(180deg, #0f1535 0%, #1a2252 100%);
}
.info-grid { display: grid; gap: 20px; max-width: 900px; margin: 0 auto; }

.info-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  backdrop-filter: blur(10px);
  transition: border-color .3s;
}
.info-card:hover { border-color: rgba(0,223,178,.30); }
.info-card:nth-child(2):hover { border-color: rgba(122,55,244,.35); }

.info-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(0,223,178,.18), rgba(0,223,178,.04));
}
.info-icon.violet { background: linear-gradient(135deg, rgba(122,55,244,.18), rgba(122,55,244,.04)); }

.info-body h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 14px; }
.info-items   { display: flex; flex-direction: column; gap: 14px; }
.info-item    { display: flex; gap: 12px; }
.info-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: 6px;
}
.info-dot.violet { background: var(--violet); }
.info-item p { color: rgba(255,255,255,.65); font-size: .85rem; line-height: 1.6; }
.info-item strong { color: rgba(255,255,255,.90); }
.info-item .cyan  { color: var(--cyan); font-weight: 700; }
.info-item a      { color: var(--cyan); font-weight: 700; }

.hours-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.hour-card {
  background: rgba(0,223,178,.07);
  border: 1px solid rgba(0,223,178,.20);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}
.hour-card.violet-card {
  background: rgba(122,55,244,.07);
  border-color: rgba(122,55,244,.20);
}
.hour-card.muted-card {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}
.hour-card .day   { font-size: .7rem; font-weight: 700; color: var(--cyan); margin-bottom: 4px; }
.hour-card.violet-card .day { color: var(--violet); }
.hour-card.muted-card  .day { color: rgba(255,255,255,.35); }
.hour-card .time  { font-size: .7rem; color: rgba(255,255,255,.75); }
.hour-card.muted-card  .time { color: rgba(255,255,255,.35); }

.faq-section {
  padding: 64px 16px;
  background: linear-gradient(180deg, #1a2252 0%, #111830 100%);
}
.faq-accordion { display: flex; flex-direction: column; gap: 10px; max-width: 750px; margin: 0 auto; }

.faq-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item.open { border-color: rgba(0,223,178,.35); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-trigger-inner { display: flex; align-items: center; gap: 16px; }
.faq-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem;
  font-weight: 900;
  background: linear-gradient(135deg,var(--cyan),#00b898);
  color: var(--navy);
}
.faq-num.violet { background: linear-gradient(135deg,var(--violet),#5a1fd4); color: #fff; }

.faq-question { color: #fff; font-size: .9rem; font-weight: 600; }
.faq-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: rgba(255,255,255,.35);
  transition: transform .35s, color .2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--cyan); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-body-inner { padding: 0 24px 22px; }
.faq-separator  { height: 1px; background: linear-gradient(90deg,var(--cyan),transparent); margin-bottom: 14px; }
.faq-separator.violet { background: linear-gradient(90deg,var(--violet),transparent); }
.faq-answer { color: rgba(255,255,255,.65); font-size: .875rem; line-height: 1.65; }
.faq-answer a      { color: var(--cyan); font-weight: 700; }
.faq-answer strong { color: rgba(255,255,255,.90); }
.faq-answer .cyan  { color: var(--cyan); font-weight: 700; }

.faq-cta { margin-top: 36px; text-align: center; }
.faq-cta p { color: rgba(255,255,255,.35); font-size: .85rem; margin-bottom: 14px; }
.btn-faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg,var(--cyan),#00b898);
  color: var(--navy);
  font-weight: 700;
  font-size: .875rem;
  padding: 14px 32px;
  border-radius: 999px;
  box-shadow: 0 0 30px rgba(0,223,178,.22);
  transition: transform .2s, opacity .2s;
}
.btn-faq-cta:hover { transform: scale(1.04); opacity: .92; }

.footer { background: var(--navy); color: #fff; }

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-brand > a:first-child img { height: 44px; width: auto; object-fit: contain; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .85rem; }

.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.social-btn:hover { background: var(--cyan); }
.social-btn svg   { width: 16px; height: 16px; }

.libro-rec-link { display: block; width: 100%; margin-top: 14px; }
.libro-rec-img {
  width: 160px;
  height: auto !important;
  max-height: none !important;
  object-fit: contain;
  border-radius: 6px;
  transition: transform .3s ease, opacity .3s ease;
}
.libro-rec-link:hover .libro-rec-img { transform: scale(1.04); opacity: .88; }

.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--cyan); }
.footer-links .arrow { color: var(--cyan); }

.portal-note {
  margin-top: 16px;
  background: rgba(0,223,178,.07);
  border: 1px solid rgba(0,223,178,.18);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.portal-note svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--cyan); margin-top: 1px; }
.portal-note p   { color: rgba(255,255,255,.58); font-size: .72rem; line-height: 1.5; }
.portal-note a   { color: var(--cyan); font-weight: 700; }

.footer-copy {
  background: rgba(0,0,0,.40);
  text-align: center;
  padding: 12px 16px;
  font-size: .72rem;
  color: rgba(255,255,255,.35);
}

@media (max-width: 767px) {
  
  .navbar-links { display: none; }
  .hamburger    { display: flex; }

  
  .hero-cta-bar { flex-direction: column; align-items: stretch; }
  .btn-whatsapp { justify-content: center; }

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

  
  .info-card { flex-direction: column; }

  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  
  .libro-rec-img { width: 260px; margin-top: 15px; }
}

@media (max-width: 540px) {
  .faq-question { font-size: .82rem; }
  .tabs-bar { flex-direction: column; }
  .tab-btn  { flex: none; }
}
/* Botón Cuadrado Ajustado para el Libro de Reclamaciones */
.libro-rec-cuadrado {
  background: #ffffff;
  display: inline-flex !important; /* Evita que herede el estiramiento del footer */
  align-items: center;
  justify-content: center;
  width: 110px;                  /* Ancho fijo para que sea cuadrado */
  height: 110px;                 /* Alto fijo idéntico al ancho */
  padding: 10px;
  border-radius: 12px;           /* Bordes suavizados estéticos */
  margin-top: 15px;
  align-self: flex-start;        /* Alinea el bloque a la izquierda sin estirarse */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform .2s ease;
}

.libro-rec-cuadrado:hover {
  transform: scale(1.04);
}

.libro-rec-cuadrado img {
  width: 100%;
  height: 100%;
  object-fit: contain;           /* Hace que la imagen llene el cuadrado sin deformarse */
}
