/* ============================================================
   ZENTRANET – Hoja de estilos optimizada v1
   (selectores sin uso y reglas duplicadas eliminadas,
   propiedades consolidadas donde era seguro hacerlo)
   ============================================================ */

/* --------------------------- VARIABLES --------------------------- */
:root {
  /* Colores */
  --color-bg: #181818;
  --color-text: #ffffff;
  --color-primary: #007bff;
  --color-primary-hover: #0056b3;
  --color-bg-secondary: #1e1e1e;
  --color-bg-tertiary: #232323;
  --color-gray: #cccccc;
  --color-black: #000000;
  --color-footer-border: #2a2a2a;
   --fab-size:60px;    /* diámetro común */
  --fab-gap :14px;    /* separación vertical */

  /* Tipografías */
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Lato", sans-serif;
}

/* --------------------------- RESETEO BÁSICO --------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
}

/* ============================================================
   TIPOGRAFÍA
   ============================================================ */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Títulos y textos responsivos */
.hero__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.hero__text {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.services__title,
.products__title,
.projects__title,
.contact__title,
.history__title,
.mission__title,
.vision__title {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
}

.service__description,
.product__description,
.projects__description,
.history__text,
.mission__text,
.vision__text {
  font-size: clamp(0.95rem, 2vw, 1rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ============================================================
   UTILIDADES
   ============================================================ */
.icon-right {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  width: 1.5em;
  height: auto;
}
/* ---------- Contenedor ---------- */
.fab-stack{
  position:fixed;
  right:10px;
  bottom:10px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:var(--fab-gap);
  z-index:90;                 /* por debajo de overlays críticos */
}

/* ---------- Botón genérico ---------- */
.fab{
  width:var(--fab-size);
  height:var(--fab-size);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  font-size:1.3rem;
  text-decoration:none;
  transition:transform .25s,box-shadow .25s;
}
.fab:hover{
  transform:translateY(-3px);
  box-shadow:0 0 10px currentColor,0 0 20px currentColor,0 0 30px currentColor;
}

/* ---------- Colores individuales ---------- */
.fab--facebook {background:#1877F2;}
.fab--instagram{
  background:linear-gradient(45deg,#fd5949 0%,#d6249f 50%,#285AEB 100%);
}
.fab--linkedin {background:#0A66C2;}
.fab--whatsapp {background:#25d366;}
/* Botón principal reutilizable */
.projects__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 5px;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #0069d9 0%, #0d6efd 100%);
  color: #ffffff;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
  text-decoration: none;
}
.projects__button i {
  font-size: 1.1rem;
  transition: transform 0.2s;
}
.projects__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}
.projects__button:hover i {
  transform: translateX(6px);
}
.projects__button:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(13, 110, 253, 0.2);
}
.projects__button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.5);
}

/* ============================================================
   ANIMACIONES
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER & NAVEGACIÓN
   ============================================================ */
.header {
  background: var(--color-bg);
  width: 100%;
  padding: 10px 0;
}

.header__nav,
.nav {
  display: flex;
  align-items: center;
  width: 100%;
}

.header__nav {
  padding: 0 20px;
}
.nav {
  justify-content: space-around;
  padding: 10px 20px;
}

.nav__logo {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav__logo-img {
  width: 40%;
  height: auto;
  object-fit: contain;
}

.nav__menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
/* ---------- Iconos arriba del texto ---------- */
.nav__link {
  display: flex;
  flex-direction: column;    /* icono arriba, texto abajo */
  align-items: center;
  justify-content: flex-start;
  gap: 4px;                  /* espacio icono-texto */
  text-decoration: none;
  color: var(--color-gray);
  font-weight: 500;
  padding: 8px 10px;
  font-size: 0.9rem;
  transition: color .3s;
}

.nav__icon {
  font-size: 1.1rem;         /* tamaño del ícono */
  line-height: 1;            /* sin espacio extra */
  color: var(--color-primary);
  transition: transform .25s ease;
}

.nav__link:hover .nav__icon {
  transform: translateY(-2px);  /* leve animación */
}

/* Si quieres ICONOS + CTA con color blanco al pasar el mouse */
.nav__link:hover { color: #fff; }

.nav__cta .nav__icon { color: inherit; } /* Ícono se adapta al fondo azul */

.nav__cta {
  background: var(--color-primary);
  padding: 12px 20px;
  color: var(--color-text);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
}
.nav__cta:hover {
  background: var(--color-primary-hover);
}

.nav__toggle {
  order: -1;
  margin-right: 10px;
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav__toggle-icon {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background: var(--color-text);
  transition: 0.3s;
}
/* ==== DRAWER MÓVIL ==== */
.nav__drawer{
  position:fixed; inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(2px);
  opacity:0; visibility:hidden;
  transition:opacity .3s;
  z-index:998;
}
.nav__panel{
  position:fixed; top:0; right:0;
  width:280px; max-width:85%;
  height:100vh; padding:80px 24px 40px;
  background:var(--color-bg);
  display:flex; flex-direction:column; align-items:center;
  transform:translateX(100%);
  transition:transform .35s ease-in-out;
  z-index:999;
}
.nav__close{
  position:absolute; top:22px; right:22px;
  background:none; border:0; font-size:1.4rem;
  color:var(--color-gray); cursor:pointer;
}

/* lista vertical dentro del panel */
.nav__panel .nav__list{flex-direction:column; gap:28px;}
.nav__panel .nav__cta{width:100%; text-align:center;}

/* estado abierto */
.nav--open .nav__drawer{opacity:1; visibility:visible;}
.nav--open .nav__panel {transform:translateX(0);}
body.no-scroll{overflow:hidden;}

/* oculta drawer en escritorio */



/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--color-bg-tertiary);
  padding: 80px 5%;
  height: 45rem;
  display: flex;
  align-items: center;
}
.hero__content {
  max-width: 750px;
  text-align: left;
}

.hero__cta {
  display: inline-block;
  margin: 20px 0 0 0.5rem;
  background: var(--color-primary);
  padding: 10px 20px;
  color: var(--color-text);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: background 0.3s;
  text-decoration: none;
}
.hero__cta:hover {
  background: var(--color-primary-hover);
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero__text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--color-gray);
}

/* ============================================================
   SECCIONES GENERALES
   ============================================================ */
.services,
.products,
.projects,
.history,
.mission-vision,
.contact {
  padding: 80px 5%;
}

/* ------------------ SERVICES ------------------ */
/* ===========================
   SECCIÓN: SERVICIOS (GRID + CARDS) — SIN DARK MODE
   =========================== */

/* Contenedor de la sección */
.services {
  padding: 3rem 1rem;
}

.services__title {
  text-align: center;
  font-size: clamp(1.35rem, 1.1rem + 1.2vw, 2rem);
  margin: 0 0 2rem 0;
  line-height: 1.25;
  letter-spacing: .2px;
  opacity: .95;
}

/* Grid responsivo de cards */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ----- CARD BASE ----- */
.services__item.service {
  position: relative;
  background: #1f2937;                           /* superficie */
  border: 1px solid rgba(148, 163, 184, .12);    /* slate-400/10 */
  border-radius: 18px;
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  box-shadow:
    0 10px 25px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.02);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.services__item.service:hover {
  transform: translateY(-2px);
  border-color: rgba(59,130,246,.35);            /* azul */
  box-shadow:
    0 16px 35px rgba(59,130,246,.12),
    inset 0 1px 0 rgba(255,255,255,.03);
}
.services__item.service:focus-within {
  outline: 2px solid rgba(59,130,246,.55);
  outline-offset: 3px;
  border-color: transparent;
}

/* ----- BADGE (esquina superior) ----- */
.service__badge {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(59,130,246,.15);
  color: #9cc3ff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2px;
  pointer-events: none;
}
.service__badge--green {
  background: rgba(34,197,94,.16);
  color: #b6f3c9;
}

/* ----- Ícono / imagen ----- */
.service__icon {
  margin: .25rem auto .75rem auto;
  width: clamp(72px, 12vw, 96px);
  height: auto;
  opacity: .95;
  display: block;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.22));
}

/* ----- Título y descripción ----- */
.service__title {
  margin: .25rem 0 .35rem;
  font-size: clamp(1rem, .9rem + .6vw, 1.25rem);
  font-weight: 700;
  letter-spacing: .1px;
}
.service__description {
  margin: .5rem auto 1rem;
  max-width: 58ch;
  line-height: 1.65;
  font-size: .98rem;
  opacity: .95;
}

/* ----- Lista con “checks” ----- */
.service__list {
  margin: 0 auto 1rem;
  padding: 0;
  list-style: none;
  max-width: 58ch;
  text-align: left;
}
.service__list li {
  position: relative;
  padding-left: 1.45rem;
  margin: .4rem 0;
  opacity: .95;
}
.service__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .45rem;
  width: .8rem; height: .8rem;
  border-radius: 50%;
  background: currentColor;
  opacity: .28;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.35);
}

/* ----- Línea meta (garantía, SLA, cobertura) ----- */
.service__meta {
  font-size: .86rem;
  opacity: .8;
  margin: .25rem auto 1.1rem;
  max-width: 58ch;
}

/* ----- Botonera (doble CTA) ----- */
.service__cta {
  display: flex;
  gap: .65rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Botón base */
.service__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #1d4ed8;                           /* azul intenso */
  color: #fff;
  font-weight: 700;
  letter-spacing: .2px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  box-shadow: 0 8px 18px rgba(29,78,216,.25);
}
.service__btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(37,99,235,.28);
}
.service__btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(37,99,235,.22);
}
.service__btn:focus-visible {
  outline: 2px solid rgba(37,99,235,.65);
  outline-offset: 3px;
}

/* Botón “ghost” (secundario) */
.service__btn--ghost {
  background: transparent;
  color: #3b82f6;
  border-color: rgba(59,130,246,.42);
  box-shadow: none;
}
.service__btn--ghost:hover {
  background: rgba(59,130,246,.08);
  transform: translateY(-1px);
}

/* ----- Accesibilidad / preferencias de movimiento ----- */
@media (prefers-reduced-motion: reduce) {
  .services__item.service,
  .service__btn,
  .service__btn--ghost {
    transition: none !important;
    transform: none !important;
  }
}

/* ----- Ajustes móviles ----- */
@media (max-width: 768px) {
  .services { padding: 2.25rem 1rem; }
  .services__title { margin-bottom: 1.5rem; }
  .services__item.service { padding: 1.5rem 1rem 1.25rem; }
  .service__badge { top: 10px; left: 10px; }
  .service__description,
  .service__list,
  .service__meta { max-width: 62ch; }
}

/* ===========================
   FIN SERVICIOS
   =========================== */


/* ------------------ PRODUCTS ------------------ */
.products__title,
.services__title {
  display: flex;
  align-items: center;
}

.services__title::before,
.products__title::before {
  content: "●";
  color: #ffffff;
  font-size: 1.5rem;
  margin-right: 10px;
}

.products__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.products__item.product {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-bg-secondary);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.product:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}
.product img {
  width: 60%;
  max-width: 150px;
  margin-bottom: 15px;
  transition: transform 0.3s;
}
.product:hover img {
  transform: scale(1.1);
}
.product__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}

/* ------------------ PROJECTS ------------------ */
.projects {
  background: var(--color-bg-tertiary);
}
.projects__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.projects__item {
  display: flex;
  background: var(--color-bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  padding-left: 4px; /* barra lateral */
}
.projects__item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #0d6efd 0%, #0069d9 100%);
}
.projects__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.projects__image-placeholder {
  flex: 0 0 200px;
  height: 160px;
  background: #cccccc;
  overflow: hidden;
}
.projects__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  flex: 1;
}
.projects__subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}
.projects__description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-gray);
  margin: 0 0 1rem;
}

/* ---------- Botón dentro de la project card (compacto) ---------- */
.project__button{
  margin-top:auto;                 /* ancla al fondo de la tarjeta */
  align-self:flex-start;

  display:inline-block;
  padding:10px 26px;
  font:600 .9rem var(--font-body);
  color:var(--color-text);
  background:var(--color-primary);
  border-radius:8px;
  text-decoration:none;

  transition:.25s background,.25s box-shadow;
  box-shadow:0 4px 15px rgba(0,123,255,.3);        /* uses primary in RGBA */
}

.project__button:hover{
  background:var(--color-primary-hover);
  box-shadow:0 3px 8px rgba(0,123,255,.35);
}

.project__button:focus{
  outline:0;
  box-shadow:0 0 0 3px rgba(0,123,255,.45);        /* halo accesible */
}

.project__button:active{
  transform:translateY(1px);
  box-shadow:0 2px 6px rgba(0,123,255,.25);
}


/* ------------------ HISTORY ------------------ */
.history {
  position: relative;
  padding: 60px 5%;
  color: var(--color-text);
  text-align: center;
}
.history__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.history__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
}
.history__text-container {
  max-width: 700px;
  margin: 30px auto 0;
  text-align: left;
  color: var(--color-gray);
}

/* ------------------ MISSION & VISION ------------------ */
.mission-vision {
  display: flex;
  gap: 40px;
  padding: 70px 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.mission,
.vision {
  flex: 1;
  width: 90%;
  margin: auto;
}

.mission__title,
.vision__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.mission__text,
.vision__text {
  width: 90%;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray);
  margin: 0 auto;
}

/* ------------------ CONTACT ------------------ */
.contact {
  text-align: center;
  background: var(--color-bg-tertiary);
}

.contact__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.contact__form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-bg-secondary);
  padding: 40px;
  border-radius: 10px;
  display: grid;
  gap: 20px;
  text-align: left;
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  background: #2a2a2a;
  color: var(--color-text);
  font-size: 1rem;
}
.contact__textarea {
  min-height: 100px;
  resize: vertical;
}

.contact__submit {
  background: var(--color-primary);
  padding: 15px;
  color: var(--color-text);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.2rem;
  transition: background 0.3s;
}
.contact__submit:hover {
  background: var(--color-primary-hover);
}

/* ------------------ FOOTER ------------------ */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 2%;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-footer-border);
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__info p {
  font-size: 0.7rem;
  color: var(--color-gray);
}

.footer__extra {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
  gap: 5px;
}
.footer__text {
  font-size: 0.8rem;
  color: var(--color-gray);
}
/* ==== Social icons ==== */
.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.7rem;           /* mantiene tu escala actual */
  color: var(--color-gray);
}

.social-link {
  --size: 32px;                /* cambia aquí si los quieres más grandes */
  width: var(--size);
  height: var(--size);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-bg-primary, #222);
  color: var(--color-gray);
  text-decoration: none;
  transition: background .25s ease, transform .2s ease, color .25s ease;
  font-size: 0.95rem;          /* tamaño del ícono */
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  color: #fff;
}

/* Colores oficiales en hover */
.social-link.facebook:hover   { background:#1877F2; }             /* FB blue */
.social-link.instagram:hover  {                                     /* IG gradiente */
  background: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-link.linkedin:hover   { background:#0A66C2; }             /* LinkedIn blue */

/* ============================================================
   MEDIA QUERIES
   ============================================================ */
/* ========= MODO MÓVIL (≤480 px) ========= */
@media (max-width:480px){
  /* sobre-escribimos las variables solo dentro de este breakpoint */
  :root{
    --fab-size:48px;   /* antes 60 px */
    --fab-gap :10px;   /* un poco menos de espacio */
  }

  /* los iconos dentro del FAB se hacen más pequeños */
  .fab{font-size:.9rem;}  /* antes 1.3 rem */
}

/* ---------- MOBILE (≤768px) ---------- */
@media (max-width: 768px) {
  .nav__list {
    display: none;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 70px;
    right: 5%;
    background: var(--color-black);
    padding: 20px;
    border-radius: 8px;
    z-index: 999;
  }
  .nav__logo-img {
    width: 30%;
    height: auto;
  }
  .nav__toggle {
    display: block;
  }
  .nav--open .nav__list {
    display: flex;
    margin-top: 2rem;
  }

  .hero {
    padding: 60px 5%;
  }
  .services,
  .products,
  .projects,
  .history,
  .mission-vision,
  .contact {
    padding: 60px 5%;
  }

  .services__grid,
  .products__grid {
    grid-template-columns: 1fr;
  }

  .projects__item {
    flex-direction: column;
    text-align: center;
  }
  .mission-vision {
    flex-direction: column;
  }
  .footer {
    flex-direction: column;
    text-align: center;
  }
  .footer__extra {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

/* ---------- TABLET (769px‒1024px) ---------- */
@media (min-width: 768px) and (max-width: 1024px) {
  .nav__logo-img {
    width: 20%;
  }
  .services__grid,
  .products__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .mission-vision {
    flex-direction: row;
  }
}

/* ---------- DESKTOP (≥1024px) ---------- */
@media (min-width: 1024px) {
  .whatsapp {
    bottom: 80px;
  }

  .header__nav,
  .services__grid,
  .products__grid,
  .projects__list,
  .mission-vision {
    max-width: 1400px;
    margin: 0 auto;
  }

  .nav__logo {
    justify-content: space-between;
    margin-left: 1rem;
  }
  .nav__logo-img {
    width: 30%;
  }

  .contact__submit {
    padding: 10px;
  }
}

/* ---------- ULTRA DESKTOP (≥1440px) ---------- */
@media (min-width: 1440px) {
  .header__nav,
  .services__grid,
  .products__grid,
  .projects__list,
  .mission-vision {
    max-width: 1400px;
    margin: 0 auto;
  }

  .nav__logo {
    justify-content: space-between;
    margin-left: 1rem;
  }
  .nav__logo-img {
    width: 20%;
  }
}
