/* ============================================================
  COMPUASISTENTES
============================================================ */

@font-face {
  font-family: 'Montserrat';
  src: url('../Fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

:root {
  --bg-main:    #001738;
  --bg-dark:    #000b1c;
  --white:      #ffffff;
  --blue:       #0089f9;
  --blue-light: #1aa3ff;
  --card-bg:    #001e49;
  --card-circle:#004e9b;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ============================================================
  HEADER
============================================================ */
.hero-wrapper {
  background-image: url('../Imagenes/hero-bg.jpg');
  background-size: cover;
  background-position: right center; /* laptop siempre visible, se recorta el lado izquierdo */
  background-repeat: no-repeat;
}

header {
  padding: 24px 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.logo:hover { transform: scale(1.07); }

.logo img { height: 22px; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  position: relative;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:not(.nav-btn)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.desktop-nav a.active:not(.nav-btn)::after { transform: scaleX(1); }

.desktop-nav a:not(.nav-btn):hover {
  color: var(--blue);
  transform: scale(1.08);
}

.nav-btn {
  background: var(--blue);
  color: var(--white) !important;
  padding: 7px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.78rem !important; /* reducido de 0.88rem */
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease !important;
}

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

.nav-btn:hover {
  transform: scale(1.08) !important;
  background: var(--white) !important;
  color: var(--bg-dark) !important;
}

/* ============================================================
  HERO
============================================================ */
.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 40px 110px 80px;
}

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

.hero-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.4rem, 3.2vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  white-space: nowrap;
}

.hero-title .accent { color: var(--blue); }

.hero-desc {
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin: 22px 0 32px;
  max-width: 420px;
}

/* ============================================================
  BOTONES (compartido)
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: scale(1.08);
  background: var(--white);
  color: var(--bg-dark);
}

/* ============================================================
  STATS BAR
============================================================ */
.stats {
  background: var(--bg-dark);
  padding: 38px 110px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}

.stat-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
}

.stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stat-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.stat-desc {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ============================================================
  ETIQUETAS Y TÍTULOS DE SECCIÓN (compartido)
============================================================ */
.section-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  font-weight: 800;
  color: var(--white);
}

/* ============================================================
  ANIMACIÓN FADE-IN AL SCROLL
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
  SECCIÓN 3 — NUESTROS SERVICIOS
============================================================ */
.services {
  background: var(--bg-main);
  padding: 80px 110px;
  text-align: center;
}

.services .section-title { margin-bottom: 64px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 320px));
  justify-content: center;
  gap: 36px;
}

.service-card {
  border: 1.5px solid var(--blue);
  border-radius: 12px;
  background: var(--card-bg);
  padding: 58px 24px 32px;
  text-align: center;
  position: relative;
}

.service-icon-wrap {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  background: var(--card-circle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-wrap img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.service-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.35;
}

.service-list { list-style: none; }

.service-list li {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.72);
  padding: 4px 0;
  line-height: 1.5;
  text-align: center;
}

/* ============================================================
  SECCIÓN 4 — PLANES SOPORTE
============================================================ */
.plans {
  background: var(--bg-main);
  padding: 40px 110px 80px;
}

.plans-header {
  text-align: center;
  margin-bottom: 50px;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 140px;
}

.plan-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--blue);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--card-bg);
  background-size: cover;
  background-position: center top;
}

.plan-content { padding: 32px 34px; }

.plan-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.plan-desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
  line-height: 1.6;
}

.plan-list { list-style: none; }

.plan-list li {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.82);
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.5;
}

.plan-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--blue);
}

/* ============================================================
  SECCIÓN 5 — CTA BANNER
============================================================ */
.cta-banner {
  background: var(--bg-main);
  padding: 30px 110px 80px;
}

.cta-inner {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.cta-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background: var(--card-circle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.cta-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.cta-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.cta-banner .btn .arrow {
  font-size: 1.2em;
  line-height: 1;
}

/* ============================================================
  FOOTER
============================================================ */
footer {
  background: var(--bg-dark);
  padding: 60px 110px 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 44px;
}

.footer-brand .logo { margin-bottom: 14px; }

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.social-link {
  display: inline-block;
  transition: transform 0.2s ease;
}

.social-link:hover { transform: scale(1.18); }

.social-link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-col h4 {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.footer-links { list-style: none; }

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a.active { color: var(--blue); }

.footer-links a:hover {
  color: var(--blue);
  transform: scale(1.06);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-item .ci-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.contact-item .ci-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-item p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  text-align: center;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
}

/* ============================================================
  HAMBURGER BUTTON (oculto en desktop)
============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--blue);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
  BOTÓN FLOTANTE DE WHATSAPP
═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  z-index: 9999;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  display: block;
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}

.whatsapp-float.hide-wa {
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}






/* ============================================================
  PÁGINA: ASISTENTE A DOMICILIO (Home/Office)
============================================================ */
.header-dark {
  background-color: var(--bg-dark);
  padding: 24px 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.ho-main {
  background-color: var(--bg-dark);
  padding: 40px 110px 120px;
  min-height: 80vh;
}

.ho-header {
  text-align: center;
  margin-bottom: 70px;
}

.ho-title {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}

.ho-title .accent {
  color: var(--blue);
}

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

.ho-card {
  background-color: var(--bg-dark); 
  border: 1.5px solid var(--card-circle);
  border-radius: 12px;
  padding: 45px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.ho-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue-light);
}

.ho-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 78, 155, 0.2);
  border: 1.5px solid var(--card-circle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}

.ho-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.ho-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.35;
}

.ho-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ho-card-list li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}






/* ============================================================
  PÁGINA: REPUESTOS (Escritorio - Ajustes visuales)
============================================================ */
.repuestos-page { background: var(--bg-dark); }

.hero-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 110px 50px;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.78);
    margin-top: 20px;
    max-width: 600px;
    line-height: 1.5;
}

.hero-simple .ho-title {
    white-space: nowrap;
}

.mobile-br {
    display: none !important;
}

.repuestos-list-section {
    padding: 0 110px 60px;
    display: flex;
    justify-content: center;
}

.repuestos-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px 50px;
    max-width: 1100px;
    width: 100%;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: transparent;
    padding: 10px 0; 
    border: none;
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.list-item:nth-child(1) { animation-delay: 0.1s; }
.list-item:nth-child(2) { animation-delay: 0.2s; }
.list-item:nth-child(3) { animation-delay: 0.3s; }
.list-item:nth-child(4) { animation-delay: 0.4s; }
.list-item:nth-child(5) { animation-delay: 0.5s; }
.list-item:nth-child(6) { animation-delay: 0.6s; }

.list-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.list-item p {
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.5;
    margin: 0;
}

.catalog { padding: 20px 110px 100px; }

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

.catalog-item {
    background: transparent;
    border-radius: 12px;
    padding: 30px 20px 20px;
    text-align: center;
    border: 1.5px solid var(--card-circle);
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.catalog-item:nth-child(1) { animation-delay: 0.3s; }
.catalog-item:nth-child(2) { animation-delay: 0.4s; }
.catalog-item:nth-child(3) { animation-delay: 0.5s; }
.catalog-item:nth-child(4) { animation-delay: 0.6s; }
.catalog-item:nth-child(5) { animation-delay: 0.7s; }
.catalog-item:nth-child(6) { animation-delay: 0.8s; }
.catalog-item:nth-child(7) { animation-delay: 0.9s; }
.catalog-item:nth-child(8) { animation-delay: 1.0s; }

.catalog-item:hover { 
    transform: translateY(-8px); 
    border-color: var(--card-bg); 
    background-color: var(--card-bg);
}

.catalog-img-wrap {
    width: 100%;
    height: 130px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.catalog-item:hover .catalog-img-wrap img {
    transform: scale(1.45); 
}

.catalog-item h3 { 
    font-size: 1rem; 
    color: var(--white); 
    font-weight: 700;
    margin: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    opacity: 1;
}

.catalog-item:hover h3 {
    opacity: 0; 
    transform: translateY(10px); 
    pointer-events: none; 
}





/* ============================================================
  PÁGINA: CONTACTO (Contacto)
============================================================ */
.page-contacto .header-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent !important;
    box-shadow: none;
    z-index: 100;
}

.contacto-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 60px; 
    overflow: hidden;
}

.contacto-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Imagenes/Contacto-fondo.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.contacto-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(4, 11, 22, 0.5);
    z-index: -1;
}

.contacto-container {
    position: relative;
    width: 100%;
    max-width: 90%;
    display: flex;
    gap: 125px;
    align-items: center;
    z-index: 1;
}

.contacto-form-wrapper {
    flex: 1;
    background-color: var(--card-bg, rgba(16, 25, 43, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contacto-form h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
}

.contacto-form label {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.contacto-form input,
.contacto-form select,
.contacto-form textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-family: inherit;
    padding: 12px 15px;
    margin-top: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus {
    outline: none;
    border-color: #0090F2;
    background-color: rgba(255, 255, 255, 0.1);
}

.contacto-form select option {
    background-color: #0d1627;
    color: white;
}

.contacto-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    margin-top: 15px;
    padding: 15px;
    font-size: 1.05rem;
    cursor: pointer;
    text-align: center; 
    display: block;
}

.contacto-info {
    flex: 1.2;
    color: #ffffff;
}

.contacto-info h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
}

.contacto-info p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contacto-info .accent {
    color: #0090F2;
    font-weight: 700;
    min-width: 205px;
}

.contacto-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.contacto-info a:hover {
    color: #0090F2;
}






/* ============================================================
MENÚ MOBILE OVERLAY
============================================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 20px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}

.mobile-menu-header .logo img { height: 26px; }

.menu-close {
  width: 40px;
  height: 40px;
  background: var(--blue);
  border: none;
  border-radius: 8px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.2s ease;
}

.menu-close:hover { background: var(--white); color: var(--bg-dark); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.mobile-nav a {
  display: block;
  text-align: left;
  padding: 15px 20px;
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--white);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav a.active {
  background: var(--blue);
  color: var(--white);
}

.mobile-nav a:not(.active):hover {
  background: var(--blue);
}

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

.mobile-social {
  display: flex;
  justify-content: center;
  gap: 45px;
  padding: 10px 0 36px;
}

.mobile-social .social-link img {
  width: 38px;
  height: 38px;
}

.mobile-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding: 15px;
  font-size: 0.95rem;
}

.mobile-contact {
  margin-top: auto;
  padding: 28px 0 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 14px;
  display: flex;
  justify-content: left;
}

.mobile-contact-inner {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
}

.mobile-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.mobile-contact .ci-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.mobile-contact .ci-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-contact .contact-item p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  text-align: left;
}

.mobile-contact ~ .mobile-cta {
  margin-top: 0;
}





/* ============================================================
  ANIMACIONES DE ENTRADA
============================================================ */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}





/* ============================================================
  RESPONSIVE — MOBILE  (max 768px)
============================================================ */
@media (max-width: 768px) {

  header {
    padding: 14px 20px;
  }

  .logo img { height: 26px; }

  .desktop-nav { display: none; }

  .hamburger { display: flex; }

  .hero-wrapper {
    background-position: 100% center;
    background-image: 
      linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 18, 56, 0.6)), 
      url('../Imagenes/hero-bg.jpg');
  }

  .hero {
    min-height: 80vh;
    padding: 80px 24px 60px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
    white-space: normal;
    text-align: center;
  }

  .hero-desc {
    font-size: 0.85rem;
    max-width: 300px;
    text-align: center;
  }

  .hero-content .btn {
    display: block;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
  }

  .stats {
    padding: 28px 20px;
    flex-wrap: nowrap;
    justify-content: space-around;
    gap: 10px;
  }

  .stat-item--hide-mobile {
    display: none;
  }

  .stat-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    flex: 1;
  }

  .stat-icon {
    width: 46px;
    height: 46px;
  }

  .stat-text { text-align: center; }

  .stat-label { display: none; }

  .stat-desc {
    font-size: 0.65rem;
    line-height: 1.4;
  }

  .services {
    padding: 60px 20px 50px;
  }

  .services .section-title {
    margin-bottom: 52px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: stretch;
    gap: 44px 16px;
  }

  .service-card {
    padding: 48px 16px 24px;
  }

  .service-icon-wrap {
    width: 64px;
    height: 64px;
    top: -32px;
  }

  .service-icon-wrap img {
    width: 30px;
    height: 30px;
  }

  .service-name { font-size: 0.88rem; }

  .service-list li {
    font-size: 0.7rem;
    text-align: center;
  }

  .plans {
    padding: 40px 20px 60px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .plan-card {
    min-height: 380px;
  }

  .cta-banner {
    padding: 30px 20px 60px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }

  .cta-left {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .cta-text h3 { font-size: 1rem; }
  .cta-text p  { font-size: 0.82rem; }

  .cta-banner .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }






  .header-dark {
    padding: 14px 20px;
  }

  .ho-main {
    padding: 40px 20px 80px; 
  }

  .ho-header {
    margin-bottom: 40px;
  }

  .ho-title {
    font-size: clamp(1.6rem, 6vw, 1.9rem);
  }

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

  .ho-card {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding: 24px 20px;
    align-items: start;
  }

  .ho-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .ho-icon img {
    width: 26px;
    height: 26px;
  }

  .ho-card-title {
    grid-column: 2;
    grid-row: 1;
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .ho-card-list {
    grid-column: 2;
    grid-row: 2;
    gap: 6px;
  }

  .ho-card-list li {
    font-size: 0.75rem;
  }






  .contacto-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .contacto-info {
        text-align: center;
    }
    
    .contacto-info p {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
        margin-bottom: 25px;
    }
    
    .contacto-info .accent {
        min-width: auto;
    }

  .contacto-page {
        padding: 100px 15px 100px;
    }
    
    .contacto-info h3 {
        font-size: 2.5rem;
    }
    
    .contacto-form-wrapper {
        padding: 30px 20px;
    }


.mobile-br { display: none; }

@media (max-width: 768px) {
    
    .mobile-br { display: block; }

    .hero-simple { 
        padding: 40px 20px 20px; 
    }
    
    .hero-simple .ho-title {
        line-height: 1.25;
        white-space: normal;
    }

    .mobile-br { 
        display: block !important;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 35px;
    }
    
    .repuestos-list-section { 
        padding: 0 20px 50px; 
    }
    
    .repuestos-list { 
        grid-template-columns: 1fr;
        gap: 20px; 
    }
    
    .list-item {
        flex-direction: row;
        text-align: left;
        background: transparent;
        padding: 5px 0;
        gap: 15px;
    }

    .list-icon {
        width: 38px;
        height: 38px;
    }

    .catalog { 
        padding: 0 20px 80px; 
    }
    
    .catalog-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; 
        align-items: stretch;
        padding-bottom: 0; 
    }

    .catalog-item:nth-child(even) {
        margin-top: 0; 
    }

    .catalog-item {
        padding: 20px 10px 15px;
        border-color: rgba(255, 255, 255, 0.15); 
        background-color: var(--card-bg); 
    }

    .catalog-img-wrap {
        height: 80px; 
        margin-bottom: 12px;
    }

    .catalog-item h3 {
        font-size: 0.85rem; 
    }

    .catalog-item:active .catalog-img-wrap img {
        transform: scale(1.25);
    }
}






  footer { display: none; }

  /* ── Sección labels y títulos ── */
  .section-label { font-size: 0.65rem; }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
  }

  .plans-header { margin-bottom: 36px; }

}