/* ===== VARIABLES & RESET ===== */
:root {
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --yellow: #FFD600;
  --yellow-light: #FFE640;
  --yellow-dim: rgba(255, 214, 0, 0.15);
  --white: #FFFFFF;
  --gray: #AAAAAA;
  --gray-light: #E0E0E0;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
  --font: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --glow: 0 0 20px rgba(255, 214, 0, 0.3), 0 0 60px rgba(255, 214, 0, 0.1);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

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

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

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

.section-title h2 {
  margin-bottom: 12px;
}

.section-title span {
  color: var(--yellow);
}

.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.highlight {
  color: var(--yellow);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: #1eba57;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-call {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(255, 214, 0, 0.3);
}

.btn-call:hover {
  background: var(--yellow-light);
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

.btn-outline {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}

.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
}

.btn svg,
.btn i {
  font-size: 1.3rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 214, 0, 0.1);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
}

.navbar-brand .brand-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(255, 214, 0, 0.3);
  transition: var(--transition);
}

.navbar-brand .brand-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--black);
}

.navbar-brand:hover .brand-icon {
  box-shadow: 0 0 20px rgba(255, 214, 0, 0.5);
  transform: scale(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--yellow);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.9rem !important;
  border-radius: 50px;
  background: var(--yellow);
  color: var(--black) !important;
  font-weight: 700 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--yellow-light) !important;
  color: var(--black) !important;
  transform: scale(1.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  /* Mobile browser address bar fix */
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}

/* Hero Background Image */
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  /* Cinematic color grading */
  filter: brightness(0.55) contrast(1.2) saturate(1.15);
  /* Slow cinematic zoom - Desktop only */
  animation: heroVideoZoom 25s ease-in-out infinite alternate;
}

@media (max-width: 768px) {
  .hero-image {
    animation: none;
    /* Disable zoom on mobile for better performance and stability */
    object-position: center;
  }
}

@keyframes heroVideoZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

/* Dark cinematic overlay with gradient */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.3) 40%, rgba(10, 10, 10, 0.6) 80%, var(--black) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(255, 214, 0, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 214, 0, 0.04) 0%, transparent 50%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 214, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 214, 0, 0.05) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

.hero-sparks {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 3;
}

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--yellow), 0 0 30px var(--yellow);
  animation: sparkFloat 3s ease-in-out infinite;
}

.spark:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 2.5s;
}

.spark:nth-child(2) {
  top: 60%;
  left: 85%;
  animation-delay: 0.5s;
  animation-duration: 3.2s;
}

.spark:nth-child(3) {
  top: 40%;
  left: 50%;
  animation-delay: 1s;
  animation-duration: 2.8s;
}

.spark:nth-child(4) {
  top: 80%;
  left: 30%;
  animation-delay: 1.5s;
  animation-duration: 3.5s;
}

.spark:nth-child(5) {
  top: 15%;
  left: 70%;
  animation-delay: 0.8s;
  animation-duration: 2.3s;
}

.spark:nth-child(6) {
  top: 70%;
  left: 60%;
  animation-delay: 2s;
  animation-duration: 3s;
}

@keyframes sparkFloat {

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

  50% {
    opacity: 1;
    transform: translateY(-30px) scale(1.5);
  }
}

.hero .container {
  position: relative;
  z-index: 4;
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-dim);
  border: 1px solid rgba(255, 214, 0, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 24px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 214, 0, 0.3);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(255, 214, 0, 0);
  }
}

.hero h1 {
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--gray-light);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--yellow);
  font-family: var(--font-display);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 4px;
}

.hero-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  z-index: 0;
}

.electric-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 214, 0, 0.15);
  position: relative;
  animation: rotateGlow 8s linear infinite;
}

.electric-circle::before,
.electric-circle::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.electric-circle::before {
  inset: 30px;
  border: 2px solid rgba(255, 214, 0, 0.1);
  animation: rotateGlow 6s linear infinite reverse;
}

.electric-circle::after {
  inset: 60px;
  border: 2px solid rgba(255, 214, 0, 0.08);
  animation: rotateGlow 4s linear infinite;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 214, 0, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 214, 0, 0.05);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--yellow);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--yellow);
  transform: scale(1.1);
}

.service-card:hover .service-icon svg {
  fill: var(--black);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== EMERGENCY ===== */
.emergency {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--yellow) 0%, #FFC107 100%);
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.emergency::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.emergency .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.emergency h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 16px;
}

.emergency p {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 36px;
  opacity: 0.85;
}

.emergency .btn-call {
  background: var(--black);
  color: var(--yellow);
  font-size: 1.15rem;
  padding: 18px 40px;
}

.emergency .btn-call:hover {
  background: var(--dark2);
  transform: translateY(-3px) scale(1.03);
}

.emergency .btn-whatsapp {
  background: #25D366;
  color: white;
}

.emergency-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== COVERAGE ===== */
.coverage {
  padding: 100px 0;
  background: var(--black);
}

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

.coverage-text h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--yellow);
}

.coverage-text p {
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.7;
}

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

.zone-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--dark2);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.zone-item:hover {
  border-color: rgba(255, 214, 0, 0.2);
  background: var(--dark3);
}

.zone-item svg {
  width: 18px;
  height: 18px;
  fill: var(--yellow);
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--dark);
}

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

.testimonial-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(255, 214, 0, 0.15);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--yellow);
  font-size: 1rem;
}

.author-info .name {
  font-weight: 600;
  font-size: 0.95rem;
}

.author-info .location {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--black);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--dark2);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 214, 0, 0.15);
}

.faq-item.active {
  border-color: rgba(255, 214, 0, 0.3);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--yellow);
}

.faq-item.active .faq-question {
  color: var(--yellow);
}

.faq-question svg {
  width: 22px;
  height: 22px;
  fill: var(--gray);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  fill: var(--yellow);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 28px 22px;
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ===== GUARANTEE ===== */
.guarantee {
  padding: 100px 0;
  background: var(--dark);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.guarantee-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  transition: var(--transition);
}

.guarantee-card:hover {
  border-color: rgba(255, 214, 0, 0.2);
  transform: translateY(-4px);
}

.guarantee-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--yellow-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--yellow);
}

.guarantee-card h3 {
  margin-bottom: 10px;
}

.guarantee-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: var(--black);
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border: 1px solid rgba(255, 214, 0, 0.15);
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.03) 0%, transparent 70%);
}

.cta-box h2 {
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  color: var(--gray);
  margin-bottom: 32px;
  font-size: 1.05rem;
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 24px;
  background: var(--dark);
  border-top: 1px solid rgba(255, 214, 0, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-display);
}

.footer-brand h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--gray);
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: var(--yellow);
  flex-shrink: 0;
}

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

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 36px;
  height: 36px;
  fill: white;
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.15);
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== MOBILE STICKY BAR ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--dark);
  border-top: 1px solid rgba(255, 214, 0, 0.2);
  padding: 10px 16px;
}

.mobile-bar-inner {
  display: flex;
  gap: 10px;
}

.mobile-bar .btn {
  flex: 1;
  justify-content: center;
  padding: 14px;
  font-size: 0.9rem;
  border-radius: 12px;
}

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

  .coverage-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 214, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

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

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

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

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

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

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

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

  .mobile-bar {
    display: block;
  }

  .whatsapp-float {
    bottom: 90px;
  }

  section {
    padding: 70px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-item h3 {
    font-size: 1.5rem;
  }
}