@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --navy: #0D5C63;
  --blue: #008C99;
  --blue-l: #00C1D3;
  --sky: #DEFCFF;
  --sky-d: #B7F9FF;
  --white: #FFFFFF;
  --cream: #F7F7F7;
  --gray-1: #F0EDE8;
  --gray-2: #C8C4BB;
  --gray-3: #003C41;
  --gray-4: #003C41;
  --amber: #FEF3C7;
  --amber-t:#92400E;
  --green-bg: #DCFCE7;
  --green-t: #15803D;
  --r: 12px;
  --r-lg: 20px;
  --shadow: 0 4px 24px rgba(12,68,124,.10);
  --shadow-lg: 0 12px 48px rgba(12,68,124,.18);
  --font-serif: 'Raleway', Georgia, serif;
  --font-sans: 'Open Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--gray-4);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─── NAVBAR ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  transition: background 0.25s, box-shadow 0.25s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07), var(--shadow);
}

.nav-logo img {
  height: 96px;
  background-color: var(--white);
  padding: 0 8px;
  border-radius: 0 0 10px 10px;
  transition: height 0.5s;
}

.nav.scrolled .nav-logo img {
  height: 64px;
}

.nav-logo img.is-hidden {
  display: none;
}

.nav-logo-text {
  display: none;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo-text.visible {
  display: block;
}

.nav.scrolled .nav-logo-text {
  color: var(--navy);
}

.cta-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-cta {
  background: var(--white);
  color: var(--navy);
  border: none;
  border-radius: 30px;
  padding: 0.55rem 1.4rem;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav.scrolled .nav-cta {
  background: var(--navy);
  color: var(--white);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background-image: linear-gradient(120deg, rgba(13, 92, 99, 0.8) 0%, rgba(23, 134, 145, 0.8) 100%), url("https://tayleoptometrascali.com/wp-content/uploads/2021/07/imagen_ppal.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 100px 2rem 60px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 0.35rem 1rem;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-label span {
  font-size: 16px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.hero h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 500px;
  margin-bottom: 2.2rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--white);
  color: var(--navy);
  border: none;
  border-radius: 30px;
  padding: 0.8rem 1.9rem;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  padding: 0.8rem 1.9rem;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.hero-stat-row {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-val {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--white);
  display: block;
}

.hero-stat-label {
  font-size: 13px;
  color: rgb(255, 255, 255);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ─── CTA FINAL ───────────────────────────────────────── */
.cta-section {
  background-image: linear-gradient(120deg, rgb(13, 92, 99) 0%, #07484e 100%);
  padding: 90px 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-section .section-eyebrow {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 0.75rem;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-section p {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 400;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.btn-wa {
  background: var(--white);
  color: var(--navy);
  border: none;
  border-radius: 30px;
  padding: 0.9rem 2.1rem;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.btn-call {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 30px;
  padding: 0.9rem 2.1rem;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-call:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.cta-phone {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--gray-4);
  color: rgba(255, 255, 255, 0.55);
  padding: 2.5rem 2rem;
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  flex-direction: column;
}

.footer-brand {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand img {
  height: 96px;
  background-color: var(--white);
  padding: 0 8px;
  border-radius: 10px;
}

.footer-brand-text {
  font-size: 12.5px;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 12.5px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.footer-copy {
  text-align: center;
  font-size: 11px;
  margin-top: 1.5rem;
  color: rgb(255, 255, 255);
}

/* ─── SECTIONS ────────────────────────────────────────── */
.section {
  padding: 90px 2rem;
}

.section-alt {
  background: var(--cream);
}

.section-dark {
  background: var(--navy);
}

.container {
  max-width: 1060px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-dark .section-eyebrow {
  color: var(--sky-d);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--gray-4);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-dark .section-title {
  color: var(--white);
}

.section-sub {
  font-size: 16px;
  color: var(--gray-3);
  line-height: 1.65;
  max-width: 560px;
  font-weight: 400;
}

.section-dark .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

.section-header {
  margin-bottom: 3.5rem;
}

/* ─── STEPS ───────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.step {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
}

.step:not(:last-child) {
  border-right: 1px solid var(--gray-1);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 1rem;
  display: block;
}

.step-icon {
  width: 44px;
  height: 44px;
  background: var(--sky);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 14.5px;
  color: var(--gray-3);
  line-height: 1.65;
  font-weight: 400;
}

.step-badge {
  display: inline-block;
  margin-top: 1rem;
  background: var(--sky);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

/* connector arrow between steps */
.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sky-d);
  font-size: 20px;
  z-index: 2;
  background: var(--white);
  padding: 2px 0;
}

/* ─── CALCULATOR ──────────────────────────────────────── */
.calc-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--r-lg);
  padding: 3rem 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.calc-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -80px;
  right: -80px;
}

.calc-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

.calc-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.calc-slider-val {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.calc-slider-val span {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  margin: 1.5rem 0 0.75rem;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s;
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.calc-result-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.calc-bono {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.calc-bono.pulse {
  transform: scale(1.06);
}

.calc-msg {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  min-height: 42px;
  font-weight: 400;
  font-style: italic;
}

.calc-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
}

/* ─── REDEEM CARDS ────────────────────────────────────── */
.redeem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.redeem-card {
  background: var(--white);
  border: 1px solid var(--gray-1);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.redeem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--sky-d);
}

.redeem-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 1.25rem;
}

.redeem-icon.blue {
  background: var(--sky);
}

.redeem-icon.green {
  background: var(--green-bg);
}

.redeem-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.redeem-card p {
  font-size: 14px;
  color: var(--gray-3);
  line-height: 1.6;
  font-weight: 400;
}

.note-box {
  background: var(--amber);
  border-left: 3px solid #F59E0B;
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  font-size: 14px;
  color: var(--amber-t);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.note-box-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── FAQ ─────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.faq-intro .section-sub {
  margin-bottom: 2rem;
}

.btn-primary--navy {
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}

.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-1);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-1);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--gray-4);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--navy);
}

.faq-q[aria-expanded=true] {
  color: var(--navy);
}

.faq-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s;
  font-size: 14px;
  color: var(--navy);
}

.faq-q[aria-expanded=true] .faq-arrow {
  transform: rotate(180deg);
  background: var(--navy);
  color: var(--white);
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-body.open {
  max-height: 200px;
}

.faq-a {
  padding-bottom: 1.25rem;
  font-size: 14.5px;
  color: var(--gray-3);
  line-height: 1.7;
  font-weight: 400;
}

/* ─── TERMS ───────────────────────────────────────────── */
.tyc-section {
  background: var(--cream);
  padding: 0 2rem;
  border-top: 1px solid var(--gray-1);
}

.tyc-toggle {
  max-width: 1060px;
  margin: 0 auto;
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-3);
  text-align: left;
  transition: color 0.2s;
  text-decoration: underline;
}

.tyc-toggle:hover {
  color: var(--navy);
}

.tyc-toggle svg {
  transition: transform 0.3s;
}

.tyc-toggle.open svg {
  transform: rotate(180deg);
}

.tyc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.tyc-body.open {
  max-height: 4000px;
}

.tyc-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 3rem;
  font-size: 13px;
  color: var(--gray-3);
  line-height: 1.75;
}

.tyc-content h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 0.5rem;
}

.tyc-content h2:first-child {
  margin-top: 0;
}

.tyc-content ul {
  padding-left: 1.25rem;
  margin-top: 0.4rem;
}

.tyc-content li {
  margin-bottom: 0.35rem;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--gray-1);
  }
  .step:not(:last-child)::after {
    display: none;
  }
  .calc-inner {
    grid-template-columns: 1fr;
  }
  .calc-divider {
    display: none;
  }
  .redeem-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .nav {
    padding: 0 1.25rem;
  }
  .nav-back {
    display: none;
  }
  .nav-cta {
    font-size: 12px;
  }
  .hero {
    padding: 90px 1.25rem 50px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .section {
    padding: 60px 1.25rem;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .calc-card {
    padding: 2rem 1.5rem;
  }
  .calc-bono {
    font-size: 2.5rem;
  }
  .nav-logo img {
    height: 56px;
  }
  .nav.scrolled .nav-logo img {
    height: 56px;
  }
}
/* ─── ANIMATIONS ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-in:nth-child(3) {
  transition-delay: 0.2s;
}/*# sourceMappingURL=styles.css.map */