/* =========================================
   VARIABLES
========================================= */

:root {
  --orange: #ff6b00;
  --orange-dark: #df5d00;

  --black: #111111;
  --charcoal: #1a1a1a;
  --dark-gray: #242424;

  --gray: #6d6d6d;
  --light-gray: #eeeeec;

  --background: #f5f4f0;
  --white: #ffffff;

  --border: #d9d8d4;

  --shadow:
    0 20px 50px rgba(0, 0, 0, 0.12);
}


/* =========================================
   RESET
========================================= */

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


html {
  scroll-behavior: smooth;
}


body {
  font-family:
    Arial,
    Helvetica,
    sans-serif;

  background: var(--background);
  color: var(--black);

  line-height: 1.6;
}


img {
  width: 100%;
  display: block;
}


a {
  color: inherit;
  text-decoration: none;
}


button,
input,
textarea,
select {
  font: inherit;
}


button {
  border: 0;
}


.container {
  width: min(1180px, 90%);
  margin: auto;
}


.section {
  padding: 110px 0;
}


/* =========================================
   BOTONES
========================================= */

.btn {
  min-height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 24px;

  font-size: 0.9rem;
  font-weight: 800;

  border-radius: 4px;

  transition: 0.25s ease;

  cursor: pointer;
}


.btn-orange {
  background: var(--orange);
  color: white;
}


.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}


.btn-dark-outline {
  border: 1px solid rgba(255,255,255,.4);
  color: white;
}


.btn-dark-outline:hover {
  background: white;
  color: var(--black);
}


.btn-black {
  background: var(--black);
  color: white;
}


.btn-black:hover {
  background: var(--orange);
  transform: translateY(-2px);
}


/* =========================================
   HEADER
========================================= */

.header {
  position: absolute;

  width: 100%;

  top: 0;
  left: 0;

  z-index: 100;
}


.topbar {
  background: var(--orange);
  color: white;

  font-size: 0.75rem;
  font-weight: 700;

  letter-spacing: 0.5px;
}


.topbar-content {
  min-height: 35px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


.navbar {
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo {
  display: flex;
  align-items: center;

  gap: 11px;

  color: white;
}


.logo-box {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  background: var(--orange);

  font-size: 1.6rem;
  font-weight: 900;
}


.logo-text {
  font-size: 1.3rem;
  font-weight: 900;

  line-height: 1;
}


.logo-text > span {
  color: var(--orange);
}


.logo-text small {
  display: block;

  margin-top: 5px;

  font-size: 0.52rem;
  font-weight: 500;

  letter-spacing: 1.6px;

  color: #aaaaaa;
}


.nav-links {
  display: flex;
  align-items: center;

  gap: 28px;

  list-style: none;

  color: white;
}


.nav-links > li > a {
  font-size: 0.87rem;
  font-weight: 700;
}


.nav-links > li > a:hover {
  color: var(--orange);
}


.nav-links .btn:hover {
  color: white;
}


.menu-btn {
  display: none;

  background: transparent;

  color: white;

  font-size: 1.8rem;

  cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {
  min-height: 820px;

  display: flex;
  align-items: center;

  position: relative;

  background:
    url(
      "https://images.unsplash.com/photo-1530124566582-a618bc2615dc?auto=format&fit=crop&w=1800&q=85"
    )
    center / cover;

  color: white;
}


.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(10,10,10,.95) 0%,
      rgba(10,10,10,.83) 45%,
      rgba(10,10,10,.30) 100%
    );
}


.hero-content {
  position: relative;

  z-index: 2;

  padding-top: 110px;
}


.eyebrow {
  display: inline-block;

  margin-bottom: 20px;

  color: var(--orange);

  font-size: 0.78rem;
  font-weight: 900;

  letter-spacing: 2.5px;
}


.hero h1 {
  max-width: 800px;

  font-size:
    clamp(3.8rem, 8vw, 7.4rem);

  line-height: 0.88;

  letter-spacing: -5px;

  text-transform: uppercase;

  margin-bottom: 30px;
}


.hero h1 span {
  display: block;
  color: var(--orange);
}


.hero > .container > p,
.hero-content > p {
  max-width: 620px;

  color: #cccccc;

  font-size: 1.1rem;

  margin-bottom: 32px;
}


.hero-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}


.hero-features {
  display: flex;

  gap: 0;

  margin-top: 70px;

  border-top:
    1px solid rgba(255,255,255,.2);

  max-width: 700px;
}


.hero-features div {
  padding: 22px 55px 0 0;

  margin-right: 55px;

  border-right:
    1px solid rgba(255,255,255,.2);
}


.hero-features div:last-child {
  border-right: 0;
}


.hero-features strong {
  display: block;

  font-size: 1.5rem;
}


.hero-features span {
  color: #999999;

  font-size: 0.78rem;

  text-transform: uppercase;

  letter-spacing: 1px;
}


/* =========================================
   TITULARES DE SECCIÓN
========================================= */

.section-heading {
  display: grid;

  grid-template-columns:
    1.4fr .6fr;

  gap: 70px;

  align-items: end;

  margin-bottom: 55px;
}


.section-number {
  display: block;

  margin-bottom: 17px;

  color: var(--orange);

  font-size: 0.73rem;
  font-weight: 900;

  letter-spacing: 2px;
}


.section-heading h2 {
  font-size:
    clamp(2.4rem, 5vw, 4.4rem);

  line-height: .98;

  letter-spacing: -3px;

  text-transform: uppercase;
}


.section-heading > p {
  color: var(--gray);

  padding-bottom: 5px;
}


/* =========================================
   PRODUCTOS
========================================= */

.products {
  background: var(--background);
}


.product-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 25px;
}


.product-card {
  background: white;

  border:
    1px solid var(--border);
}


.product-image {
  height: 310px;

  position: relative;

  overflow: hidden;

  background: #ddd;
}


.product-image img {
  height: 100%;

  object-fit: cover;

  filter: grayscale(20%);

  transition: .4s;
}


.product-card:hover
.product-image img {
  transform: scale(1.05);
}


.product-index {
  position: absolute;

  top: 0;
  left: 0;

  background: var(--orange);
  color: white;

  padding: 8px 14px;

  font-size: .75rem;
  font-weight: 900;
}


.product-content {
  padding: 30px;
}


.product-content h3 {
  font-size: 1.45rem;

  text-transform: uppercase;

  margin-bottom: 10px;
}


.product-content p {
  color: var(--gray);

  margin-bottom: 20px;

  max-width: 480px;
}


.product-content a {
  color: var(--orange);

  font-size: .8rem;
  font-weight: 900;

  letter-spacing: .5px;
}


/* =========================================
   NOSOTROS
========================================= */

.about {
  background: white;
}


.about-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 85px;

  align-items: center;
}


.about-image {
  min-height: 600px;

  position: relative;
}


.about-image > img {
  width: calc(100% - 50px);
  height: 600px;

  object-fit: cover;
}


.experience-box {
  position: absolute;

  right: 0;
  bottom: 45px;

  width: 200px;

  padding: 25px;

  display: flex;
  align-items: center;

  gap: 15px;

  background: var(--orange);
  color: white;
}


.experience-box strong {
  font-size: 4rem;

  line-height: 1;

  letter-spacing: -4px;
}


.experience-box span {
  font-size: .67rem;

  font-weight: 900;

  line-height: 1.4;

  letter-spacing: 1px;
}


.about-content h2 {
  font-size:
    clamp(2.5rem, 5vw, 4.2rem);

  line-height: 1;

  letter-spacing: -3px;

  text-transform: uppercase;

  margin-bottom: 25px;
}


.about-content h2 span {
  color: var(--orange);
}


.about-content > p {
  color: var(--gray);

  margin-bottom: 17px;
}


.about-list {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 14px;

  margin: 30px 0;
}


.about-list div {
  padding: 13px 0;

  border-bottom:
    1px solid var(--border);

  font-weight: 700;
}


.about-list span {
  color: var(--orange);

  margin-right: 7px;
}


.text-link {
  color: var(--black);

  font-size: .78rem;
  font-weight: 900;

  letter-spacing: 1px;

  border-bottom:
    2px solid var(--orange);

  padding-bottom: 5px;
}


/* =========================================
   VENTAJAS
========================================= */

.advantages {
  background: var(--charcoal);

  color: white;
}


.section-heading.light > p {
  color: #999;
}


.advantages-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);
}


.advantage-card {
  min-height: 330px;

  padding: 30px;

  position: relative;

  border:
    1px solid #353535;

  transition: .3s;
}


.advantage-card:hover {
  background: var(--orange);

  border-color: var(--orange);

  transform: translateY(-5px);
}


.advantage-number {
  position: absolute;

  right: 20px;
  top: 18px;

  color: #555;

  font-size: .7rem;

  font-weight: 900;
}


.advantage-card:hover
.advantage-number {
  color: rgba(255,255,255,.6);
}


.advantage-icon {
  font-size: 2rem;

  margin: 40px 0 55px;
}


.advantage-card h3 {
  font-size: 1.1rem;

  text-transform: uppercase;

  margin-bottom: 10px;
}


.advantage-card p {
  color: #999;

  font-size: .9rem;
}


.advantage-card:hover p {
  color: rgba(255,255,255,.85);
}


/* =========================================
   MARCAS
========================================= */

.brands {
  background: var(--orange);
}


.brands-grid {
  display: grid;

  grid-template-columns:
    .8fr 1.2fr;

  gap: 80px;

  align-items: center;
}


.brands-content
.section-number {
  color: var(--black);
}


.brands-content h2 {
  font-size:
    clamp(2.4rem, 5vw, 4.2rem);

  line-height: 1;

  letter-spacing: -3px;

  text-transform: uppercase;

  margin-bottom: 20px;
}


.brands-content p {
  max-width: 500px;

  margin-bottom: 28px;

  color: #44220d;
}


.brand-list {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  border-top:
    1px solid rgba(0,0,0,.25);

  border-left:
    1px solid rgba(0,0,0,.25);
}


.brand-list div {
  min-height: 110px;

  display: grid;
  place-items: center;

  border-right:
    1px solid rgba(0,0,0,.25);

  border-bottom:
    1px solid rgba(0,0,0,.25);

  font-size: 1.4rem;
  font-weight: 900;
}


/* =========================================
   CONTACTO
========================================= */

.contact {
  background: #e9e8e4;
}


.contact-grid {
  display: grid;

  grid-template-columns:
    .85fr 1.15fr;

  gap: 80px;

  align-items: start;
}


.contact-info h2 {
  font-size:
    clamp(2.5rem, 5vw, 4.5rem);

  line-height: .98;

  letter-spacing: -3px;

  text-transform: uppercase;

  margin-bottom: 25px;
}


.contact-info > p {
  color: var(--gray);

  max-width: 480px;

  margin-bottom: 40px;
}


.contact-details {
  display: grid;

  gap: 20px;
}


.contact-details div {
  padding-bottom: 18px;

  border-bottom:
    1px solid #ccc;
}


.contact-details span {
  display: block;

  color: var(--orange);

  font-size: .67rem;
  font-weight: 900;

  letter-spacing: 1.5px;

  margin-bottom: 3px;
}


.contact-details strong {
  font-size: .95rem;
}


.quote-form {
  background: white;

  padding: 40px;

  box-shadow: var(--shadow);
}


.form-heading {
  margin-bottom: 30px;
}


.form-heading span {
  color: var(--orange);

  font-size: .7rem;
  font-weight: 900;

  letter-spacing: 2px;
}


.form-heading h3 {
  font-size: 1.7rem;

  text-transform: uppercase;
}


.form-row {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 15px;
}


.quote-form label {
  display: block;

  margin-bottom: 7px;

  font-size: .72rem;
  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: .5px;
}


.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;

  padding: 14px;

  margin-bottom: 18px;

  background: #f6f6f4;

  border:
    1px solid #dededb;

  outline: none;

  border-radius: 0;
}


.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  border-color: var(--orange);
}


.quote-form textarea {
  min-height: 130px;

  resize: vertical;
}


.form-button {
  width: 100%;
}


/* =========================================
   FOOTER
========================================= */

footer {
  background: var(--black);

  color: #777;

  padding: 35px 0;
}


.footer-content {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 30px;

  font-size: .8rem;
}


.footer-content > a:last-child {
  color: white;

  font-weight: 700;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 950px) {

  .nav-links {
    display: none;

    position: absolute;

    top: 110px;
    left: 5%;
    right: 5%;

    flex-direction: column;

    padding: 30px;

    background: var(--charcoal);

    box-shadow: var(--shadow);
  }


  .nav-links.active {
    display: flex;
  }


  .menu-btn {
    display: block;
  }


  .hero h1 {
    font-size:
      clamp(3.5rem, 11vw, 6rem);
  }


  .section-heading,
  .about-grid,
  .brands-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }


  .product-grid {
    grid-template-columns: 1fr 1fr;
  }


  .advantages-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}


@media (max-width: 650px) {

  .section {
    padding: 75px 0;
  }


  .topbar-content p:first-child {
    display: none;
  }


  .topbar-content {
    justify-content: flex-end;
  }


  .navbar {
    height: 75px;
  }


  .hero {
    min-height: 760px;
  }


  .hero-content {
    padding-top: 120px;
  }


  .hero h1 {
    font-size: 3.6rem;

    letter-spacing: -3px;
  }


  .hero-features {
    flex-direction: column;

    gap: 15px;

    border-top: 0;

    margin-top: 45px;
  }


  .hero-features div {
    border-right: 0;

    border-left:
      3px solid var(--orange);

    padding: 0 0 0 15px;

    margin: 0;
  }


  .product-grid,
  .advantages-grid,
  .about-list,
  .brand-list,
  .form-row {
    grid-template-columns: 1fr;
  }


  .product-image {
    height: 260px;
  }


  .about-image {
    min-height: 430px;
  }


  .about-image > img {
    height: 430px;

    width: 100%;
  }


  .experience-box {
    right: 0;
    bottom: 0;
  }


  .quote-form {
    padding: 25px 20px;
  }


  .footer-content {
    flex-direction: column;

    text-align: center;
  }

}