/* 
   ==========================================================================
   +Conectados - High Fidelity Screenshot Redesign Stylesheet
   ========================================================================== 
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --blue-electric: #00f0ff;
  --blue-primary: #0055ff;
  --blue-dark: #040714;
  --blue-deep: #02030a;
  
  --orange-bright: #ff6b00;
  --orange-yellow: #ffa800;
  
  /* Text */
  --text-white: #ffffff;
  --text-gray: #a0aec0;
  --text-muted: #5e6b7e;
  
  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Custom Glow Shadows */
  --shadow-green: 0 8px 30px rgba(37, 211, 102, 0.15), 0 0 15px rgba(37, 211, 102, 0.1);
  --shadow-blue: 0 8px 30px rgba(0, 85, 255, 0.2), 0 0 15px rgba(0, 85, 255, 0.15);
  --shadow-orange: 0 8px 30px rgba(255, 107, 0, 0.2), 0 0 15px rgba(255, 107, 0, 0.15);
  --shadow-purple: 0 8px 30px rgba(138, 43, 226, 0.2), 0 0 15px rgba(138, 43, 226, 0.15);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--blue-deep);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--blue-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blue-primary);
}

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

/* Gradients and Typography */
.orange-gradient-text {
  background: linear-gradient(135deg, var(--orange-yellow) 0%, var(--orange-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-hero {
  background: linear-gradient(135deg, var(--orange-yellow) 0%, #ff5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* Header & Navbar */
header.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 100;
  display: flex;
  align-items: center;
}

header.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 62px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.45)) drop-shadow(0 0 3px rgba(0, 85, 255, 0.65));
  transition: var(--transition-smooth);
}

.logo img:hover {
  filter: drop-shadow(0 0 16px rgba(255, 107, 0, 0.65)) drop-shadow(0 0 4px rgba(255, 107, 0, 0.8));
  transform: scale(1.03);
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav.main-nav a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition-fast);
  opacity: 0.85;
}

nav.main-nav a:hover {
  opacity: 1;
  color: var(--orange-bright);
}

/* Contact Button in Nav */
.btn-nav-contact {
  border: 1.5px solid var(--blue-primary);
  color: var(--text-white);
  background: transparent;
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition-smooth);
  box-shadow: 0 0 10px rgba(0, 85, 255, 0.1);
}

.btn-nav-contact:hover {
  background: rgba(0, 85, 255, 0.15);
  box-shadow: 0 0 20px rgba(0, 85, 255, 0.45);
  border-color: var(--blue-electric);
  transform: translateY(-1.5px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(2, 3, 10, 0.8), rgba(2, 3, 10, 0.82)), url('fondo Seccion1.png') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

/* Wave light beam background from bottom-right */
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0, 85, 255, 0.15) 0%, rgba(255, 107, 0, 0.1) 50%, transparent 80%);
  filter: blur(50px);
  transform: rotate(-15deg);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  gap: 24px;
}

.hero-logo-large {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  z-index: 3;
}

.hero-logo-large img {
  height: 130px;
  width: auto;
  filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.45)) drop-shadow(0 0 5px rgba(0, 85, 255, 0.65));
  transition: var(--transition-smooth);
}

.hero-logo-large img:hover {
  filter: drop-shadow(0 0 35px rgba(255, 107, 0, 0.65)) drop-shadow(0 0 8px rgba(255, 107, 0, 0.85));
  transform: scale(1.05);
}

.hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-content p.subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 600px;
}

/* Double Primary CTAs side by side */
.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
}

.btn-hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  border-radius: 20px;
  text-decoration: none;
  color: var(--text-white);
  transition: var(--transition-smooth);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.btn-hero-cta.whatsapp {
  background: linear-gradient(135deg, #0f8f46 0%, #1ebd5b 100%);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 20px rgba(37, 211, 102, 0.2);
}

.btn-hero-cta.whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65), 0 0 30px rgba(37, 211, 102, 0.4);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-hero-cta.call {
  background: linear-gradient(135deg, #0044cc 0%, #0077ff 100%);
  box-shadow: 0 6px 20px rgba(0, 85, 255, 0.45), 0 0 20px rgba(0, 85, 255, 0.2);
}

.btn-hero-cta.call:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 85, 255, 0.65), 0 0 30px rgba(0, 85, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-hero-cta .cta-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.btn-hero-cta .cta-icon svg {
  width: 26px;
  height: 26px;
}

.btn-hero-cta .cta-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-hero-cta .cta-info .title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
}

.btn-hero-cta .cta-info .desc {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Follow social text & icons */
.hero-social-follow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-social-follow span {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.social-icons-row {
  display: flex;
  gap: 14px;
}

.social-circle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-circle-btn.facebook { background: #1877f2; }
.social-circle-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-circle-btn.tiktok { background: #010101; border: 1px solid rgba(255,255,255,0.15); }
.social-circle-btn.whatsapp { background: #25d366; }

.social-circle-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

/* Right side house visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* 4 Contact Channels Section ("Conéctate como quieras") */
.channels {
  padding: 100px 0;
  background: var(--blue-dark);
}

.channels-title-area {
  text-align: center;
  margin-bottom: 52px;
}

.channels-title-area h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.channels-title-area p {
  color: var(--text-gray);
  font-size: 1.05rem;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.channel-card {
  background: rgba(13, 20, 47, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.channel-card .icon-container {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.channel-card:hover .icon-container {
  transform: scale(1.12);
  filter: drop-shadow(0 0 10px currentColor);
}

.channel-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.channel-card p {
  color: var(--text-gray);
  font-size: 0.85rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.channel-card .btn-channel {
  width: 100%;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-white);
  transition: var(--transition-smooth);
}

/* Channel Card 1: WhatsApp (Green) */
.channel-card.whatsapp-card {
  border-color: rgba(37, 211, 102, 0.15);
}
.channel-card.whatsapp-card:hover {
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: var(--shadow-green);
  transform: translateY(-4px);
}
.channel-card.whatsapp-card .icon-container {
  color: #25d366;
  background: rgba(37, 211, 102, 0.08);
}
.channel-card.whatsapp-card .btn-channel {
  background: linear-gradient(135deg, #0f8f46 0%, #1ebd5b 100%);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.channel-card.whatsapp-card:hover .btn-channel {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 0 0 15px rgba(37, 211, 102, 0.35);
}

/* Channel Card 2: Phone (Blue) */
.channel-card.phone-card {
  border-color: rgba(0, 85, 255, 0.15);
}
.channel-card.phone-card:hover {
  border-color: rgba(0, 85, 255, 0.4);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}
.channel-card.phone-card .icon-container {
  color: #0055ff;
  background: rgba(0, 85, 255, 0.08);
}
.channel-card.phone-card .btn-channel {
  background: linear-gradient(135deg, #0044cc 0%, #0077ff 100%);
  box-shadow: 0 4px 15px rgba(0, 85, 255, 0.3);
}
.channel-card.phone-card:hover .btn-channel {
  box-shadow: 0 8px 25px rgba(0, 85, 255, 0.5), 0 0 15px rgba(0, 85, 255, 0.35);
}

/* Channel Card 3: Cobertura (Orange) */
.channel-card.coverage-card {
  border-color: rgba(255, 107, 0, 0.15);
}
.channel-card.coverage-card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: var(--shadow-orange);
  transform: translateY(-4px);
}
.channel-card.coverage-card .icon-container {
  color: #ff6b00;
  background: rgba(255, 107, 0, 0.08);
}
.channel-card.coverage-card .btn-channel {
  background: linear-gradient(135deg, #cc5500 0%, #ff6b00 100%);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}
.channel-card.coverage-card:hover .btn-channel {
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5), 0 0 15px rgba(255, 107, 0, 0.35);
}

/* Channel Card 4: Redes (Purple) */
.channel-card.social-card {
  border-color: rgba(138, 43, 226, 0.15);
}
.channel-card.social-card:hover {
  border-color: rgba(138, 43, 226, 0.4);
  box-shadow: var(--shadow-purple);
  transform: translateY(-4px);
}
.channel-card.social-card .icon-container {
  color: #8a2be2;
  background: rgba(138, 43, 226, 0.08);
}
.channel-card.social-card .btn-channel {
  background: linear-gradient(135deg, #6a1bb0 0%, #8a2be2 100%);
  box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}
.channel-card.social-card:hover .btn-channel {
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.5), 0 0 15px rgba(138, 43, 226, 0.35);
}

/* 4 Benefit Cards ("Más que internet, conexión que transforma") */
.benefits {
  padding: 100px 0;
  background: var(--blue-deep);
}

.benefits-title-area {
  text-align: center;
  margin-bottom: 56px;
}

.benefits-title-area h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card-replic {
  background: rgba(13, 20, 47, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

.benefit-card-replic:hover {
  background: rgba(13, 20, 47, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 85, 255, 0.05);
}

.benefit-card-replic .icon-container-3d {
  width: 90px;
  height: 90px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* 3D neon gradient icons styling */
.icon-container-3d svg {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 0 12px currentColor);
}

.benefit-card-replic.blue-benefit svg { color: var(--blue-electric); }
.benefit-card-replic.orange-benefit svg { color: var(--orange-bright); }

.benefit-card-replic h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.benefit-card-replic p {
  color: var(--text-gray);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Cobertura en tu sector Section */
.coverage {
  padding: 100px 0;
  background: var(--blue-dark);
}

.coverage .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.coverage-details h2 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.coverage-details p {
  color: var(--text-gray);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 420px;
}

.btn-coverage-map {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  border-radius: 16px;
  background: #0055ff;
  color: var(--text-white);
  text-decoration: none;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0, 85, 255, 0.35), 0 0 15px rgba(0, 85, 255, 0.15);
  transition: var(--transition-smooth);
  border: 1.5px solid rgba(255, 255, 255, 0.05);
}

.btn-coverage-map:hover {
  background: #0044cc;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 85, 255, 0.55), 0 0 25px rgba(0, 85, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-coverage-map svg {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.6));
}

.coverage-map-visual {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.15);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 85, 255, 0.1);
}

.coverage-map-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Call to Action Final Section ("¿Listo para conectarte?") */
.cta-final {
  padding: 100px 0;
  background: var(--blue-deep);
}

.cta-final .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-final-content h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-final-content p {
  color: var(--text-gray);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.btn-cta-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #0f8f46 0%, #1ebd5b 100%);
  padding: 18px 40px;
  border-radius: 20px;
  text-decoration: none;
  color: var(--text-white);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4), 0 0 20px rgba(37, 211, 102, 0.2);
  transition: var(--transition-smooth);
  border: 1.5px solid rgba(255, 255, 255, 0.05);
}

.btn-cta-whatsapp-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65), 0 0 30px rgba(37, 211, 102, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-cta-whatsapp-large .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
}

.btn-cta-whatsapp-large .icon-box svg {
  width: 26px;
  height: 26px;
}

.btn-cta-whatsapp-large .info-box {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-cta-whatsapp-large .info-box .title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.btn-cta-whatsapp-large .info-box .desc {
  font-size: 0.85rem;
  opacity: 0.85;
}

.cta-final-visual {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-final-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer Replic */
footer.site-footer {
  background: var(--blue-deep);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer.site-footer .container {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.8fr 0.8fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-gray);
  margin-top: 16px;
  font-size: 0.95rem;
}

.footer-brand .copyright {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 24px;
}

.footer-contact h4,
.footer-social-column h4,
.footer-hours-column h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.footer-contact ul li svg {
  color: var(--blue-primary);
  flex-shrink: 0;
}

.footer-social-column .social-icons-row {
  margin-top: 16px;
}

.footer-hours-column p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.footer-hours-column .hours-time {
  font-weight: 700;
  color: var(--text-white);
  margin-top: 4px;
}

.footer-credits-line {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .channels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-social-follow {
    align-items: center;
  }
  .coverage .container,
  .cta-final .container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .coverage-details p {
    margin-left: auto;
    margin-right: auto;
  }
  footer.site-footer .container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  header.site-header nav.main-nav {
    display: none; /* Handled by JS mobile menu toggle */
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-content h1 {
    font-size: 2.6rem;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  .channels-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .cta-final-content h2 {
    font-size: 2.2rem;
  }
  .btn-cta-whatsapp-large {
    width: 100%;
    max-width: 350px;
  }
  footer.site-footer .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
