/* =========================================================
   FORAMAQ INDUSTRIES
   Estilos principales
   ========================================================= */

:root {
  --orange: #ff5a00;
  --orange-dark: #e64f00;
  --black: #090d10;
  --graphite: #11171b;
  --graphite-light: #192126;
  --white: #ffffff;
  --light: #f5f6f7;
  --gray: #aeb5ba;
  --text: #15191c;

  --container: 1400px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}



/* =========================================================
   HEADER
   ========================================================= */

.header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e9e9e9;
}

.header-inner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

/* Logo temporal.
   Luego reemplazaremos esto por el logo real de FORAMAQ. */

.brand {
  display: flex;
  align-items: center;
  min-width: 270px;
}

.brand-logo {
  display: block;
  width: 225px;
  height: auto;
  max-height: 68px;
  object-fit: contain;
}
/* Navegación */

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.nav a {
  position: relative;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  padding: 31px 0;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--orange);
}

.nav a.active {
  color: var(--orange);
}

.nav a.active::after {
  content: "";
  position: absolute;
  height: 3px;
  left: 0;
  right: 0;
  bottom: 20px;
  background: var(--orange);
}

/* WhatsApp */

.btn-whatsapp {
  background: var(--orange);
  color: white;
  font-weight: 800;
  padding: 14px 22px;
  border-radius: 5px;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* Botón móvil */

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 510px;

  background:
    linear-gradient(
      90deg,
      rgba(5, 8, 10, 0.98) 0%,
      rgba(5, 8, 10, 0.90) 30%,
      rgba(5, 8, 10, 0.65) 50%,
      rgba(5, 8, 10, 0.25) 72%,
      rgba(5, 8, 10, 0.05) 100%
    ),
    url("img/hero-foramaq.png");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.015),
    0 0 0 160px rgba(255, 255, 255, 0.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(3, 6, 8, 0.98) 0%,
    rgba(3, 6, 8, 0.88) 42%,
    rgba(3, 6, 8, 0.35) 75%,
    rgba(3, 6, 8, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 510px;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 700px;
  padding: 55px 0;
}

.eyebrow {
  color: var(--orange);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.hero h1 {
  color: white;
  font-size: clamp(42px, 4.3vw, 68px);
  line-height: 1.06;
  letter-spacing: -2px;
  max-width: 760px;
}

.hero-description {
  color: #e1e4e6;
  max-width: 650px;
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 4px;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: white;
  border: 2px solid var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-outline {
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn-outline:hover {
  background: white;
  color: #111;
}

/* =========================================================
   HERO - PÁGINAS INTERNAS
   ========================================================= */

.page-hero {
  position: relative;
  min-height: 360px;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      90deg,
      rgba(5, 8, 10, 0.98) 0%,
      rgba(5, 8, 10, 0.88) 45%,
      rgba(5, 8, 10, 0.55) 100%
    ),
    url("img/hero-foramaq.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 180px;
  height: 5px;

  background: var(--orange);
}

.page-hero-content {
  position: relative;
  z-index: 2;

  padding: 70px 0;
  max-width: 760px;
}

.page-hero .eyebrow {
  margin: 0 0 13px;

  color: var(--orange);

  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
}

.page-hero h1 {
  margin: 0 0 18px;

  color: #ffffff;

  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;

  line-height: 1.05;
  letter-spacing: -1.5px;
}

.page-hero-content > p:last-child {
  margin: 0;

  max-width: 620px;

  color: #d2d5d7;

  font-size: 17px;
  line-height: 1.65;
}
/* =========================================================
   NOSOTROS - PRESENTACIÓN
   ========================================================= */

.about-intro {
  padding: 80px 0;
  background: #ffffff;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
}

.about-intro-content {
  max-width: 720px;
}

.about-intro-content .eyebrow {
  margin-bottom: 10px;
}

.about-intro-content h2 {
  margin: 0 0 22px;

  color: #111518;

  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;

  line-height: 1.08;
  letter-spacing: -1.3px;
}

.about-intro-content p {
  margin: 0 0 18px;

  color: #5b6267;

  font-size: 16px;
  line-height: 1.75;
}


/* PANEL VISUAL */

.about-intro-visual {
  position: relative;

  min-height: 360px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 45px;

  background:
    linear-gradient(
      145deg,
      #12181c 0%,
      #090d10 100%
    );

  border-left: 5px solid var(--orange);

  overflow: hidden;

  box-shadow:
    0 18px 45px rgba(0,0,0,.16);
}

.about-intro-visual::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  right: -80px;
  top: -80px;

  border: 1px solid rgba(255,90,0,.22);
  transform: rotate(45deg);
}

.about-intro-visual::after {
  content: "";

  position: absolute;

  width: 170px;
  height: 170px;

  right: -30px;
  bottom: -80px;

  background: rgba(255,90,0,.06);

  transform: rotate(45deg);
}

.about-intro-visual span {
  position: relative;
  z-index: 2;

  color: var(--orange);

  font-size: 14px;
  font-weight: 900;

  letter-spacing: 5px;

  margin-bottom: 22px;
}

.about-intro-visual strong {
  position: relative;
  z-index: 2;

  color: #ffffff;

  font-size: clamp(31px, 3vw, 45px);
  font-weight: 900;

  line-height: 1.12;
  letter-spacing: 1px;
}
/* =========================================================
   FORTALEZAS FORAMAQ
   ========================================================= */

.strengths {
  position: relative;
  background: linear-gradient(
    180deg,
    #11171b 0%,
    #090d10 100%
  );
  color: white;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strength-item {
  position: relative;
  min-height: 125px;

  display: flex;
  align-items: center;

  gap: 20px;
  padding: 24px 28px;
}

.strength-item:not(:last-child)::after {
  content: "";
  position: absolute;

  right: 0;
  top: 26px;
  bottom: 26px;

  width: 1px;
  background: rgba(255,255,255,.14);
}

.strength-icon {
  flex-shrink: 0;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--orange);
  font-size: 42px;
  line-height: 1;
}

.strength-item h3 {
  margin: 0 0 7px;

  color: #f5f5f5;

  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.strength-item p {
  margin: 0;

  color: #b9bec1;

  font-size: 13px;
  line-height: 1.55;
}

.strengths-bottom {
  margin-top: 0;
}

.premium-slogan {
  min-height: 72px;
  border-top: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(
      90deg,
      rgba(255,90,0,.02),
      rgba(255,255,255,.015),
      rgba(255,90,0,.02)
    );

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.premium-slogan span {
  width: 105px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--orange)
  );
}

.premium-slogan span:last-child {
  background: linear-gradient(
    90deg,
    var(--orange),
    transparent
  );
}

.premium-slogan strong,
.premium-slogan em {
  font-size: 16px;
  letter-spacing: 4px;
  font-style: italic;
  white-space: nowrap;
}

.premium-slogan strong {
  color: var(--orange);
}

.premium-slogan em {
  color: #dadada;
}
/* =========================================================
   SERVICIOS
   ========================================================= */

.services {
  padding: 62px 0 70px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.98),
      rgba(247,248,249,.98)
    );
}


/* TÍTULO DE LA SECCIÓN */

.section-heading {
  text-align: center;
  margin-bottom: 42px;
}

.section-heading .eyebrow {
  margin-bottom: 7px;

  color: var(--orange);

  font-size: 14px;
  font-weight: 800;
  letter-spacing: .5px;
}

.section-heading h2 {
  margin: 0;

  color: #101417;

  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;

  line-height: 1.2;
  letter-spacing: -1px;
}

.section-heading h2::after {
  content: "";

  display: block;

  width: 65px;
  height: 3px;

  margin: 15px auto 0;

  background: var(--orange);
}


/* GRID DE SERVICIOS */

.services-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 22px;
}


/* TARJETAS */

.service-card {
  position: relative;

  min-height: 270px;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 32px 24px;

  text-align: center;

  background: #ffffff;

  border: 1px solid #e8ebed;
  border-radius: 6px;

  box-shadow:
    0 8px 25px rgba(0,0,0,.06);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}


/* EFECTO AL PASAR EL MOUSE */

.service-card:hover {
  transform: translateY(-6px);

  border-color: rgba(255,90,0,.30);

  box-shadow:
    0 15px 35px rgba(0,0,0,.11);
}


/* ICONOS */

.service-icon {
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  color: var(--orange);

  font-size: 48px;
  line-height: 1;
}


/* TÍTULO DE CADA SERVICIO */

.service-card h3 {
  margin: 0 0 12px;

  color: #111518;

  font-size: 17px;
  font-weight: 800;

  line-height: 1.3;
}


/* DESCRIPCIÓN */

.service-card p {
  margin: 0;

  color: #62686d;

  font-size: 14px;

  line-height: 1.65;
}

/* =========================================================
   HOME - SOBRE FORAMAQ
   ========================================================= */

.home-about {
  padding: 80px 0;
  background: #f5f6f7;
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.home-about-content {
  max-width: 720px;
}

.home-about-eyebrow {
  display: inline-block;
  margin-bottom: 12px;

  color: var(--orange);

  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.home-about-content h2 {
  margin: 0 0 22px;

  color: #111518;

  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;

  line-height: 1.08;
  letter-spacing: -1.3px;
}

.home-about-content h2 span {
  color: var(--orange);
}

.home-about-content > p {
  margin: 0;

  color: #596066;

  font-size: 16px;
  line-height: 1.75;

  max-width: 680px;
}

.home-about-actions {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-top: 30px;
}

.home-about-whatsapp {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  padding: 0 24px;

  color: #111518;

  font-size: 14px;
  font-weight: 800;

  border: 2px solid #cfd4d7;
  border-radius: 4px;

  transition: .2s ease;
}

.home-about-whatsapp:hover {
  color: var(--orange);
  border-color: var(--orange);
}


/* PANEL VISUAL */

.home-about-visual {
  position: relative;

  min-height: 380px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 48px;

  color: white;

  background:
    linear-gradient(
      145deg,
      #12181c 0%,
      #080c0f 100%
    );

  border-left: 5px solid var(--orange);

  overflow: hidden;

  box-shadow:
    0 20px 45px rgba(0,0,0,.18);
}

.home-about-visual::before {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  right: -100px;
  top: -100px;

  border: 1px solid rgba(255,90,0,.25);

  transform: rotate(45deg);
}

.home-about-visual::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  right: -40px;
  bottom: -85px;

  background: rgba(255,90,0,.06);

  transform: rotate(45deg);
}

.home-about-line {
  position: relative;
  z-index: 2;

  width: 65px;
  height: 3px;

  margin-bottom: 22px;

  background: var(--orange);
}

.home-about-visual > span {
  position: relative;
  z-index: 2;

  margin-bottom: 18px;

  color: var(--orange);

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 4px;
}

.home-about-visual strong {
  position: relative;
  z-index: 2;

  color: #ffffff;

  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 900;

  line-height: 1.08;
  letter-spacing: .5px;
}

.home-about-visual strong em {
  color: var(--orange);
  font-style: normal;
}

.home-about-visual > p {
  position: relative;
  z-index: 2;

  margin: 24px 0 0;

  color: #aeb4b9;

  font-size: 13px;
  letter-spacing: 1.5px;
}

/* =========================================================
   NOSOTROS - MISIÓN Y VISIÓN
   ========================================================= */

.about-purpose {
  padding: 90px 0;
  background: #f5f6f7;
}

.about-purpose-heading {
  max-width: 780px;
  margin-bottom: 45px;
}

.about-purpose-heading > span {
  display: inline-block;
  margin-bottom: 12px;

  color: var(--orange);

  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.about-purpose-heading h2 {
  margin: 0 0 20px;

  color: #111518;

  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;

  line-height: 1.08;
  letter-spacing: -1.3px;
}

.about-purpose-heading h2 strong {
  color: var(--orange);
  font-weight: 900;
}

.about-purpose-heading p {
  max-width: 700px;
  margin: 0;

  color: #62686d;

  font-size: 16px;
  line-height: 1.75;
}


/* TARJETAS MISIÓN Y VISIÓN */

.about-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.purpose-card {
  position: relative;
  min-height: 390px;

  padding: 42px;

  background: #ffffff;
  border-top: 4px solid var(--orange);

  box-shadow: 0 15px 35px rgba(0,0,0,.08);

  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.purpose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0,0,0,.14);

}

.purpose-card-dark {
  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #12181c 0%,
      #080c0f 100%
    );
}

.purpose-number {
  position: absolute;
  right: 28px;
  top: 18px;

  color: rgba(255,90,0,.10);

  font-size: 90px;
  font-weight: 900;
  line-height: 1;
}

.purpose-card:not(.purpose-card-dark) .purpose-number {
  color: rgba(17,21,24,.06);
}

.purpose-icon {
  position: relative;
  z-index: 2;

  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 28px;

  color: var(--orange);

  font-size: 34px;

  border: 1px solid rgba(255,90,0,.35);
}

.purpose-label {
  position: relative;
  z-index: 2;

  display: block;
  margin-bottom: 12px;

  color: var(--orange);

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}

.purpose-card h3 {
  position: relative;
  z-index: 2;

  max-width: 500px;
  margin: 0 0 18px;

  color: #111518;

  font-size: 27px;
  font-weight: 900;

  line-height: 1.2;
}

.purpose-card-dark h3 {
  color: #ffffff;
}

.purpose-card p {
  position: relative;
  z-index: 2;

  max-width: 520px;
  margin: 0;

  color: #62686d;

  font-size: 15px;
  line-height: 1.75;
}

.purpose-card-dark p {
  color: #c1c7cb;
}

/* =========================================================
   NOSOTROS - VALORES FORAMAQ
   ========================================================= */

.about-values {
  padding: 90px 0;
  background: #ffffff;
}

.about-values-heading {
  max-width: 760px;
  margin-bottom: 45px;
}

.about-values-heading > span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.about-values-heading h2 {
  margin: 0 0 20px;
  color: #111518;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.3px;
}

.about-values-heading h2 strong {
  color: var(--orange);
  font-weight: 900;
}

.about-values-heading p {
  max-width: 700px;
  margin: 0;
  color: #62686d;
  font-size: 16px;
  line-height: 1.75;
}

/* TARJETAS DE VALORES */

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  position: relative;
  min-height: 300px;
  padding: 30px 26px;
  background: #f7f8f9;
  border-top: 3px solid transparent;

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.value-card:hover {
  transform: translateY(-7px);
  border-top-color: var(--orange);
  box-shadow: 0 18px 35px rgba(0,0,0,.10);
}

.value-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: var(--orange);
  font-size: 34px;
}

.value-card > span {
  position: absolute;
  right: 22px;
  top: 20px;
  color: #d7dbde;
  font-size: 34px;
  font-weight: 900;
}

.value-card h3 {
  margin: 0 0 14px;
  color: #111518;
  font-size: 20px;
  font-weight: 900;
}

.value-card p {
  margin: 0;
  color: #62686d;
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   CONTACTO FORAMAQ
   ========================================================= */

/* HERO CONTACTO */

.contact-page-hero {
  position: relative;
  min-height: 420px;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      90deg,
      rgba(8, 12, 15, .98) 0%,
      rgba(8, 12, 15, .94) 48%,
      rgba(17, 24, 28, .90) 100%
    );

  color: #ffffff;
  overflow: hidden;
}

.contact-page-hero::before {
  content: "";
  position: absolute;

  right: -100px;
  top: -170px;

  width: 500px;
  height: 500px;

  border: 1px solid rgba(255, 90, 0, .22);

  transform: rotate(45deg);
}

.contact-page-hero::after {
  content: "";
  position: absolute;

  right: 8%;
  bottom: -190px;

  width: 340px;
  height: 340px;

  background: rgba(255, 90, 0, .05);

  transform: rotate(45deg);
}

.contact-page-hero .page-hero-content {
  position: relative;
  z-index: 2;

  max-width: 850px;
}

.contact-page-hero .eyebrow {
  margin: 0 0 18px;

  color: var(--orange);

  font-size: 13px;
  font-weight: 900;

  letter-spacing: 3px;
}

.contact-page-hero h1 {
  max-width: 820px;

  margin: 0 0 22px;

  color: #ffffff;

  font-size: clamp(44px, 5vw, 70px);
  font-weight: 900;

  line-height: 1.02;
  letter-spacing: -1.8px;
}

.contact-page-hero .page-hero-content > p:last-child {
  max-width: 690px;

  margin: 0;

  color: #c1c7cb;

  font-size: 17px;
  line-height: 1.75;
}


/* =========================================================
   CONTACTO PRINCIPAL
   ========================================================= */

.contact-section {
  padding: 100px 0;

  background: #ffffff;
}

.contact-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(380px, .85fr);

  gap: 80px;

  align-items: center;
}


/* INFORMACIÓN */

.contact-info {
  max-width: 720px;
}

.contact-eyebrow {
  display: inline-block;

  margin-bottom: 14px;

  color: var(--orange);

  font-size: 13px;
  font-weight: 900;

  letter-spacing: 2.5px;
}

.contact-info h2 {
  margin: 0 0 22px;

  color: #111518;

  font-size: clamp(38px, 4vw, 56px);
  font-weight: 900;

  line-height: 1.08;
  letter-spacing: -1.3px;
}

.contact-info h2 strong {
  display: block;

  color: var(--orange);

  font-weight: 900;
}

.contact-intro {
  max-width: 650px;

  margin: 0 0 42px;

  color: #62686d;

  font-size: 16px;
  line-height: 1.75;
}


/* DATOS DE CONTACTO */

.contact-items {
  display: grid;

  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;

  gap: 22px;

  min-height: 105px;

  padding: 20px 24px;

  color: inherit;

  text-decoration: none;

  background: #f7f8f9;

  border-left: 3px solid transparent;

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease,
    background .3s ease;
}

.contact-item:hover {
  transform: translateX(7px);

  background: #ffffff;

  border-left-color: var(--orange);

  box-shadow: 0 14px 32px rgba(0, 0, 0, .08);
}

.contact-item-icon {
  flex: 0 0 58px;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--orange);

  font-size: 28px;

  border: 1px solid rgba(255, 90, 0, .30);
}

.contact-item > div:last-child {
  display: flex;
  flex-direction: column;

  min-width: 0;
}

.contact-item span {
  margin-bottom: 4px;

  color: #7b8084;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 1.8px;

  text-transform: uppercase;
}

.contact-item strong {
  color: #111518;

  font-size: 18px;
  font-weight: 900;

  line-height: 1.3;
}

.contact-item small {
  margin-top: 4px;

  color: #7b8084;

  font-size: 12px;
}


/* =========================================================
   PANEL OSCURO
   ========================================================= */

.contact-panel {
  position: relative;

  min-height: 510px;

  padding: 58px 50px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #11181c 0%,
      #080c0f 100%
    );

  border-left: 4px solid var(--orange);

  box-shadow: 0 25px 55px rgba(0, 0, 0, .18);

  overflow: hidden;
}

.contact-panel::before {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  right: -145px;
  top: -145px;

  border: 1px solid rgba(255, 90, 0, .25);

  transform: rotate(45deg);
}

.contact-panel::after {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  right: -120px;
  bottom: -120px;

  background: rgba(255, 90, 0, .06);

  transform: rotate(45deg);
}

.contact-panel > * {
  position: relative;
  z-index: 2;
}

.contact-panel > span {
  margin-bottom: 20px;

  color: var(--orange);

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 3px;
}

.contact-panel h3 {
  max-width: 430px;

  margin: 0 0 22px;

  color: #ffffff;

  font-size: clamp(32px, 3vw, 44px);
  font-weight: 900;

  line-height: 1.08;
  letter-spacing: -.8px;
}

.contact-panel p {
  max-width: 450px;

  margin: 0 0 32px;

  color: #c1c7cb;

  font-size: 15px;
  line-height: 1.75;
}


/* BOTÓN PRINCIPAL WHATSAPP */

.contact-main-button {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 16px 24px;

  color: #ffffff;

  background: var(--orange);

  text-decoration: none;

  font-size: 14px;
  font-weight: 900;

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.contact-main-button:hover {
  transform: translateY(-3px);

  box-shadow: 0 12px 28px rgba(255, 90, 0, .28);
}

.contact-main-button i {
  font-size: 19px;
}

.contact-panel-line {
  width: 100%;

  height: 1px;

  margin: 35px 0 20px;

  background: rgba(255, 255, 255, .12);
}

.contact-panel small {
  color: #92999e;

  font-size: 11px;

  letter-spacing: 1.5px;
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.contact-cta {
  position: relative;

  padding: 70px 0;

  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      #11181c 0%,
      #080c0f 100%
    );

  border-top: 1px solid rgba(255, 90, 0, .30);

  overflow: hidden;
}

.contact-cta::after {
  content: "";

  position: absolute;

  right: 8%;
  top: -170px;

  width: 300px;
  height: 300px;

  border: 1px solid rgba(255, 90, 0, .15);

  transform: rotate(45deg);
}

.contact-cta-inner {
  position: relative;
  z-index: 2;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 50px;
}

.contact-cta span {
  display: inline-block;

  margin-bottom: 10px;

  color: var(--orange);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 2.5px;
}

.contact-cta h2 {
  max-width: 680px;

  margin: 0 0 10px;

  color: #ffffff;

  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;

  line-height: 1.12;
}

.contact-cta p {
  margin: 0;

  color: #aeb4b9;

  font-size: 15px;
}

.contact-cta .btn {
  flex: 0 0 auto;
}

/* =========================================================
   FORMULARIO DE CONTACTO - FORAMAQ DARK
   ========================================================= */

.contact-form-panel {
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    145deg,
    #11181c 0%,
    #080c0f 100%
  );

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--orange);
  border-radius: 14px;

  padding: 40px;

  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

/* DETALLES GEOMÉTRICOS */

.contact-form-panel::before {
  content: "";
  position: absolute;

  width: 260px;
  height: 260px;

  right: -160px;
  top: -170px;

  border: 1px solid rgba(255, 90, 0, 0.22);

  transform: rotate(45deg);
  pointer-events: none;
}

.contact-form-panel::after {
  content: "";
  position: absolute;

  width: 220px;
  height: 220px;

  right: -150px;
  bottom: -150px;

  border: 1px solid rgba(255, 90, 0, 0.14);

  transform: rotate(45deg);
  pointer-events: none;
}

.contact-form-panel > * {
  position: relative;
  z-index: 2;
}

/* CABECERA */

.contact-form-eyebrow {
  display: inline-block;
  margin-bottom: 10px;

  color: var(--orange);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
}

.contact-form-panel h3 {
  margin: 0 0 12px;

  color: #ffffff;

  font-size: clamp(27px, 2.5vw, 36px);
  font-weight: 900;
  line-height: 1.12;
}

.contact-form-intro {
  margin: 0 0 28px;

  color: #c2c7ca;

  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   ESTADO DEL FORMULARIO
   ========================================================= */

.form-status {
  position: relative;
  display: none;

  margin: 0 0 22px;
  padding: 18px 52px 18px 20px;

  border-radius: 9px;

  font-size: 14px;
  line-height: 1.5;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.form-status.success {
  display: block;

  background: rgba(28, 160, 78, 0.22);
  border: 1px solid rgba(55, 210, 112, 0.65);

  color: #ffffff;
}

.form-status.error {
  display: block;

  background: rgba(200, 45, 45, 0.22);
  border: 1px solid rgba(255, 85, 85, 0.65);

  color: #ffffff;
}

/* CONTENIDO */

.form-status-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.form-status-content strong {
  display: block;

  font-size: 16px;
  font-weight: 900;
}

.form-status.success .form-status-content strong {
  color: #65e899;
}

.form-status.error .form-status-content strong {
  color: #ff8585;
}

.form-status-content span {
  color: #e3e8e5;

  font-size: 13px;
  font-weight: 500;
}

/* BOTÓN CERRAR */

.form-status-close {
  position: absolute;

  top: 10px;
  right: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: transparent;
  color: #ffffff;

  font-size: 24px;
  font-weight: 400;
  line-height: 1;

  cursor: pointer;

  opacity: 0.75;

  transition:
    opacity 0.2s ease,
    background 0.2s ease;
}

.form-status-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.10);
}
/* ESTRUCTURA DEL FORMULARIO */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #f3f3f3;

  font-size: 13px;
  font-weight: 700;
}

.required {
  color: var(--orange);
  font-weight: 900;
}

/* CAMPOS */

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 13px 14px;

  color: #ffffff;

  /* Más claro para distinguir la zona de escritura */
  background: rgba(255, 255, 255, 0.10);

  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;

  font: inherit;
  outline: none;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group select {
  color: #e3e6e8;
}

.form-group select option {
  color: #111518;
  background: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* TEXTO DE EJEMPLO */

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aeb4b8;
}

/* CAMPO SELECCIONADO */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.14);

  border-color: var(--orange);

  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.12);
}

/* PRIVACIDAD */

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  color: #b8bec2;

  font-size: 12px;
  line-height: 1.5;

  cursor: pointer;
}

.form-privacy input {
  margin-top: 2px;
  accent-color: var(--orange);
}

/* BOTÓN */

.contact-form-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  width: 100%;

  padding: 15px 20px;

  border: 0;
  border-radius: 7px;

  background: var(--orange);
  color: #ffffff;

  font-size: 14px;
  font-weight: 900;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.contact-form-button:hover {
  transform: translateY(-2px);

  box-shadow: 0 12px 28px rgba(255, 90, 0, 0.28);

  filter: brightness(1.05);
}

/* =========================================================
   FOOTER FORAMAQ
   ========================================================= */

.footer {
  background: #080c0f;
  color: #ffffff;
  border-top: 1px solid rgba(255, 90, 0, 0.35);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 55px;
  padding-top: 55px;
  padding-bottom: 45px;
}

.footer-brand {
  max-width: 340px;
}

.footer-logo {
  width: 210px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.footer-brand p {
  margin: 0;
  color: #aeb4b9;
  font-size: 14px;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-column a {
  color: #aeb4b9;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--orange);
}

.footer-column p {
  margin: 0;
  color: #aeb4b9;
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #06090b;
}

.footer-bottom .container {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  margin: 0;
  color: #747c82;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.3px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .nav {
    gap: 17px;
  }

  .nav a {
    font-size: 13px;
  }

  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-item:nth-child(2)::after {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* FOOTER */

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

}


/* =========================================================
   MÓVIL / TABLET PEQUEÑA
   ========================================================= */

@media (max-width: 850px) {

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-intro-visual {
    min-height: 300px;
  }

  .header-inner {
    height: 76px;
  }

  /* LOGO COMPLETO PNG */

  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 190px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
  }

  /* MENÚ MÓVIL */

  .btn-whatsapp {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    top: 76px;
    left: 0;
    right: 0;

    padding: 12px 5%;
    background: white;
    border-top: 1px solid #eee;
    box-shadow: 0 12px 25px rgba(0,0,0,.12);
    z-index: 1000;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 13px 5px;
    border-bottom: 1px solid #eee;
  }

  .nav a.active::after {
    display: none;
  }

  /* HERO */

  .hero,
  .hero-content {
    min-height: 560px;
  }

  .hero {
    background-position: 70% center;
  }

  .hero-text {
    padding: 65px 0;
    max-width: 620px;
  }

  .hero h1 {
    font-size: clamp(39px, 9vw, 55px);
    letter-spacing: -1.5px;
  }

  .hero-description {
    font-size: 16px;
  }

  /* BLOQUE PREMIUM FORAMAQ */

  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-item {
    min-height: 110px;
  }

  .premium-item:nth-child(2)::after {
    display: none;
  }

  .premium-slogan {
    padding: 0 20px;
  }

  .premium-slogan span {
    width: 35px;
  }

  .premium-slogan strong,
  .premium-slogan em {
    font-size: 11px;
    letter-spacing: 2px;
  }

  /* SERVICIOS */

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* NOSOTROS - MISIÓN Y VISIÓN */

.about-purpose {
  padding: 70px 0;
}

.about-purpose-heading {
  margin-bottom: 35px;
}

.about-purpose-grid {
  grid-template-columns: 1fr;
  gap: 24px;
}

.purpose-card {
  min-height: auto;
  padding: 36px;
}

/* NOSOTROS - VALORES */

.about-values {
  padding: 70px 0;
}

.about-values-heading {
  margin-bottom: 35px;
}

.values-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-card {
  min-height: 260px;
}

/* CONTACTO - TABLET */

.contact-page-hero {
  min-height: 380px;
}

.contact-page-hero h1 {
  font-size: clamp(42px, 7vw, 58px);
}

.contact-section {
  padding: 70px 0;
}

.contact-grid {
  grid-template-columns: 1fr;
  gap: 45px;
}

.contact-info {
  max-width: 100%;
}

.contact-panel {
  min-height: 400px;
  padding: 45px 40px;
}

.contact-cta {
  padding: 55px 0;
}

.contact-cta-inner {
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.contact-cta .btn {
  width: auto;
}

  /* FOOTER */

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo {
    width: 190px;
  }
/* HOME - SOBRE FORAMAQ */

.home-about {
  padding: 65px 0;
}

.home-about-grid {
  grid-template-columns: 1fr;
  gap: 35px;
}

.home-about-content {
  max-width: 100%;
}

.home-about-visual {
  min-height: 320px;
}

.home-about-actions {
  flex-wrap: wrap;
}
}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 560px) {

  /* NOSOTROS */

  .about-intro {
    padding: 55px 0;
  }

  .about-intro-content h2 {
    font-size: 36px;
  }

  .about-intro-visual {
    min-height: 250px;
    padding: 32px 26px;
  }

  .about-intro-visual strong {
    font-size: 31px;
  }

  /* CONTENEDOR */

  .container {
    width: min(90%, var(--container));
  }

  /* HEADER */

  .header-inner {
    height: 70px;
  }

  .brand-logo {
    width: 155px;
    max-height: 52px;
  }

  .nav {
    top: 70px;
  }

  /* HERO */

  .hero,
  .hero-content {
    min-height: 590px;
  }

  .hero {
    background-position: 72% center;
  }

  .hero-text {
    padding: 55px 0;
  }

  .hero h1 {
    font-size: clamp(37px, 11vw, 48px);
    line-height: 1.06;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  /* FORTALEZAS EN CELULAR */

  .strengths-grid {
    grid-template-columns: 1fr;
  }

  .strength-item {
    min-height: auto;
    padding: 22px 10px;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }

  .strength-item::after {
    display: none !important;
  }

  .strength-icon {
    width: 55px;
    min-width: 55px;
    font-size: 38px;
  }

  .strength-item h3 {
    font-size: 16px;
  }

  .strength-item p {
    font-size: 13px;
    max-width: none;
  }

  /* BLOQUE PREMIUM */

  .premium-grid {
    grid-template-columns: 1fr;
  }

  .premium-item {
    justify-content: flex-start;
    min-height: 95px;
    padding: 18px 10px;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }

  .premium-item::after {
    display: none !important;
  }

  .premium-icon {
    width: 55px;
    height: 55px;
    font-size: 25px;
  }

  .premium-item h3 {
    font-size: 16px;
  }

  .premium-item p {
    font-size: 13px;
  }

  .premium-slogan {
    min-height: 75px;
    flex-wrap: wrap;
    gap: 6px;
    padding: 15px;
    text-align: center;
  }

  .premium-slogan span {
  display: block;
  width: 25px;
  height: 1px;
  flex-shrink: 0;
}

  .premium-slogan strong,
  .premium-slogan em {
    font-size: 11px;
    letter-spacing: 2px;
  }

  /* SERVICIOS */

  .services {
    padding: 50px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  /* HOME - SOBRE FORAMAQ */

  .home-about {
    padding: 50px 0;
  }

  .home-about-content h2 {
    font-size: 34px;
  }

  .home-about-content > p {
    font-size: 15px;
    line-height: 1.65;
  }

  .home-about-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-about-actions .btn,
  .home-about-whatsapp {
    width: 100%;
  }

  .home-about-visual {
    min-height: 280px;
    padding: 32px 26px;
  }

  .home-about-visual strong {
    font-size: 32px;
  }

  .home-about-visual > p {
    font-size: 11px;
    letter-spacing: 1px;
  }
/* NOSOTROS - MISIÓN Y VISIÓN */

.about-purpose {
  padding: 55px 0;
}

.about-purpose-heading {
  margin-bottom: 30px;
}

.about-purpose-heading > span {
  font-size: 11px;
  letter-spacing: 2px;
}

.about-purpose-heading h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.8px;
}

.about-purpose-heading p {
  font-size: 14px;
  line-height: 1.7;
}

.about-purpose-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

.purpose-card {
  min-height: auto;
  padding: 30px 24px;
}

.purpose-number {
  right: 18px;
  top: 15px;
  font-size: 70px;
}

.purpose-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  font-size: 28px;
}

.purpose-label {
  font-size: 11px;
  letter-spacing: 2.5px;
}

.purpose-card h3 {
  font-size: 23px;
  line-height: 1.2;
}

.purpose-card p {
  font-size: 14px;
  line-height: 1.7;
}

/* NOSOTROS - VALORES */

.about-values {
  padding: 55px 0;
}

.about-values-heading {
  margin-bottom: 30px;
}

.about-values-heading > span {
  font-size: 11px;
  letter-spacing: 2px;
}

.about-values-heading h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.8px;
}

.about-values-heading p {
  font-size: 14px;
  line-height: 1.7;
}

.values-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}

.value-card {
  min-height: auto;
  padding: 28px 24px;
}

.value-card:active {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
  border-top-color: var(--orange);
}

.value-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  font-size: 30px;
}

.value-card > span {
  right: 20px;
  top: 18px;
  font-size: 30px;
}

.value-card h3 {
  font-size: 20px;
}

.value-card p {
  font-size: 14px;
  line-height: 1.65;
}

/* CONTACTO - CELULAR */

.contact-page-hero {
  min-height: 330px;
}

.contact-page-hero .page-hero-content {
  padding: 55px 0;
}

.contact-page-hero h1 {
  font-size: 38px;
  line-height: 1.05;
}

.contact-page-hero .page-hero-content > p:last-child {
  font-size: 14px;
  line-height: 1.65;
}

.contact-section {
  padding: 55px 0;
}

.contact-grid {
  grid-template-columns: 1fr;
  gap: 35px;
}

.contact-info h2 {
  font-size: 34px;
}

.contact-intro {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-item {
  min-height: auto;
  padding: 18px;
  gap: 16px;
}

.contact-item-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  font-size: 24px;
}

.contact-item strong {
  font-size: 16px;
}

.contact-panel {
  min-height: 360px;
  padding: 34px 26px;
}

.contact-panel h3 {
  font-size: 32px;
}

.contact-panel p {
  font-size: 14px;
}

.contact-main-button {
  width: 100%;
}

.contact-cta {
  padding: 45px 0;
}

.contact-cta-inner {
  flex-direction: column;
  align-items: stretch;
  gap: 25px;
}

.contact-cta h2 {
  font-size: 30px;
}

.contact-cta .btn {
  width: 100%;
}

  /* FOOTER */

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 45px;
    padding-bottom: 38px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo {
    width: 180px;
    margin-bottom: 16px;
  }

  .footer-column {
    gap: 8px;
  }

  .footer-column h3 {
    margin-bottom: 6px;
  }

  .footer-bottom .container {
    min-height: 70px;
  }

  .footer-bottom p {
    font-size: 11px;
    line-height: 1.6;
  }

}