
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2933;
  line-height: 1.6;
  padding-top: 80px;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}


/* HEADER */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(28, 61, 107, 0.95);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img {
  display: block;
  width: 220px;
  height: auto;
}

.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #7ac143;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}


/* HERO */

.hero {
  min-height: 650px;
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.30),
      rgba(0, 0, 0, 0.30)
    ),
    url("../img/home/hero-home.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-secondary {
  background: transparent;
  border: 1px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #07162b;
}

/* BOTONES */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #7ac143;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  margin-right: 10px;
}

/* SECCIONES */
section {
  padding: 80px 0;
}

h2 {
  font-size: 32px;
  margin-bottom: 32px;
}

/* SERVICIOS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #ffffff;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
}

.card a {
  display: inline-block;
  margin-top: 16px;
  color: #7ac143;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}
.card-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
}






.card:hover {
  transform: translateY(-5px);
}

/* QUIENES SOMOS */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.grid-2 img {
  width: 100%;
  border-radius: 10px;
}

.grid-2 p {
  margin-bottom: 16px;
}

/* PROPUESTA DE VALOR */
.value-section {
  background: #f7f9fb;
  padding: 110px 0;
}

.value-section h2 {
  text-align: center;
  color: #07162b;
  margin-bottom: 64px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.value-item {
  text-align: center;
  padding: 36px 24px;
  transition: 0.3s;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  background: #ffffff;
}

.value-icon {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 28px;
  transition: 0.3s;
}

.value-item:hover .value-icon {
  filter: brightness(1.12);
}

.value-item h3 {
  font-size: 24px;
  font-weight: 600;
  color: #07162b;
  margin-bottom: 18px;
}

.value-line {
  width: 40px;
  height: 2px;
  background: #7ac143;
  margin: 0 auto 18px;
}

.value-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

/* CTA FINAL */
.final-cta {
  background: #1f3a5f;
  color: #ffffff;
  text-align: center;
  padding: 120px 0;
}

.final-cta-content {
  max-width: 780px;
  margin: auto;
}

.final-cta h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.final-cta p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.final-cta .btn:hover {
  background: #ffffff;
  color: #07162b;
}

/* FOOTER */
.footer {
  background: #07162b;
  color: #ffffff;
  padding: 48px 0;
  font-size: 14px;
}

.footer p {
  margin-bottom: 6px;
}



/* HERO SERVICIOS */
.services-hero {
  min-height: 560px;
  background-image:
    linear-gradient(
      rgba(0,0,0,0.28),
      rgba(0,0,0,0.28)
    ),
    url("../img/servicios/hero-servicios.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
}

.services-hero .hero-content {
  max-width: 650px;
}

.services-hero h1 {
  color: white;
  font-size: 52px;
  line-height: 1.1;
}

/* =========================
   INTRO SERVICIOS
========================= */

.services-intro {
  padding: 90px 0 30px;
}

.services-intro-content {
  max-width: 820px;
}

.services-intro p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #374151;
}

/* =========================
   SERVICIOS DETALLADOS
========================= */

.service-block {
  padding: 70px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-grid.reverse {
  direction: rtl;
}

.service-grid.reverse .service-text {
  direction: ltr;
}

.service-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.service-text h2 {
  font-size: 38px;
  color: #07162b;
  margin-bottom: 24px;
}

.service-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 20px;
}

/* LISTA TECNICA */

.engine-list {
  margin: 24px 0;
  padding-left: 20px;
}

.engine-list li {
  margin-bottom: 10px;
  color: #07162b;
  font-weight: 600;
}

/* =========================
   CIERRE TECNICO
========================= */

.tech-closing {
  background: #f5f5f5;
  padding: 110px 0;
}

.tech-closing-content {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.tech-closing h2 {
  margin-bottom: 28px;
}

.tech-closing p {
  font-size: 18px;
  line-height: 1.8;
  color: #374151;
}

/* =========================
   RESPONSIVE SERVICIOS
========================= */

@media (max-width: 768px) {

  .service-grid,
  .service-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 36px;
  }

  .service-text h2 {
    font-size: 30px;
  }

  .services-intro p,
  .service-text p,
  .tech-closing p {
    font-size: 16px;
  }

  .service-block {
    padding: 50px 0;
  }

  .tech-closing {
    padding: 80px 0;
  }
}
/* HERO CAPACIDADES */
.capacities-hero {
  min-height: 560px;
  background-image:
    linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.30)),
    url("../img/capacidades/hero-capacidades.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.capacities-hero .hero-content {
  max-width: 720px;
}

.capacities-hero h1 {
  font-size: 52px;
  line-height: 1.1;
  color: #ffffff;
}

/* HEADINGS GENERALES */
.section-heading {
  max-width: 850px;
  margin-bottom: 56px;
}

.section-heading p {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 18px;
}

/* MARCAS */
.brand-section {
  background: #f7f9fb;
  padding: 100px 0;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.brand-item {
  background: #ffffff;
  padding: 34px 28px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.brand-item:hover {
  transform: translateY(-4px);
}

.brand-item img {
  max-width: 150px;
  height: 56px;
  object-fit: contain;
  object-position: left;
  margin-bottom: 24px;
}

.brand-item h3 {
  color: #07162b;
  margin-bottom: 12px;
}

.brand-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}


/* ==================================================
   HABILITACIONES Y CERTIFICACIONES
================================================== */

.cert-section {
  padding: 100px 0;
  background: #ffffff;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  width: 100%;
  margin-top: 50px;
  align-items: stretch;
}

.cert-item {
  background: #ffffff;
  border-radius: 14px;
  border-top: 4px solid #7ac143;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
  padding: 30px 24px;
  text-align: center;
  transition: 0.3s;
  min-height: 520px;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.10);
}

.cert-item h3 {
  font-size: 32px;
  line-height: 1.1;
  color: #07162b;
  margin-bottom: 34px;
  font-weight: 700;
}

.cert-images {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
}

.flag-icon {
  width: 180px;
  height: 112px;
  object-fit: contain;
  display: block;
}

.authority-logo {
  width: 230px;
  height: 115px;
  object-fit: contain;
  display: block;
}

/* Argentina tiene dos logos */

.cert-item:nth-child(1) .cert-images {
  gap: 30px;
}

.cert-item:nth-child(1) .authority-logo {
  height: 95px;
}

.cert-item:nth-child(1) .authority-logo:last-child {
  width: 230px;
  height: 85px;
}
/* PILATUS */
.pilatus-section {
  padding: 100px 0;
  background: #ffffff;
}

.eyebrow {
  display: inline-block;
  color: #7ac143;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.highlight-box {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 4px solid #7ac143;
  background: #f7f9fb;
  color: #07162b;
  font-weight: 600;
}

/* RESPALDO */
.support-section {
  background: #f7f9fb;
  padding: 100px 0;
}

.support-section h2 {
  text-align: center;
  margin-bottom: 56px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.support-item {
  text-align: center;
  padding: 32px 24px;
}

.support-item img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 24px;
}

.support-item h3 {
  color: #07162b;
  font-size: 22px;
  margin-bottom: 14px;
}

.support-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}



/* ============================= */
/* PÁGINA INSTALACIONES */
/* ============================= */





/* SEPARACIÓN GENERAL */
.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* HERO */
.instalaciones-hero {
  width: 100%;
  min-height: 620px;
  background-image: url("../img/instalaciones/hero-instalaciones.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.instalaciones-hero__overlay {
  min-height: 620px;
  background: rgba(16, 36, 61, 0.55);
  display: flex;
  align-items: center;
}

.instalaciones-hero__content {
  color: var(--color-blanco);
  max-width: 760px;
}

.instalaciones-hero__content h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
}

.instalaciones-hero__content p {
  font-size: 22px;
  line-height: 1.5;
  max-width: 720px;
}

/* INTRODUCCIÓN */
.instalaciones-intro {
  background-color: var(--color-blanco);
}

.instalaciones-intro__content {
  max-width: 800px;
  text-align: center; 
}

.instalaciones-intro__content p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--color-texto);
  margin-bottom: 20px;
}

.instalaciones-intro__content p:last-child {
  margin-bottom: 0;
}

/* BLOQUES */
.instalaciones-bloque {
  background-color: var(--color-blanco);
}

.instalaciones-bloque--gris {
  background-color: var(--color-gris-claro);
}

.instalaciones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.instalaciones-imagen img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.instalaciones-texto h2 {
  font-size: 36px;
  line-height: 1.2;
  color: var(--color-azul);
  margin-bottom: 24px;
}

.instalaciones-texto p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-texto);
  margin-bottom: 18px;
}

.instalaciones-texto p:last-child {
  margin-bottom: 0;
}

/* CTA FINAL */
.instalaciones-cta {
  background-color: var(--color-azul);
  color: var(--color-blanco);
  padding: 90px 0;
  text-align: center;
}

.instalaciones-cta__content {
  max-width: 820px;
}

.instalaciones-cta h2 {
  font-size: 38px;
  line-height: 1.25;
  margin-bottom: 22px;
}

.instalaciones-cta p {
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 34px;
}


/* =========================================================
   CONTACTO
========================================================= */

/* =========================================================
   HERO CONTACTO
========================================================= */

.contacto-hero {
  position: relative;
  min-height: 560px;

  background:
    linear-gradient(
      rgba(7, 22, 43, 0.72),
      rgba(11, 31, 58, 0.72)
    ),
    url("../img/contacto/contacto-hero.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;

  padding: 140px 0 100px;
}

.contacto-hero .container {
  position: relative;
  z-index: 2;
}

.contacto-hero .section-label {
  display: inline-block;
  margin-bottom: 18px;

  color: var(--color-verde);

  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contacto-hero h1 {
  max-width: 760px;

  margin-bottom: 24px;

  color: var(--color-blanco);

  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.1;
}

.contacto-hero p {
  max-width: 760px;

  color: rgba(255,255,255,0.92);

  font-size: 1.15rem;
  line-height: 1.8;
}
.contacto-section {
  padding: 80px 0;
  background: var(--color-blanco);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.contacto-form-card,
.contacto-info-card {
  background: var(--color-blanco);
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: var(--radio);
  box-shadow: var(--sombra-suave);
}

.contacto-form-card {
  padding: 36px;
}

.contacto-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--color-azul);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(11, 31, 58, 0.22);
  border-radius: var(--radio);
  font-family: var(--fuente-principal);
  font-size: 1rem;
  color: var(--color-texto);
  background: var(--color-blanco);
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-verde);
  box-shadow: 0 0 0 3px rgba(122, 193, 67, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.contacto-form .btn-primary {
  display: inline-block;
  justify-self: start;
  padding: 14px 28px;
  background: var(--color-verde);
  color: var(--color-blanco);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contacto-form .btn-primary:hover {
  background: #689f1f;
  transform: translateY(-2px);
}




.instalaciones-cta .btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--color-verde);
  color: var(--color-blanco);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.instalaciones-cta .btn-primary:hover {
  background: #689f1f;
  transform: translateY(-2px);
}



.contacto-info {
  display: grid;
  gap: 22px;
}

.contacto-info-card {
  padding: 28px;
}

.contacto-info-card h2,
.contacto-info-card h3 {
  color: var(--color-azul);
  margin-bottom: 12px;
}

.contacto-info-card p {
  color: var(--color-texto);
  line-height: 1.65;
  margin-bottom: 18px;
}

.contacto-mail {
  margin-top: 18px;
  font-weight: 700;
  color: var(--color-azul);
}

.btn-whatsapp-inline,
.btn-map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radio);
  font-weight: 700;
  padding: 12px 20px;
  transition: 0.3s ease;
}

.btn-whatsapp-inline {
  background: #25D366;
  color: var(--color-blanco);
}

.btn-whatsapp-inline:hover {
  filter: brightness(0.92);
}

.btn-map {
  background: var(--color-azul);
  color: var(--color-blanco);
}

.btn-map:hover {
  background: var(--color-verde);
}

.form-success {
  display: none;
  margin-bottom: 24px;
  padding: 18px 20px;
  border-left: 5px solid var(--color-verde);
  border-radius: var(--radio);
  background: rgba(122, 193, 67, 0.10);
  color: var(--color-azul);
}

.form-success strong,
.form-success span {
  display: block;
}

.form-success span {
  margin-top: 4px;
}

.honeypot {
  display: none !important;
}

/* =========================================================
   WHATSAPP FLOTANTE
========================================================= */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  z-index: 999;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}