/* ===========================
   JPNNET TELECOM – style.css
   =========================== */

/* ── Design Tokens ── */
:root {
  --orange: #F5A800;
  --orange-dark: #D98F00;
  --orange-light: #FFD166;
  --blue: #1B5EA6;
  --blue-dark: #0F3F7A;
  --blue-light: #2E7DD1;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --gray-100: #F1F3F8;
  --gray-200: #E2E6EF;
  --gray-400: #9BA5BC;
  --gray-600: #5C667D;
  --gray-800: #2B3349;
  --dark: #0D1321;

  --font-main: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .10);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, .14);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .20);

  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: .4px;
}

.btn--cliente {
  background: var(--blue);
  color: var(--white);
  padding: 8px 20px;
  font-size: .85rem;
  border-radius: var(--radius-xl);
}

.btn--cliente:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.btn--hero {
  background: var(--orange);
  color: var(--white);
  font-size: 1.1rem;
  padding: 16px 40px;
  box-shadow: 0 8px 32px rgba(245, 168, 0, .5);
}

.btn--hero:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245, 168, 0, .6);
}

.btn--hero-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .6);
  color: var(--white);
  font-size: 1.05rem;
  padding: 14px 32px;
}

.btn--hero-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white);
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(245, 168, 0, .4);
}

.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn--plan {
  width: 100%;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  margin-top: auto;
}

.btn--plan:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.btn--plan-featured {
  background: var(--orange);
}

.btn--plan-featured:hover {
  background: var(--orange-dark);
}

.btn--promo {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}

.btn--promo:hover {
  background: var(--orange);
  color: var(--white);
}

.btn--promo-highlight {
  background: var(--orange);
  color: var(--white);
}

.btn--promo-highlight:hover {
  background: var(--orange-dark);
}

.btn--outline-orange {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}

.btn--outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}

/* ── Section Helpers ── */
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 8px;
  background: rgba(245, 168, 0, .12);
  padding: 4px 14px;
  border-radius: 100px;
}

.section-label--light {
  color: var(--orange-light);
  background: rgba(255, 255, 255, .15);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

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

.section-desc {
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  font-size: .98rem;
}

/* =====================
   TOP BAR
   ===================== */
.topbar {
  background: var(--blue-dark);
  color: var(--white);
  font-size: .85rem;
  position: relative;
  z-index: 200;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar__social {
  display: flex;
  gap: 12px;
}

.topbar__social-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: .85rem;
}

.topbar__social-link:hover {
  background: var(--orange);
}

.topbar__message {
  flex: 1;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .5px;
  overflow: hidden;
}

.topbar__marquee {
  display: inline-block;
  /* animation: marquee 20s linear infinite; */
  white-space: nowrap;
}

/* @keyframes marquee {
  0% {
    transform: translateX(60%);
  }

  100% {
    transform: translateX(-100%);
  }
} */

.topbar__actions {
  flex-shrink: 0;
}

/* =====================
   HEADER
   ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 200px;
  transition: all 0.3s;
}
.header-scroll {
  .logo-wrapper {
    max-width: 130px;
  }
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(245, 168, 0, .4);
  flex-shrink: 0;
}

.logo-icon--sm {
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-jpn {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--blue);
  line-height: 1;
}

.logo-net {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--blue-dark);
  line-height: 1;
}

.logo-jpn,
.logo-net {
  display: inline;
}

.logo-text> :first-child {
  display: block;
}

.logo-telecom {
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  color: var(--blue);
  padding: 8px 12px;
  border-radius: 8px;
  letter-spacing: .5px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--blue);
  background: var(--gray-100);
}

.nav__link--highlight {
  color: var(--gray-800);
  border: 2px solid var(--gray-800);
}

.nav__link--highlight:hover {
  background: var(--gray-800);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--gray-800);
  border-radius: 4px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.mobile-nav.open {
  display: block;
  max-height: 500px;
}

.mobile-nav__list {
  padding: 12px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav__link {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--gray-800);
  transition: var(--transition);
}

.mobile-nav__link:hover {
  background: var(--gray-100);
  color: var(--blue);
}

.mobile-nav__link--btn {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  margin-top: 8px;
}

.mobile-nav__link--btn:hover {
  background: var(--blue-dark);
  color: var(--white);
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0D1321 0%, #0F3F7A 50%, #1B5EA6 100%);
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(245, 168, 0, .18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(27, 94, 166, .3) 0%, transparent 50%);
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .07) 1px, transparent 0);
  background-size: 40px 40px;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 168, 0, .2);
  border: 1px solid rgba(245, 168, 0, .4);
  color: var(--orange-light);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp .6s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeUp .6s .1s ease both;
}

.hero__brand {
  color: var(--orange);
}

.hero__highlight {
  color: var(--orange-light);
  position: relative;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 40px;
  animation: fadeUp .6s .2s ease both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  animation: fadeUp .6s .3s ease both;
}

.hero__disclaimer {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  max-width: 520px;
  line-height: 1.5;
  margin-bottom: 32px;
  animation: fadeUp .6s .4s ease both;
}

.hero__social {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp .6s .5s ease both;
}

.hero__social span {
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
}

.hero__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  transition: var(--transition);
}

.hero__social a:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

/* Speed cards decorative */
.hero__speeds {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
}

.speed-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.speed-card:hover,
.speed-card--active {
  background: rgba(245, 168, 0, .18);
  border-color: var(--orange);
  transform: scale(1.05);
}

.speed-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.speed-card--active .speed-card__num {
  color: var(--orange-light);
}

.speed-card__unit {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  margin-top: 4px;
}

/* =====================
   WELCOME
   ===================== */
.welcome {
  padding: 96px 0;
  background: var(--off-white);
}

.welcome__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.welcome__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.welcome__title span {
  color: var(--orange);
}

.welcome__body {
  color: var(--gray-600);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.welcome__badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-800);
}

.badge-item i {
  color: var(--orange);
  font-size: 1.1rem;
}

/* Visual side */
.welcome__visual {
  display: flex;
  justify-content: center;
}

.welcome__graphic {
  position: relative;
}

.wifi-anim {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wifi-anim__icon {
  font-size: 5rem;
  color: var(--orange);
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.wifi-pulse {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: 0;
  animation: pulse 3s ease-out infinite;
}

.wifi-pulse--1 {
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}

.wifi-pulse--2 {
  width: 150px;
  height: 150px;
  animation-delay: .8s;
}

.wifi-pulse--3 {
  width: 200px;
  height: 200px;
  animation-delay: 1.6s;
}

.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-card--alt {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-color: var(--blue);
}

.stat-card--alt .stat-card__num,
.stat-card--alt .stat-card__label {
  color: var(--white) !important;
}

.stat-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.stat-card__label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* =====================
   PLANS
   ===================== */
.plans {
  padding: 96px 0;
  background: var(--white);
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: start;
}

.plan-card {
  background-color: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 2px solid transparent;
  /* transition: var(--transition); */
  transition: all 0.3s !important;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.plan-card:hover {
  border-color: var(--orange);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background-color: var(--white);
}

.plan-card--featured {
  background-color: var(--blue);
  border-color: var(--orange);
  color: var(--white);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.plan-card--featured:hover {
  transform: scale(1.06) translateY(-4px);

  .plan-card__tag {
    color: var(--gray-800);
  }

  .plan-card__features li {
    color: var(--gray-800);
  }
}

.plan-card__ribbon {
  position: absolute;
  top: 20px;
  right: -28px;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 40px;
  transform: rotate(45deg);
  box-shadow: var(--shadow-sm);
}

.plan-card__header {
  margin-bottom: 24px;
}

.plan-card__speed {
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.plan-card--featured .plan-card__speed {
  color: var(--orange-light);
}

.plan-card__speed small {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  vertical-align: middle;
}

.plan-card__tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-600);
  margin-top: 4px;
}

.plan-card--featured .plan-card__tag {
  color: rgba(255, 255, 255, .7);
}

.plan-card__features {
  flex: 1;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray-700);
}

.plan-card--featured .plan-card__features li {
  color: rgba(255, 255, 255, .88);
}

.plan-card__features li i {
  color: var(--orange);
  width: 16px;
  font-size: .85rem;
}

.plans__disclaimer {
  text-align: center;
  color: var(--gray-400);
  font-size: .8rem;
  margin-top: 40px;
}

/* =====================
   PROMOÇÕES
   ===================== */
.promo {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
}

.promo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.promo-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: var(--white);
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.promo-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .14);
}

.promo-card--highlight {
  background: rgba(245, 168, 0, .15);
  border-color: var(--orange);
}

.promo-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(245, 168, 0, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--orange-light);
}

.promo-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.promo-card p {
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* =====================
   WHY CHOOSE US
   ===================== */
.why {
  padding: 96px 0;
  background: var(--off-white);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.why-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}

.why-item:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(245, 168, 0, .3);
}

.why-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.why-item p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* =====================
   TEAM
   ===================== */
.team {
  padding: 96px 0;
  background: var(--white);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.team-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-card--featured {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-color: var(--orange);
  color: var(--white);
}

.team-card--featured h4,
.team-card--featured p {
  color: var(--white) !important;
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--blue);
  margin: 0 auto 20px;
}

.team-card--featured .team-card__avatar {
  background: rgba(255, 255, 255, .2);
  color: var(--white);
}

.team-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.team-card p {
  font-size: .88rem;
  color: var(--gray-600);
}

.team__cta {
  text-align: center;
}

/* =====================
   BLOG
   ===================== */
.blog {
  /* padding: 96px 0; */
  background: var(--off-white);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.blog-card__img {
  height: 160px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, .5);
}

.blog-card--featured .blog-card__img {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}

.blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--dark);
  line-height: 1.4;
}

.blog-card p {
  font-size: .88rem;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
}

.blog-card__link:hover {
  color: var(--orange);
  gap: 10px;
}

/* =====================
   STORE
   ===================== */
.store {
  padding: 96px 0;
  background: var(--white);
}

.store__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.store__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.store__desc {
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.7;
}

.store__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.store__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.store__detail i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245, 168, 0, .3);
}

.store__detail div {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--gray-600);
}

.store__detail strong {
  color: var(--dark);
  font-size: .95rem;
}

.store__coverage>h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.store__coverage>p {
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.6;
}

.coverage-map {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  border: 2px dashed var(--gray-200);
  margin-bottom: 28px;
}

.coverage-map__icon {
  font-size: 3.5rem;
  color: var(--orange);
  margin-bottom: 12px;
}

.coverage-map p {
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 20px;
}

/* Horarios */
.horarios {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 2px solid var(--gray-200);
}

.horarios h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.horarios h4 i {
  color: var(--orange);
}

.horarios ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.horarios li {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  color: var(--gray-600);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}

.horarios li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.horarios li span:last-child {
  font-weight: 700;
  color: var(--blue);
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--blue);
  color: rgba(255, 255, 255, .75);
  padding-top: 72px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  max-width: 200px;
}

.footer__col p {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .85rem;
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__col h4 i {
  color: var(--orange);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul li a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__col ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer__hours li {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  gap: 12px;
}

.footer__hours li:last-child {
  border-bottom: none;
}

.footer__hours li span:last-child {
  font-weight: 600;
  color: var(--orange-light);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .65);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer__contact li:last-child {
  border-bottom: none;
}

.footer__contact li i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.7;
}

/* =====================
   FAB WHATSAPP
   ===================== */
.fab-whatsapp {
  position: fixed;
  bottom: 23px;
  right: 23px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .5);
  transition: var(--transition);
  animation: fabPulse 2s ease-in-out infinite;
}

.fab-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .7);
}

.fab-whatsapp__tooltip {
  position: absolute;
  right: 70px;
  background: var(--white);
  color: var(--gray-800);
  padding: 6px 16px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.fab-whatsapp:hover .fab-whatsapp__tooltip {
  opacity: 1;
}

/* =====================
   BACK TO TOP
   ===================== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  border: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(.5);
    opacity: .8;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes fabPulse {

  0%,
  100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, .5);
  }

  50% {
    box-shadow: 0 8px 40px rgba(37, 211, 102, .8);
  }
}

/* Observe-in animations */
.observe-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}

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

.observe-delay-1 {
  transition-delay: .1s;
}

.observe-delay-2 {
  transition-delay: .2s;
}

.observe-delay-3 {
  transition-delay: .3s;
}

.observe-delay-4 {
  transition-delay: .4s;
}

.observe-delay-5 {
  transition-delay: .5s;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .hero__speeds {
    display: none;
  }

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

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero__content {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero__cta {
    flex-direction: column;
  }

  .btn--hero,
  .btn--hero-outline {
    width: 100%;
    justify-content: center;
  }

  .welcome__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .welcome__visual {
    display: none;
  }

  .store__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .topbar__message {
    display: none;
  }
}

@media (max-width: 480px) {
  .topbar__inner {
    justify-content: space-between;
  }

  .hero__title {
    font-size: 1.8rem;
  }

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

  .plan-card--featured {
    transform: none;
  }
}