/* ===== CSS Variables ===== */
:root {
  --white: #FFFFFF;
  --bg-light: #F4F7FB;
  --bg-input: #F9FBFD;
  --border-input: #DCE3ED;
  --navy: #071B3D;
  --navy-dark: #04142F;
  --blue-dark: #0A2966;
  --blue-mid: #113D7F;
  --blue-btn: #174EA6;
  --blue-light: #6BABFF;
  --red: #F03727;
  --red-orange: #F35533;
  --text-gray: #536178;
  --text-tag: #626262;
  --placeholder: #7E7976;
  --shadow-sm: 0px 2px 5px 0px rgba(10, 41, 102, 0.1);
  --shadow-md: 0px 3px 4px 0px rgba(7, 27, 61, 0.15);
  --shadow-lg: 4px 4px 4px 0px rgba(10, 41, 102, 0.25);
  --shadow-text: 4px 4px 8px 0px rgba(10, 41, 102, 0.25);
  --shadow-card: 6px 6px 20px 0px rgba(10, 41, 102, 0.5);
  --font-montserrat: 'Montserrat', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --font-manrope: 'Manrope', sans-serif;
  --design-width: 1717px;
  --header-height-expanded: 102px;
  --container-max: 1717px;
  --container-padding: clamp(20px, 11.7vw, 201px);
}

/* ===== Reset ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-inter);
  color: var(--text-gray);
  background: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* ===== Typography ===== */
.section-label {
  display: block;
  font-family: var(--font-manrope);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.section-label--red { color: var(--red); }
.section-label--blue { color: var(--blue-light); }
.section-label--dark-blue { color: var(--blue-mid); }
.section-label--center { text-align: center; }

.section-title {
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.15;
  color: var(--blue-dark);
  margin-bottom: 32px;
}

.section-title--white { color: var(--white); }
.section-title--center { text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  border: none;
  cursor: pointer;
  border-radius: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  width: 250px;
  height: 48px;
  background: linear-gradient(90deg, rgba(238, 48, 39, 0.94) 0%, rgba(243, 85, 51, 0.94) 100%);
  color: var(--white);
}

.btn--submit {
  width: 100%;
  max-width: 584px;
  height: 48px;
  background: var(--blue-btn);
  color: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: 15px;
}

.btn--outline {
  display: none;
  background: transparent;
  border: 2px solid #0A2966;
  color: #0A2966;
  box-shadow: none;
}

.btn--outline:hover {
  background: rgba(7, 27, 61, 0.04);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--bg-light);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  width: 90px;
  height: 64px;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 45px;
  margin-left: auto;
  margin-right: 45px;
}

.header__nav a {
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  transition: color 0.2s;
  white-space: nowrap;
}

.header__nav a:hover {
  color: var(--red);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 159px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 16px;
  border-radius: 18px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.header__cta:hover {
  background: var(--blue-dark);
}

/* Hamburger toggle - hidden on desktop */
.header__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-shrink: 0;
}

.header__menu-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
}

.header__menu-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.header__menu-icon span:nth-child(1) { top: 0; }
.header__menu-icon span:nth-child(2) { top: 8px; }
.header__menu-icon span:nth-child(3) { top: 16px; }

.header__menu-toggle[aria-expanded="true"] .header__menu-icon span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.header__menu-toggle[aria-expanded="true"] .header__menu-icon span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle[aria-expanded="true"] .header__menu-icon span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* Mobile menu panel */
.header__mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--bg-light);
  box-shadow: var(--shadow-sm);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.header__mobile-menu.is-open {
  max-height: calc(100vh - var(--header-height));
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
}

.header__mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 24px var(--container-padding) 32px;
  gap: 8px;
}

.header__mobile-nav a {
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  padding: 14px 0;
  border-bottom: 1px solid rgba(10, 41, 102, 0.08);
  transition: color 0.2s;
}

.header__mobile-nav a:hover,
.header__mobile-nav a:focus-visible {
  color: var(--red);
  outline: none;
}

.header__mobile-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  margin-top: 16px;
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 18px;
  border-bottom: none !important;
  padding: 0 !important;
}

.header__mobile-cta:hover {
  background: var(--blue-dark) !important;
  color: var(--white) !important;
}

.header__mobile-whatsapp {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  background: #1fb855 !important;
  color: var(--white) !important;
  border-radius: 18px;
  border-bottom: none !important;
  padding: 12px 16px !important;
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
}

.header__mobile-whatsapp:hover,
.header__mobile-whatsapp:focus-visible {
  background: #25D366 !important;
  color: var(--white) !important;
  outline: none;
}

.header__mobile-whatsapp img {
  flex-shrink: 0;
  object-fit: contain;
}

/* ===== Desktop Header Scroll States ===== */
@media (min-width: 993px) {
  .header {
    transition: height 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .header__inner {
    transition: height 0.3s ease;
  }

  .header__logo img {
    transition: width 0.3s ease, height 0.3s ease;
  }

  .header:not(.is-scrolled) {
    height: var(--header-height-expanded);
    background: rgba(244, 247, 251, 0.432);
    box-shadow: none;
  }

  .header:not(.is-scrolled) .header__inner {
    height: var(--header-height-expanded);
  }

  .header:not(.is-scrolled) .header__logo img {
    width: 110px;
    height: 78px;
  }

  .header.is-scrolled {
    height: var(--header-height);
    background: var(--bg-light);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
  }

  .header.is-scrolled .header__inner {
    height: var(--header-height);
  }

  .header.is-scrolled .header__logo img {
    width: 90px;
    height: 64px;
  }

  .hero__bg--desktop,
  .hero__overlay {
    top: calc(-1 * var(--header-height));
    height: calc(100% + var(--header-height));
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  margin-top: var(--header-height);
  display: flex;
  height: 916px;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg--mobile {
  display: none;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 53.3%;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.75) 20%, rgba(7, 27, 61, 0) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 180px;
  padding-bottom: 60px;
}

.hero__label {
  display: block;
  font-family: var(--font-manrope);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #F35533;
  margin-bottom: 38px;
}

.hero__title {
  font-family: var(--font-montserrat);
  font-weight: 800;
  font-size: 70px;
  line-height: 1em;
  color: #0A2966;
  margin-bottom: 38px;
}

.hero__subtitle {
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  color: #0A2966;
  margin-bottom: 70px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero__btn-arrow {
  display: block;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1;
  color: inherit;
}

.hero__actions .btn--primary {
  position: relative;
}

/* ===== About ===== */
.about {
  background: var(--bg-light);
  padding: 127px 0 160px;
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(0, 1fr);
  gap: 96px;
  align-items: start;
}

.about__title {
  font-size: 50px;
  line-height: 1.15;
  margin-bottom: 31px;
}

.about__text p {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__text strong {
  font-weight: 700;
  color: var(--blue-dark);
}

.about__mission {
  font-weight: 600;
  line-height: 1.65;
  color: var(--blue-dark) !important;
}

.about__right {
  padding-top: 75px;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
}

.timeline__step {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 28px;
  align-items: start;
}

.timeline__marker {
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 5px;
}

.timeline__dot {
  width: 20px;
  height: 20px;
  background: var(--red-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.timeline__dash {
  width: 0;
  height: 105px;
  border-left: 2px dashed var(--red-orange);
  margin: 9px 0 14px 9px;
  flex-shrink: 0;
}

.timeline__dash--second {
  height: 105px;
  margin-top: 14px;
  margin-bottom: 15px;
}

.timeline__marker--pin {
  width: 20px;
  padding-top: 5px;
}

.timeline__marker--pin img {
  display: block;
  width: 20px;
  height: 27px;
  object-fit: contain;
}

.timeline__content h3 {
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.08;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.timeline__content p {
  font-size: 16px;
  line-height: 1.45;
  max-width: 510px;
}

/* ===== Services ===== */
.services {
  background: linear-gradient(89deg, rgba(17, 61, 127, 1) 5%, rgba(7, 29, 65, 1) 95%);
  padding: 50px 0 100px;
}

.services__header {
  text-align: center;
  margin-bottom: 67px;
}

.services__header .section-title {
  max-width: 879px;
  margin-left: auto;
  margin-right: auto;
  font-size: 50px;
  line-height: 1;
}

.services__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.service-card {
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-card__image {
  height: 336px;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-card__body {
  padding: 28px 30px 40px;
}

.service-card__tag {
  display: block;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--text-tag);
  margin-bottom: 14px;
}

.service-card__title {
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.08;
  color: var(--blue-dark);
  margin-bottom: 24px;
}

.service-card__desc {
  font-size: 16px;
  line-height: 1.65;
}

/* ===== Coverage ===== */
.coverage {
  padding: 100px 0 120px;
  background: var(--white);
}

.coverage__inner {
  display: grid;
  grid-template-columns: 291px minmax(0, 1fr);
  gap: 98px;
  align-items: center;
}

.coverage__map {
  flex-shrink: 0;
}

.coverage__map img {
  width: 291px;
  max-width: 100%;
  height: auto;
}

.coverage__content {
  text-align: left;
}

.coverage__title {
  font-size: 50px;
  line-height: 1.14;
  margin-bottom: 36px;
}

.coverage__text {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.coverage__text strong {
  font-weight: 700;
}

.coverage__highlight {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.65;
  color: var(--blue-dark);
}

/* ===== Clients ===== */
.clients {
  background: var(--bg-light);
  padding: 90px 0 100px;
}

.clients__inner {
  text-align: center;
}

.clients__title {
  font-size: 50px;
  line-height: 1.08;
  max-width: 712px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.clients__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.clients__logo--luz {
  width: 273px;
  height: auto;
}

.clients__logo--center {
  width: 122px;
  height: auto;
}

.clients__logo--frigelar {
  width: 300px;
  height: auto;
}

.clients__logo--climario {
  width: 220px;
  height: auto;
}

/* ===== Contact ===== */
.contact {
  background: linear-gradient(89deg, rgba(7, 29, 65, 1) 5%, rgba(27, 89, 169, 1) 95%);
  padding: 65px 0 120px;
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 647px) 644px;
  gap: 80px;
  align-items: start;
}

.contact__title {
  font-size: 50px;
  line-height: 1.15;
  margin-bottom: 44px;
}

.contact__desc {
  font-size: 18px;
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 40px;
  max-width: 532px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__info li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact__info img {
  flex-shrink: 0;
  object-fit: contain;
}

.contact__info a,
.contact__info span {
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.contact__form-wrapper {
  background: var(--white);
  border-radius: 25px;
  padding: 51px 29px 39px;
  box-shadow: 6px 6px 20px 0px rgba(10, 41, 102, 1);
  width: 100%;
  max-width: 644px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 700;
  font-size: 16px;
  color: var(--blue-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  height: 45px;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-input);
  border-radius: 10px;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
}

.form-group textarea {
  height: auto;
  min-height: 171px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--placeholder);
  font-weight: 600;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-btn);
}

.contact__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact__form-feedback {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  padding: 12px 16px;
  border-radius: 10px;
}

.contact__form-feedback.is-success {
  color: var(--blue-dark);
  background: rgba(23, 78, 166, 0.08);
}

.contact__form-feedback.is-error {
  color: var(--red);
  background: rgba(240, 55, 39, 0.08);
}

.btn--submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-dark);
  padding: 24px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__logo {
  width: 89px;
  height: 66px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__copy {
  font-size: 18px;
  line-height: 1.45;
  color: var(--white);
  text-align: center;
  flex: 1;
}

.footer__top {
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  transition: color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer__top:hover {
  color: var(--blue-light);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float img {
  width: 66px;
  height: 66px;
}

/* ===== Fade Up Scroll Animations ===== */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 0.51s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.51s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  .fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-up--delay-1 { transition-delay: 65ms; }
  .fade-up--delay-2 { transition-delay: 130ms; }
  .fade-up--delay-3 { transition-delay: 200ms; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* ===== Tablet & Mobile Navigation ===== */
@media (max-width: 992px) {
  .header__nav,
  .header__cta {
    display: none;
  }

  .header__menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header__mobile-menu {
    display: block;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__right {
    padding-top: 0;
  }

  .services__cards {
    grid-template-columns: 1fr;
  }

  .hero__overlay {
    width: 100%;
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.75) 20%, rgba(7, 27, 61, 0) 100%);;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact__form-wrapper {
    max-width: 100%;
  }

  .coverage__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .coverage__map {
    display: flex;
    justify-content: center;
  }

  .coverage__content {
    text-align: center;
  }

  .footer__whatsapp {
    display: flex;
    justify-content: center;
    padding: 0 20px 24px;
  }

  .whatsapp-float {
    position: static;
    transform: none;
    z-index: auto;
  }

  .whatsapp-float:hover {
    transform: scale(1.08);
  }

  .whatsapp-float img {
    width: 56px;
    height: 56px;
    margin: 25px 0 0 0;
  }
}

@media (max-width: 768px) {
  :root {
    --mobile-header-padding-top: max(12px, env(safe-area-inset-top, 0px));
  }

  .section-title,
  .about__title,
  .coverage__title,
  .clients__title,
  .contact__title {
    font-size: clamp(32px, 8vw, 50px);
  }

  .header {
    background: transparent;
    box-shadow: none;
    padding-top: var(--mobile-header-padding-top);
    height: calc(var(--header-height) + var(--mobile-header-padding-top));
    transition: background-color 0.35s ease, box-shadow 0.35s ease;
  }

  .header__inner {
    height: var(--header-height);
  }

  .header__mobile-menu {
    top: calc(var(--header-height) + var(--mobile-header-padding-top));
  }

  .header.is-scrolled,
  body.menu-open .header {
    background: var(--bg-light);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
  }

  .hero {
    margin-top: 0;
    min-height: 100svh;
    align-items: center;
    justify-content: flex-start;
    padding-top: calc(var(--header-height) + var(--mobile-header-padding-top) + clamp(16px, 4vw, 28px));
  }

  .hero__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 390px;
    padding-bottom: clamp(36px, 8vw, 52px);
  }

  .hero__bg--desktop {
    display: none;
  }
  .hero__bg {
    top: 0;
    left: 0;
    height: 80%;
  }

  .hero__bg--mobile {
    display: block;
    object-position: center 38%;
  }

  .hero__overlay {
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(
      180deg,
      rgba(7, 29, 65, 0.06) 0%,
      transparent 16%,
      transparent 40%,
      rgba(255, 255, 255, 0.18) 45%,
      rgba(255, 255, 255, 0.62) 60%,
      rgba(244, 247, 251, 0.92) 72%,
      rgba(244, 247, 251, 1) 80%
    );
  }

  .hero__label {
    color: #012262;
    text-shadow: none;
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
  }

  .hero__title {
    font-size: clamp(32px, 8.5vw, 40px);
    line-height: 1;
    color: var(--blue-dark);
    text-shadow: none;
    margin-bottom: 16px;
  }

  .hero__subtitle {
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-gray);
    text-shadow: none;
    margin-bottom: 28px;
    max-width: 320px;
  }

  .hero__actions {
    align-items: center;
    width: 100%;
    gap: 14px;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
    height: 52px;
    font-size: 16px;
  }

  .hero__actions .btn--outline {
    display: inline-flex;
  }

  .hero__actions .btn--primary .hero__btn-arrow {
    right: 18px;
  }

  .hero__btn-arrow {
    font-size: 20px;
  }

  .about__text p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .timeline__content h3 {
    font-size: 24px;
  }
  .services__header {
    margin-bottom: 30px !important;
  }

  .services__header .section-title{
      font-size: 28px !important;
      margin-bottom: 0;
  }

  .service-card__desc {
    line-height: 1.40;
  }

  .coverage__map img{
    width: 190px;
  }

  .coverage__title{
    font-size: 28px !important;
  }
  .coverage__inner {
    gap: 20px;
  }
  .coverage__text{
    font-size: 16px;
    line-height: 1.40;
  }
  .coverage__highlight{
    font-size: 16px;
    line-height: 1.40;
  }

  .about {
    padding: 80px 0;
  }

  .about__left {
    text-align: center;
  }

  .clients__title {
    font-size: 28px !important;
    margin-bottom: 50px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .contact__info {
    align-items: center;
  }
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__copy {
    order: 2;
  }

  .footer__top {
    order: 3;
  }

  .clients__logos {
    gap: 30px;
    flex-direction: column;
  }

  .services__header {
    text-align: center;
  }

  .services__cards {
    justify-items: center;
  }

  .service-card {
    width: 100%;
  }

  .service-card__body {
    text-align: center;
    padding-left: 24px;
    padding-right: 24px;
  }

  .service-card__title {
    font-size: 28px;
  }

  .service-card__tag {
    font-size: 16px;;
  }

  .contact__left > .section-label,
  .contact__left > .contact__title,
  .contact__left > .contact__desc {
    text-align: center;
  }

  .contact__title{
    margin-bottom: 20px;
    font-size: 28px !important;
  }
  
  .contact__desc {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 1.40;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 20px;
  }

  .header__logo img {
    width: 72px;
    height: 52px;
  }

  .hero__content {
    padding-bottom: clamp(10px, 7vw, 48px);
  }

  .hero__actions .btn {
    max-width: 100%;
  }
  .section-label {
    font-size: 18px;
  }
  .clients__logo--luz {
    width: 200px;
  }

  .clients__logo--frigelar {
    width: 220px;
  }

  .clients__logo--climario {
    width: 180px;
  }
}

@media (max-width: 430px) {
  .hero__title {
    font-size: 34px;
  }

  .section-title,
  .about__title,
  .coverage__title,
  .clients__title,
  .contact__title {
    font-size: 28px;
  }
}

@media (max-width: 375px) {
  :root {
    --container-padding: 16px;
  }

  .header__mobile-nav {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 320px) {
  .hero__label {
    font-size: 14px;
  }

  .hero__title {
    font-size: 30px;
  }

  .hero__subtitle {
    font-size: 16px;
  }
}
