/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* =========================
   BASE
========================= */

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;

  background: #000;
  color: white;

  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1400px, 92%);
  margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.site-header {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  padding: 24px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* =========================
   LOGO
========================= */

.site-logo img {
  width: 119px;
}


/* =========================
   NAV
========================= */

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  color: white;

  font-size: 13px;
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: .08em;

  transition: .3s ease;
}

.main-nav a:hover {
  opacity: .7;
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;

  width: 100%;
  height: 100vh;

  overflow: hidden;
}


/* VIDEO O IMAGEN */

.hero-image {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center center;
}


/* OVERLAY */

.hero-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,.45);

  z-index: 1;
}


/* CONTENIDO */

.hero-content {
  position: absolute;

  inset: 0;

  z-index: 2;

  display: flex;
  flex-direction: column;

  align-items: flex-start;
  justify-content: center;

  text-align: left;

  width: min(1400px, 92%);
  margin: auto;
}

.hero-subtitle {
  display: block;

  font-size: 14px;

  letter-spacing: .18em;
  text-transform: uppercase;

  margin-bottom: 20px;

  color: rgba(255,255,255,.75);
}

.hero-content h1 {
  font-size: clamp(3rem, 7vw, 6rem);

  line-height: 1;

  max-width: 700px;

  letter-spacing: .02em;
}

.texto-amarillo{
  color: rgb(245, 174, 20);
}

/* =========================
   MENU TOGGLE
========================= */

.menu-toggle {
  display: none;

  width: 40px;
  height: 40px;

  background: none;
  border: 0;

  cursor: pointer;

  position: relative;
  z-index: 1100;
}

.menu-toggle span {
  display: block;

  width: 28px;
  height: 2px;

  background: white;

  margin: 6px auto;

  transition: .3s ease;
}


/* =========================
   MENU CLOSE
========================= */

.menu-close {
  display: none;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 1100px) {

  .menu-toggle {
    display: block;
  }

  .main-nav {

    position: fixed;

    top: 0;
    right: -100%;

    width: 100%;
    height: 100vh;

    background: rgba(0,0,0,.96);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 32px;

    transition: .4s ease;

    z-index: 1050;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav a {
    font-size: 1.5rem;
  }

  .menu-close {
    display: block;

    position: absolute;

    top: 32px;
    right: 32px;

    background: none;
    border: 0;

    color: white;

    font-size: 3rem;

    cursor: pointer;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

}


/* =========================
   NO SCROLL MENU
========================= */

body.menu-open {
  overflow: hidden;
}



/* =========================
   SERVICES
========================= */

.services-section {
  background: #fff;

  padding: 120px 0;
}

.section-heading {
  text-align: center;

  margin-bottom: 80px;
}

.section-heading h2 {
  color: #111;

  font-size: clamp(2.5rem, 5vw, 4.5rem);

  line-height: 1.1;

  font-weight: 700;
}

.section-heading h2 span {
  display: block;

  color: #dd9933;
}


/* GRID */

.services-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 32px;
}


/* CARD */

.service-card {
  background: #f3f3f3;

  padding: 48px 36px;

  transition: .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}


/* ICON */

.service-icon {
  width: 70px;
  height: 70px;

  margin-bottom: 32px;
}

.service-icon img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  filter:
    brightness(0)
    saturate(100%)
    invert(64%)
    sepia(38%)
    saturate(498%)
    hue-rotate(357deg)
    brightness(92%)
    contrast(88%);
}


/* TITLE */

.service-card h3 {
  color: #111;

  font-size: 1.5rem;

  line-height: 1.2;

  margin-bottom: 24px;
}


/* TEXT */

.service-card p {
  color: #555;

  line-height: 1.8;

  margin-bottom: 32px;
}


/* LINK */

.service-card a {
  color: #dd9933;

  text-transform: uppercase;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: .08em;
}


/* MOBILE */

@media (max-width: 1200px) {

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 700px) {

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-section {
    padding: 80px 0;
  }

}


/* =========================
   VIDEO BANNER
========================= */

.video-banner {
  position: relative;

  width: 100%;
  height: 250px;

  overflow: hidden;
}


/* VIDEO */

.video-wrapper {
  position: absolute;
  inset: 0;
}

.video-wrapper iframe {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 100vw;
  height: 56.25vw;

  min-width: 177.77vh;
  min-height: 100vh;

  transform: translate(-50%, -50%);

  pointer-events: none;
}


/* OVERLAY */

.video-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,.55);

  z-index: 1;
}


/* CONTENT */

.video-content {
  position: relative;

  z-index: 2;

  width: min(1200px, 92%);
  height: 100%;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.video-content p {
  color: white;

  font-size: clamp(1.3rem, 3vw, 2.2rem);

  line-height: 1.4;

  max-width: 1000px;

  font-weight: 500;
}


/* MOBILE */

@media (max-width: 768px) {

  .video-banner {
    height: 320px;
  }

  .video-content p {
    font-size: 1.2rem;
  }

}

/* =========================
   CONTACT
========================= */

.contact-section {
  background: #fff;

  padding: 120px 0;
}

.contact-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: stretch;
}


/* LEFT */

.section-label {
  display: block;

  color: #dd9933;

  font-size: 13px;

  letter-spacing: .15em;
  text-transform: uppercase;

  margin-bottom: 20px;
}

.contact-form-wrapper h2 {
  color: #111;

  font-size: clamp(2.5rem, 5vw, 4rem);

  line-height: 1.1;

  margin-bottom: 24px;
}

.contact-form-wrapper p {
  color: #555;

  margin-bottom: 48px;

  line-height: 1.8;
}


/* FORM */

.contact-form {
  display: flex;
  flex-direction: column;

  gap: 24px;
}

.form-group input,
.form-group textarea {
  width: 100%;

  border: 1px solid #ddd;

  padding: 18px 20px;

  font-size: 15px;

  background: #f8f8f8;

  color: #111;

  outline: none;

  transition: .3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #dd9933;

  background: #fff;
}

.form-group textarea {
  resize: vertical;
}


/* BUTTON */

.contact-form button {
  width: fit-content;

  border: 0;

  background: #111;

  color: white;

  padding: 18px 36px;

  cursor: pointer;

  text-transform: uppercase;

  letter-spacing: .08em;

  transition: .3s ease;
}

.contact-form button:hover {
  background: #dd9933;
}


.service-icon i {
  font-size: 42px;

  color: #dd9933; /* mostaza industrial */
}

/* MAP */

.contact-map {
  height: 100%;
  min-height: 650px;

  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;

  border: 0;

  filter: grayscale(100%);
}


/* MOBILE */

@media (max-width: 900px) {

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 48px;
  }

  .contact-map {
    min-height: 400px;
  }

}


/* =========================
   FOOTER
========================= */

.site-footer {
  background: #1b1b1b;

  padding-top: 100px;

  color: white;
  border-top: solid 2px #dd9933;
}


/* GRID */

.footer-grid {
  display: grid;

  grid-template-columns: 1.2fr 1fr 1fr;

  gap: 80px;

  padding-bottom: 80px;
}


/* LOGO */

.footer-logo {
  width: 220px;

  margin-bottom: 32px;
}

.footer-text {
  color: rgba(255,255,255,.7);

  line-height: 1.8;

  max-width: 400px;
}


/* TITLES */

.footer-column h3 {
  font-size: 1.2rem;

  margin-bottom: 28px;

  color: white;
}


/* LINKS */

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255,255,255,.7);

  transition: .3s ease;
}

.footer-links a:hover {
  color: #dd9933;
}


/* CONTACT */

.footer-contact li {
  color: rgba(255,255,255,.7);
}


/* BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);

  padding: 28px 0;

  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,.5);

  font-size: 14px;
}


/* MOBILE */

@media (max-width: 900px) {

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 48px;
  }

  .site-footer {
    padding-top: 80px;
  }

}