* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

:root {
  --bg-dark: #dbe5fc;
  --bg-darker: #06122d;
  --bg-card: #ffffff;
  --bg-card-soft: rgba(255, 255, 255, 0.8);
  --border-card: rgba(0, 102, 255, 0.12);
  --brand-blue: #0066ffd8;
  --brand-blue-dark: #0046b6;
  --brand-orange: #ff7a00;
  --brand-orange-dark: #e86d00;
  --text-main: #0f172a;
  --text-muted: #4b5563;
  --text-soft: #64748b;
  --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.06);
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --transition: 0.3s ease;
  --facebook-color: #1877f2;
  --instagram-color: #e4405f;
  --linkedin-color: #0a66c2;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--text-main);
  overflow-x: clip;
  line-height: 1.6;
}

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

a,
button {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease,
    transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.glow-bg {
  position: fixed;
  top: -180px;
  right: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.288) 0%, transparent 72%);
  z-index: -1;
  pointer-events: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 8%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-card);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img {
  max-height: 90px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  position: relative;
}

nav a:hover,
nav a:focus-visible {
  color: var(--brand-blue);
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
  transition: width var(--transition);
}

nav a:hover::after,
nav a:focus-visible::after {
  width: 100%;
}

.btn-client {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-dark));
  border: 1px solid transparent;
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.btn-client svg {
  width: 16px;
  height: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-card);
  background: #fff;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  cursor: pointer;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.hero {
  padding: 72px 8% 32px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.tagline,
.tagline-movel {
  background: rgba(0, 102, 255, 0.08);
  color: var(--brand-blue);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid var(--border-card);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero h1 span {
  background: linear-gradient(45deg, var(--brand-blue), var(--brand-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 560px;
  margin-bottom: 28px;
}

.cta-main {
  background: linear-gradient(90deg, var(--brand-orange), #ff9e43);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 26px rgba(255, 122, 0, 0.18);
}

.hero-carousel {
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
  border: 1px solid var(--border-card);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.carousel-track {
  position: relative;
  min-height: 290px;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(0, 102, 255, 0.08);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.carousel-badge {
  display: inline-block;
  background: rgba(0, 102, 255, 0.08);
  color: var(--brand-blue);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.carousel-badge.orange {
  background: rgba(255, 122, 0, 0.08);
  color: var(--brand-orange);
}

.carousel-badge.blue {
  background: rgba(0, 102, 255, 0.12);
  color: var(--brand-blue);
}

.carousel-slide h3 {
  font-size: 1.45rem;
  color: var(--text-main);
}

.carousel-speed {
  font-size: 2.7rem;
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1;
}

.carousel-speed span {
  color: var(--brand-orange);
}

.carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 10px 18px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-dark));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  white-space: normal;
  line-height: 1.2;
  text-align: center;
  word-break: break-word;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.carousel-btn-nav,
.carousel-play {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border-card);
  background: #fff;
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.carousel-btn-nav svg,
.carousel-play svg {
  width: 20px;
  height: 20px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
}

.dot.active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
}

.plans-container,
.benefits-container,
.coverage-container,
.mobile-highlight-container {
  padding-left: 8%;
  padding-right: 8%;
}

.plans-container {
  padding-top: 48px;
  padding-bottom: 90px;
}

.section-title {
  text-align: center;
  margin-bottom: 54px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
}

.section-title h2 span {
  color: var(--brand-orange);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 12px auto 0;
}

.grid-plans,
.grid-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 30px;
}

.card,
.benefit-card,
.map-mock,
.phone-frame,
.hero-carousel {
  box-shadow: var(--shadow-lg);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 34px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
}

.card.featured {
  border-color: rgba(255, 122, 0, 0.35);
}

.badge {
  position: absolute;
  top: -14px;
  right: 22px;
  background: var(--brand-orange);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.card-header {
  text-align: center;
}

.card-header h3 {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.card-header .velocity {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-main);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
}

.card-header .velocity span {
  font-size: 1.15rem;
  color: var(--brand-blue);
}

.price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 22px;
  text-align: center;
}

.price span {
  font-size: 1rem;
  color: var(--text-soft);
  font-weight: 500;
}

.features-list {
  list-style: none;
  margin-bottom: 28px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.features-list li svg {
  color: #10b981;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-plan {
  display: block;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-dark));
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

.combo-mini-box {
  background: rgba(0, 102, 255, 0.04);
  border: 1px dashed rgba(0, 102, 255, 0.18);
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.combo-mini-box.highlighted {
  background: rgba(255, 122, 0, 0.04);
  border-color: rgba(255, 122, 0, 0.24);
}

.combo-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--brand-blue);
  background: rgba(0, 102, 255, 0.1);
  padding: 3px 8px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 6px;
}

.combo-tag.text-orange {
  color: var(--brand-orange);
  background: rgba(255, 122, 0, 0.1);
}

.combo-mini-box p {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.combo-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-main);
}

.combo-price span {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.combo-mini-box small {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 6px;
}

.combo-mini-box small svg {
  width: 12px;
  height: 12px;
  color: var(--brand-orange);
}

.mobile-highlight-container {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.mobile-glow {
  position: absolute;
  inset: auto -120px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
}

.mobile-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.mobile-info-text h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.mobile-info-text h2 span {
  color: var(--brand-orange);
}

.mobile-info-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.mobile-showcase-price {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border-card);
  padding: 20px 30px;
  border-radius: 20px;
  max-width: 390px;
  margin-bottom: 30px;
}

.big-gb {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1;
  border-right: 2px solid var(--border-card);
  padding-right: 20px;
}

.big-gb span {
  color: var(--brand-orange);
  font-size: 1.5rem;
  display: block;
}

.price-block p {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-soft);
}

.price-block h3 {
  font-size: 1.8rem;
  color: var(--brand-orange);
  font-weight: 900;
}

.price-block h3 span {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.mobile-benefits-list {
  list-style: none;
  margin-bottom: 36px;
}

.mobile-benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.mobile-benefits-list li svg {
  color: var(--brand-blue);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cta-movel {
  background: linear-gradient(90deg, var(--brand-orange), #ff9e43);
  color: #fff;
  padding: 16px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.18);
}

.phone-frame {
  width: 260px;
  height: 480px;
  background: #ffffff;
  border: 4px solid var(--border-card);
  border-radius: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px;
  overflow: hidden;
  margin: 0 auto;
}

.screen-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
  top: 10%;
  left: 10%;
}

.signal-icon {
  width: 60px;
  height: 60px;
  color: var(--brand-orange);
  margin: 40px auto 0;
  z-index: 2;
}

.badge-4g {
  background: var(--brand-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  margin: 10px auto;
  display: block;
  width: fit-content;
  z-index: 2;
}

.phone-data-display {
  background: rgba(0, 102, 255, 0.04);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  z-index: 2;
}

.phone-data-display h4 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.progress-bar-mock {
  height: 6px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.progress-bar-mock::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
}

.phone-data-display p {
  font-size: 0.75rem;
  color: var(--text-main);
}

.benefits-container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 40px 30px;
}

.benefit-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
}

.icon-orange {
  background: rgba(255, 122, 0, 0.12);
  color: var(--brand-orange);
}

.icon-blue {
  background: rgba(0, 102, 255, 0.12);
  color: var(--brand-blue);
}

.icon-purple {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}

.icon-green {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.coverage-container {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.coverage-text h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  margin: 15px 0;
}

.coverage-text p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.location-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

.location-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-weight: 600;
}

.location-list li svg {
  color: var(--brand-orange);
  width: 20px;
  height: 20px;
}

.search-container {
  max-width: 450px;
  margin-top: 20px;
}

.search-box-interactive {
  display: flex;
  background: #fff;
  border: 1px solid var(--border-card);
  padding: 6px;
  border-radius: 50px;
  transition: var(--transition);
}

.search-box-interactive:focus-within {
  border-color: var(--brand-blue);
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.12);
}

.search-box-interactive input {
  background: transparent;
  border: none;
  padding: 0 18px;
  color: var(--text-main);
  flex: 1;
  font-size: 0.95rem;
  outline: none;
  min-width: 0;
}

.search-box-interactive input::placeholder {
  color: rgba(75, 85, 99, 0.55);
}

.search-box-interactive .btn-search {
  background: var(--brand-blue);
  border: none;
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.feedback-message {
  margin-top: 15px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  display: none;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feedback-success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #059669;
}

.feedback-error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #dc2626;
}

.btn-whatsapp-redirect {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  background: var(--brand-orange);
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
}

.coverage-map-wrapper {
  display: flex;
  justify-content: center;
}

.map-mock {
  width: 100%;
  max-width: 450px;
  height: 350px;
  border: 1px solid var(--border-card);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  background:
    radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, rgba(233, 240, 255, 0.95) 100%),
    url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=500&q=80') center/cover;
}

.map-pulse {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--brand-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.7);
  animation: pulse 2s infinite;
}

.map-pulse.delay-1 {
  animation-delay: 0.7s;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.5);
  }
  70% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 40px rgba(255, 122, 0, 0);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
  }
}

.map-card-info {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  z-index: 2;
}

.map-card-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.map-card-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.globe-icon {
  color: var(--brand-blue);
  margin-bottom: 10px;
}

.main-footer {
  background: #eef5ff;
  border-top: 1px solid var(--border-card);
  padding: 70px 8% 30px;
  margin-top: 50px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .logo-footer img {
  max-height: 60px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 360px;
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  margin-left: 70px;
  gap: 30px;
  align-items: center;
}

.footer-socials a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
}
.img-app {
  width: 50px;
  border-radius: 50%;
  border: none;
}
.footer-socials a:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.main-footer h4 {
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.main-footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--brand-orange);
}

.main-footer ul {
  list-style: none;
}

.main-footer ul li {
  margin-bottom: 15px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.main-footer ul li a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-contact ul li svg {
  color: var(--brand-blue);
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--border-card);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.developer-credit span {
  color: var(--brand-orange);
  font-weight: 700;
}

.whatsapp-fixed-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 999;
  text-decoration: none;
}

.whatsapp-fixed-btn i {
  width: 30px;
  height: 30px;
}

.whatsapp-fixed-btn .tooltip-text {
  position: absolute;
  right: 75px;
  background-color: #0f172a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition);
}

.whatsapp-fixed-btn:hover .tooltip-text {
  opacity: 1;
  transform: translateX(0);
}

:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 992px) {
  .hero-content,
  .mobile-wrapper,
  .coverage-content,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-carousel {
    max-width: 680px;
    margin: 0 auto;
  }

  .mobile-showcase-price {
    margin: 0 auto 30px;
  }

  .mobile-benefits-list li,
  .location-list li {
    justify-content: center;
  }

  .mobile-graphic-side {
    display: none;
  }

  .location-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    padding: 16px 4%;
    flex-wrap: wrap;
  }

  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 0 6px;
  }

  nav.nav-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    order: 2;
  }

  .btn-client {
    order: 3;
    padding: 9px 14px;
    font-size: 0.88rem;
  }

  .logo {
    order: 1;
  }

  .hero {
    padding-top: 58px;
  }

  .carousel-track {
    min-height: 320px;
  }

  .carousel-slide {
    padding: 22px;
  }

  .search-box-interactive {
    flex-direction: column;
    border-radius: 20px;
    padding: 10px;
  }

  .search-box-interactive input {
    width: 100%;
    padding: 14px 16px;
    text-align: center;
  }

  .search-box-interactive .btn-search {
    width: 100%;
    justify-content: center;
    border-radius: 14px;
    padding: 14px 18px;
  }

  .map-mock {
    height: 300px;
    padding: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-fixed-btn {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-fixed-btn i {
    width: 26px;
    height: 26px;
  }

  .whatsapp-fixed-btn .tooltip-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero,
  .plans-container,
  .benefits-container,
  .coverage-container,
  .mobile-highlight-container,
  .main-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-content {
    gap: 24px;
  }

  .hero-carousel {
    padding: 16px;
  }

  .carousel-slide {
    padding: 18px;
  }

  .carousel-speed {
    font-size: 2.2rem;
  }

  .mobile-showcase-price {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .big-gb {
    border-right: none;
    padding-right: 0;
    font-size: 2.8rem;
  }

  .price-block h3 {
    font-size: 1.4rem;
  }

  .phone-frame {
    width: 100%;
    max-width: 260px;
    height: 440px;
  }
}