/* =========================
   RESET
========================= */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

html{
  scroll-behavior: smooth;
}

body{
  background: var(--chalk-white);
  color: var(--rich-black);
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  overflow-x: hidden;
}

/* =========================
   ROOT COLORS
========================= */
:root{
  --orange-darwin: #f89205;
  --cyan-blue: #04b3eb;
  --midnight-blue: #063f5e;
  --chalk-white: #ffffff;
  --rich-black: #0c0c16;
}

/* =========================
   TOP BAR
========================= */
.top-bar{
  background: var(--cyan-blue);
  color: var(--rich-black);
  padding: 20px;
  font-size: 20px;
  box-shadow: 0 0 25px var(--rich-black);
}

.contact-info{
  display: flex;
  justify-content: center;
  gap: 50px;
  font-weight: 1000;
}

.contact-info span{
  white-space: nowrap;
  color: var(--rich-black);
  transition: color .25s;
}

.contact-info span:hover{
  color: var(--orange-darwin);
  cursor: pointer;
}

/* =========================
   HEADER & NAVBAR
========================= */
.header{
  position: relative;
  top:0;
  z-index:1000;
  padding:20px 20px;
}

.navbar{
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo{
  display:flex;
  gap:62px;
  align-items:center;
}

.logo img{
  height:95px;
}
.nav-links{
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-links a{
  position:relative; 
  display:inline-block; 
  padding:8px 10px;
  color: var(--rich-black); 
  font-weight:800; 
  text-decoration:none;
  letter-spacing:.2px;
  transition: color .25s, transform .25s;
}
.nav-links a::after{
  content:""; 
  position:absolute; 
  left:10px; 
  right:10px; 
  bottom:4px; 
  height:2px;
  background: linear-gradient(90deg, var(--cyan-blue), var(--cyan-blue));
  transform: scaleX(0); 
  transform-origin:center; 
  transition: transform .25s;
  border-radius:2px;
}
.nav-links a:hover{
  color: var(--cyan-blue);
  transform: translateY(-1px);
}
.nav-links a:hover::after{ 
  transform: scaleX(1); 
}
/* =========================
   HAMBURGER
========================= */
.hamburger{
  display:none;
  font-size:28px;
  background:none;
  border:none;
  cursor:pointer;
  z-index: 4000;
  color: var(--rich-black);
  transition: transform .2s, box-shadow .2s, border-color .2s, color .2s;
}
.hamburger:hover{
  transform: translateY(-1px);
  color: var(--orange-darwin);
  border-color: var(--orange-darwin);
}
.hamburger.active{
  transform: rotate(90deg);
}

/* =========================
   WHATSAPP BUTTON
========================= */
.whatsapp-button{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  color:#fff;
  padding:15px 20px;
  border-radius:50px;
  text-decoration:none;
  display:flex;
  align-items:center;
  box-shadow:2px 2px 10px rgba(0,0,0,.2);
  z-index:10;
}

.whatsapp-button img{
  width:24px;
  margin-right:10px;
}

/* =========================
   HERO VIDEO
========================= */
.hero{
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

/* VIDEO */
.hero-video{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* =========================
   BURBUJA (GLASS EFFECT)
========================= */
.hero-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  text-align: center;
  color: #fff;
  animation: fadeUp 1s ease;

  max-width: 700px;
  padding: 30px 35px;

  /* 🔥 EFECTO BURBUJA */
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.25);

  box-shadow: 0 10px 40px rgba(0,0,0,.3);
}
@keyframes fadeUp{
  from{
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to{
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* TEXTO */
.hero-content h1{
  font-size: 44px;
  margin-bottom: 12px;
  font-weight: 950;
}

.hero-content p{
  font-size: 18px;
  margin-bottom: 20px;
}

/* BOTONES */
.hero-buttons{
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn{
  background: var(--orange-darwin);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: .3s;
}

.btn:hover{
  background: var(--cyan-blue);
}

/* BOTÓN SECUNDARIO */
.btn.secondary{
  background: transparent;
  border: 2px solid var(--orange-darwin);
}

.btn.secondary:hover{
  background: var(--orange-darwin);
  color: var(--rich-black);
}
/* =========================
   SERVICES INFO SECTION
========================= */
.services-info{
  padding: 90px 20px;
  background: var(--chalk-white);
}

.services-header{
  text-align: center;
  max-width: 600px;
  margin: 0 auto 55px;
}

.services-header h2{
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--midnight-blue);
}

.services-header p{
  color: #555;
  line-height: 1.6;
}

.services-info-grid{
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-info-card{
  display: flex;
  align-items: center;
  gap: 25px;
  background: #e8e9e9;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
  transition: .3s;
}

.service-info-card:hover,
.service-info-card.active{
  background: var(--midnight-blue);
  color: #fff;
  transform: translateY(-5px);
}

.service-icon{
  font-size: 45px;
  min-width: 60px;
}

.service-info-card h3{
  font-size: 22px;
  margin-bottom: 10px;
}

.service-info-card p{
  color: #555;
  line-height: 1.5;
}

.service-info-card:hover p,
.service-info-card.active p{
  color: rgba(255,255,255,.85);
}

.services-action{
  max-width: 1100px;
  margin: 45px auto 0;
  display: flex;
  justify-content: flex-end;
}

.explore-btn{
  background: var(--midnight-blue);
  color: #fff;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  transition: .3s;
}

.explore-btn:hover{
  background: var(--cyan-blue);
}
/* =========================
   APPLIANCES SECTION
========================= */
.appliances-section{
  padding: 50px 20px;
  background: var(--chalk-white);
}

.appliances-container{
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.appliances-header{
  text-align: center;
  max-width: 850px;
  margin: 0 auto 45px;
}

.section-tag{
  display: inline-block;
  background: #eef4ff;
  color: var(--cyan-blue);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 900;
  margin-bottom: 22px;
  font-size: 16px;
}

.appliances-header h2{
  font-size: 42px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--midnight-blue);
  margin-bottom: 15px;
}

.appliances-header p{
  font-size: 22px;
  line-height: 1.6;
  color: #555;
}

/* IMAGE */
.appliances-image{
  margin-bottom: 35px;
}

.appliances-image img{
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: 0 25px 50px rgba(0,0,0,.12);
}

/* LIST */
.appliances-list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 35px;
}

.appliance-item{
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: .3s;
  box-shadow: 0 10px 25px rgba(0,0,0,.04);
}

.appliance-item:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,.09);
}

.appliance-item img{
  width: 75px;
  height: 75px;
  object-fit: contain;
  margin-bottom: 16px;
}

.appliance-item h3{
  font-size: 22px;
  color: var(--midnight-blue);
  font-weight: 900;
}

/* BUTTON */
.appliances-action{
  text-align: center;
}

.appliances-btn{
  display: inline-block;
  background: var(--midnight-blue);
  color: #fff;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  transition: .3s;
}

.appliances-btn:hover{
  background: var(--cyan-blue);
  transform: translateY(-3px);
}
/* =========================
   CONTACT SECTION
========================= */
.contact-section{
  padding: 100px 20px;
  background: var(--chalk-white);
}

/* CARD */
.contact-card{
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 35px;
  padding: 60px;

  box-shadow:
    0 35px 50px rgba(0,0,0,.10);
}

/* HEADER */
.contact-header{
  text-align: center;
  margin-bottom: 60px;
}

/* BADGE */
.contact-badge{
  display: inline-block;
  background: #eef4ff;
  color: var(--cyan-blue);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 800;
  margin-bottom: 25px;
  font-size: 16px;
}

/* TITULO */
.contact-header h2{
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 15px;
  font-weight: 900;
  color: var(--midnight-blue);
}

/* TEXTO */
.contact-header p{
  font-size: 22px;
  color: #555;
}

/* =========================
   CONTACT GRID
========================= */
.contact-info-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* ITEM */
.contact-info-item{
  text-align: center;
  padding: 20px;
}

/* ICON */
.contact-icon{
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.contact-icon.blue{
  background: #e8f0ff;
}

.contact-icon.green{
  background: #eaf9ed;
}

.contact-icon.yellow{
  background: #fff5dc;
}

/* TITULOS */
.contact-info-item h3{
  font-size: 32px;
  margin-bottom: 18px;
}

/* LINKS */
.contact-info-item a{
  display: inline-block;
  font-size: 22px;
  font-weight: 900;
  color: var(--cyan-blue);
  text-decoration: none;
  margin-bottom: 18px;
}

.schedule{
  display: inline-block;
  font-size: 32px;
  font-weight: 900;
  color: #f59e0b;
  margin-bottom: 18px;
}

/* TEXTOS */
.contact-info-item p{
  color: #555;
  line-height: 1.7;
  font-size: 18px;
}

/* DIVIDER */
.divider{
  height: 1px;
  background: #e5e7eb;

  margin: 50px 0;
}

/* PAYMENT HEADER */
.payment-header{
  text-align: center;
  margin-bottom: 40px;
}

.payment-header h3{
  font-size: 42px;
  margin-bottom: 12px;
  font-weight: 900;
}

.payment-header p{
  color: #555;
  font-size: 18px;
}

/* PAYMENT GRID */
.payment-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

/* PAYMENT ITEM */
.payment-item{
  background: #f8f9ff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: .3s;
}

.payment-item:hover{
  transform: translateY(-8px);

  box-shadow:
    0 20px 35px rgba(0,0,0,.08);
}

/* IMG */
.payment-item img{
  width: 75px;
  height: 75px;

  object-fit: contain;
}

/* TITULOS */
.payment-item h4{
  font-size: 22px;
  margin-bottom: 10px;
}

/* TEXTOS */
.payment-item p{
  color: #555;
  line-height: 1.6;
}
/* =========================
   ZONAS SECTION
========================= */
.zones-section{
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
}

.zones-container{
  max-width: 1200px;
  margin: auto;
}

.zones-header{
  text-align: center;
  max-width: 850px;
  margin: 0 auto 55px;
}

.zones-header h2{
  font-size: 42px;
  color: var(--midnight-blue);
  font-weight: 900;
  margin-bottom: 18px;
}

.zones-header p{
  font-size: 20px;
  color: #555;
  line-height: 1.7;
}

.zones-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.zone-card{
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow:
    0 18px 0 rgba(6,63,94,0.12),
    0 25px 45px rgba(0,0,0,0.10);
  border: 1px solid #e5e7eb;
  transform: perspective(900px) rotateX(0deg);
  transition: all 0.3s ease;
}

.zone-card:hover{
  transform: perspective(900px) rotateX(3deg) translateY(-10px);
  box-shadow:
    0 24px 0 rgba(0, 0, 0, 0.18),
    0 35px 55px rgba(0,0,0,0.15);
}

.zone-card h3{
  font-size: 24px;
  color: var(--midnight-blue);
  margin-bottom: 18px;
  font-weight: 900;
  border-bottom: 3px solid var(--cyan-blue);
  padding-bottom: 10px;
}

.zone-card ul{
  list-style: none;
}

.zone-card li{
  font-size: 16px;
  color: #444;
  padding: 9px 0;
  border-bottom: 1px solid #eef2f7;
  line-height: 1.5;
}

.zone-card li::before{
  content: "✓";
  color: var(--cyan-blue);
  font-weight: 900;
  margin-right: 8px;
}

/* =========================
   FOOTER
========================= */
.footer{
  background: var(--midnight-blue);
  color: #ffffff;
  padding: 50px 20px;
}

.footer-container{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer p{
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.9);
  max-width: 900px;
  margin: 0 auto 30px;
}

.footer p strong{
  color: #ffffff;
  font-weight: 900;
}

.footer-call-btn{
  display: inline-block;
  background: var(--orange-darwin);
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.footer-call-btn:hover{
  background: var(--cyan-blue);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* =========================
   TABLETS Y MÓVILES GRANDES
========================= */
@media (max-width: 900px){

  /* HAMBURGER */
  .hamburger{
    display: block;
  }

  /* MENÚ MÓVIL */
  .nav-links{
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    padding: 100px 20px;
    background: var(--chalk-white);
    flex-direction: column;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 3000;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,0.08);
  }

  .nav-links.open{
    right: 0;
  }

  /* HERO */
  .hero{
    height: 80vh;
  }

  .hero-content{
    padding: 20px;
    max-width: 90%;
  }

  .hero-content h1{
    font-size: 32px;
  }

  .hero-content p{
    font-size: 16px;
  }

  /* SERVICES */
  .services-info-grid{
    grid-template-columns: 1fr;
  }

  .service-info-card{
    padding: 25px;
    align-items: flex-start;
  }

  .services-header h2{
    font-size: 32px;
  }

  .services-action{
    justify-content: center;
  }

  /* APPLIANCES */
  .appliances-header h2{
    font-size: 38px;
  }

  .appliances-header p{
    font-size: 18px;
  }

  .appliances-image img{
    height: 320px;
  }

  .appliances-list{
    grid-template-columns: repeat(2, 1fr);
  }

  /* CONTACT */
  .contact-card{
    padding: 40px 25px;
  }

  .contact-header h2{
    font-size: 32px;
  }

  .contact-header p{
    font-size: 20px;
  }

  .contact-info-grid{
    grid-template-columns: 1fr;
  }

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

  .contact-info-item a{
    font-size: 22px;
  }

  .schedule{
    font-size: 30px;
  }

  .payment-header h3{
    font-size: 32px;
  }
}

/* =========================
   CELULARES
========================= */
@media (max-width: 768px){

  /* TOP BAR */
  .top-bar{
    padding: 12px 15px;
    font-size: 14px;
  }

  .contact-info{
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }

  .contact-info span{
    white-space: normal;
    text-align: center;
  }

  /* LOGO */
  .logo img{
    height: 70px;
  }

  /* HERO */
  .hero-content h1{
    font-size: 26px;
  }

  .hero-content p{
    font-size: 15px;
  }

  .hero-buttons{
    flex-direction: column;
    align-items: center;
  }

  .btn{
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  /* APPLIANCES */
  .appliances-list{
    grid-template-columns: 1fr;
  }

  .appliances-btn{
    width: 100%;
    max-width: 320px;
  }

  /* CONTACT */
  .contact-header p{
    font-size: 18px;
  }

  .contact-info-item h3{
    font-size: 26px;
  }

  .contact-info-item a{
    font-size: 20px;
  }

  .schedule{
    font-size: 26px;
  }

  .payment-item{
    flex-direction: column;
    text-align: center;
  }

  /* WHATSAPP FLOATING BUTTON */
  .whatsapp-button{
    right: 15px;
    bottom: 15px;
    padding: 12px 18px;
    font-size: 14px;
  }

  .whatsapp-button img{
    width: 22px;
    margin-right: 8px;
  }

  /* FOOTER */
  .footer{
    padding: 40px 20px;
  }

  .footer p{
    font-size: 14px;
    line-height: 1.8;
  }

  .footer-call-btn{
    width: 100%;
    max-width: 320px;
    font-size: 17px;
    padding: 14px 25px;
  }
}

/* =========================
   CELULARES PEQUEÑOS
========================= */
@media (max-width: 500px){

  .hero-content{
    padding: 18px;
  }

  .hero-content h1{
    font-size: 24px;
  }

  .hero-content p{
    font-size: 14px;
  }

  .services-header h2,
  .appliances-header h2,
  .contact-header h2,
  .payment-header h3{
    font-size: 28px;
  }

  .appliances-image img{
    height: 240px;
  }

  .contact-card{
    padding: 30px 20px;
    border-radius: 25px;
  }

  .contact-icon{
    width: 75px;
    height: 75px;
    font-size: 28px;
  }

  .payment-item{
    padding: 22px;
  }

  .payment-item img{
    width: 60px;
    height: 60px;
  }

  .footer-call-btn{
    font-size: 16px;
  }
}
/* ZONAS RESPONSIVE */
@media (max-width: 900px){
  .zones-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .zones-header h2{
    font-size: 34px;
  }
}

@media (max-width: 600px){
  .zones-grid{
    grid-template-columns: 1fr;
  }

  .zones-header h2{
    font-size: 28px;
  }

  .zones-header p{
    font-size: 17px;
  }

  .zone-card{
    padding: 26px 22px;
  }

  .zones-btn{
    width: 100%;
    max-width: 330px;
  }
}