@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=PT+Mono&family=Quicksand:wght@300..700&display=swap");
/*
.quicksand-regular{
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }

  .archivo-regular {
    font-family: "Archivo", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
  }

  .pt-mono-regular {
    font-family: "PT Mono", monospace;
    font-weight: 400;
    font-style: normal;
  } */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  list-style: none;
}

ol, ul {
  padding-left: 0rem;
}

body {
  overflow: hidden;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 99999;
}

.page-content {
  display: none;
}

.loaded .loading-screen {
  display: none;
}

.loaded .page-content {
  display: block;
}

.loaded {
  overflow: auto;
}

/* Navbar */
.navbar {
  position: fixed;
  background-color: #357aff;
  min-height: 110px;
  width: 100%;
  top: 0;
  transition: background-color 0.3s ease;
  z-index: 1000;
}
.navbar.transparent {
  background-color: rgba(53, 120, 255, 0);
}
.navbar .navbar-brand img {
  height: 48px;
  padding-left: 70px;
  transition: all 0.4s ease-in-out;
}
.navbar ul.navbar-nav {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.navbar.transparent ul.navbar-nav {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}
.navbar.transparent .navbar-brand img {
  height: 55px;
  pointer-events: none;
}
.navbar .navbar-brand span {
  color: #ec1b5e;
  margin-left: 5px;
  box-shadow: 1px solid black;
}
.navbar .nav-item a {
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
  font-family: "Archivo", sans-serif;
}
.navbar .nav-item a:hover,
.navbar .nav-item a:focus {
  color: #ff8034;
}
.navbar .navbar-toggler {
  background-color: #f3f3f3;
  border-color: #357aff;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  background-color: #f3f3f3;
}

/* progress circle */
.progress-circle-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-circle {
  width: 80px;
  height: 80px;
}

.progress-circle-bar {
  fill: none;
  stroke: #ff8034;
  stroke-width: 5;
  stroke-dasharray: 283;
  stroke-dashoffset: 0;
  transform-origin: center;
  transition: stroke-dashoffset 0.3s ease;
}

.progress-background {
  fill: transparent;
  stroke: #ededed;
  stroke-width: 5;
  stroke-dasharray: none;
}

.scroll-to-top {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #ff8034;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.scroll-to-top svg {
  display: block;
  width: 20px;
  height: 20px;
  stroke: white;
  transition: all 0.1s ease;
}

.jumbo-tron {
  height: 100vh;
  background: linear-gradient(rgba(0, 2, 17, 0.3), rgba(0, 3, 24, 0.3)), url(../img/back-2.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: start !important;
  justify-content: center !important;
}
.jumbo-tron .container-text {
  max-width: 100%;
  width: 60% !important;
  font-weight: bold;
  text-align: start;
  padding-bottom: 10px;
  padding-left: 140px;
}
.jumbo-tron .container-text p {
  padding-top: 18px;
  font-size: 25px;
  font-weight: 500;
  width: 90%;
  font-family: "Archivo", sans-serif;
}
.jumbo-tron .container-text span {
  font-size: 4.5em;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  line-height: 1;
}

#trigger-logo-change {
  position: relative;
  top: -100px;
  height: 1px;
}

.nosotros {
  min-height: 100vh;
  background: linear-gradient(to bottom, #f5f7fa 0%, #e8ecf3 100%);
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}
.nosotros::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.nosotros .milei {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
.nosotros .title-nosotros {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}
.nosotros .title-nosotros .div {
  font-size: 3rem;
  font-weight: 600;
  color: #357aff;
  text-align: center;
  margin-bottom: 1rem;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
}
.nosotros .linea {
  width: clamp(100px, 15vw, 150px);
  height: 0.3rem;
  background: linear-gradient(90deg, #4A90E2, #FF8E53);
  border-radius: 25px;
  margin: 0 auto 2rem auto;
  display: block;
}
.nosotros .container-hidden {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1rem;
}
.nosotros .container-hidden .container-texto-imagen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.nosotros .container-hidden .container-texto {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo", sans-serif;
}
.nosotros .container-hidden .container-texto .texto {
  display: none;
  transform: translateY(30px);
  transition: all 0.4s ease;
  opacity: 0;
  width: 100%;
  max-width: 500px;
  padding-bottom: 4rem;
}
.nosotros .container-hidden .container-texto .texto.active {
  opacity: 1;
  transform: translateY(0);
  display: block;
}
.nosotros .container-hidden .container-texto .texto span {
  font-size: 2.5rem;
  color: #357aff;
  display: block;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.nosotros .container-hidden .container-texto .texto p {
  font-size: 1.5rem;
  color: #4e4844;
  line-height: 1.6;
  margin: 0;
}
.nosotros .container-hidden .container-texto #texto1 {
  display: block;
}
.nosotros .container-hidden .container-imagenes {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}
.nosotros .container-hidden .container-imagenes .volt {
  width: 610px;
  height: 610px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(to bottom, #f5f7fa 0%, #e8ecf3 100%);
}
.nosotros .container-hidden .container-imagenes .volt img.imagen-contenido {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s ease;
  background: transparent;
}
@media (max-width: 768px) {
  .nosotros .container-hidden .container-imagenes .volt {
    width: 90vw;
    height: 90vw;
    max-width: 400px;
    max-height: 400px;
  }
}
@media (max-width: 480px) {
  .nosotros .container-hidden .container-imagenes .volt {
    width: 85vw;
    height: 85vw;
    max-width: 300px;
    max-height: 300px;
  }
}
.nosotros .container-botones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}
.nosotros .container-botones .boton-emergente {
  background-color: white;
  width: 200px;
  height: 50px;
  border-radius: 25px;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.nosotros .container-botones .boton-emergente::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
  transition: left 0.5s ease;
}
.nosotros .container-botones .boton-emergente:hover::before {
  left: 100%;
}
.nosotros .container-botones .boton-emergente:hover {
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}
.nosotros .container-botones .boton-emergente.seleccionado {
  background: #357aff;
  color: white;
  border: 2px solid transparent;
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.3);
}
.nosotros .container-botones .boton-emergente.seleccionado span {
  color: white;
}
.nosotros .container-botones .boton-emergente span {
  font-size: 20px;
  color: #4e4844;
  font-weight: 500;
  font-family: "Archivo", sans-serif;
  transition: color 0.3s ease;
}
.nosotros .title-nosotros {
  justify-content: center;
  align-items: center;
}

/* PARALAX */
.parallax-section {
  height: 30vh;
  background-image: url("../img/guana.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  position: relative;
}

.parallax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.button-container, .text-container {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
}

.cta-button {
  background: #ff8034;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

.text-container {
  color: white;
  text-align: left;
}

.text-container h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
}

.text-container p {
  font-size: 1.2rem;
  opacity: 0.9;
  font-family: "Archivo", sans-serif;
}

/* FORMULARIO */
#contacto {
  background: #f8f9fa;
  min-height: 100vh;
  padding: 30px 20px 40px 20px;
}
#contacto .enterprise-contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
#contacto .enterprise-contact-banner {
  background: #357aff;
  padding: 20px 40px;
  text-align: center;
  color: white;
}
#contacto .enterprise-contact-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
}
#contacto .enterprise-contact-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  font-family: "Archivo", sans-serif;
}
#contacto .enterprise-contact-main {
  padding: 50px 40px;
}
#contacto .enterprise-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
  margin-bottom: 30px;
}
#contacto .enterprise-field-wrapper {
  position: relative;
}
#contacto .enterprise-field-wrapper.span-full {
  grid-column: 1/-1;
}
#contacto .enterprise-field-wrapper label {
  display: block;
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-family: "Archivo", sans-serif;
}
#contacto .field-required-mark {
  color: #e53e3e;
}
#contacto .enterprise-input-container {
  position: relative;
  display: flex;
  align-items: center;
}
#contacto .enterprise-field-wrapper input, #contacto .enterprise-field-wrapper select, #contacto .enterprise-field-wrapper textarea {
  width: 100%;
  padding: 15px 50px 15px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  background: #fafafa;
  color: #4a5568;
  font-family: "Quicksand", sans-serif;
}
#contacto .enterprise-field-wrapper input::-moz-placeholder, #contacto .enterprise-field-wrapper textarea::-moz-placeholder {
  color: #a0aec0;
  font-style: italic;
}
#contacto .enterprise-field-wrapper input::placeholder, #contacto .enterprise-field-wrapper textarea::placeholder {
  color: #a0aec0;
  font-style: italic;
}
#contacto .enterprise-field-wrapper input:focus, #contacto .enterprise-field-wrapper select:focus, #contacto .enterprise-field-wrapper textarea:focus {
  outline: none;
  border-color: #4285f4;
  background: white;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}
#contacto .enterprise-field-wrapper textarea {
  resize: vertical;
  min-height: 120px;
}
#contacto .enterprise-field-icon {
  position: absolute;
  right: 15px;
  color: #ff6b35;
  font-size: 18px;
  pointer-events: none;
}
#contacto .enterprise-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
#contacto .enterprise-privacy-notice {
  flex: 1;
  min-width: 300px;
  color: #718096;
  font-size: 0.9rem;
  line-height: 1.5;
  font-family: "Quicksand", sans-serif;
}
#contacto .enterprise-submit-button {
  background: #357aff;
  color: white;
  padding: 15px 35px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 160px;
}
#contacto .enterprise-submit-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 55, 72, 0.3);
}
#contacto .enterprise-submit-button:disabled {
  background: #a0aec0;
  cursor: not-allowed;
  transform: none;
}

.target {
  height: 150px;
  max-width: 900px;
  margin: 0 auto;
  background-color: #357aff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 13px;
  border-radius: 15px;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 10px 20px;
}
.target .button-container {
  padding-top: 6px;
}
.target .button-container .cta-button {
  border-radius: 10px;
  font-family: "Archivo", sans-serif;
}
.target h2 {
  font-size: 28px;
  color: white;
  font-family: "Quicksand", sans-serif;
  padding-top: 10px;
}

.job-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}
.job-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.job-modal-overlay.active .job-modal {
  transform: translateY(0);
  opacity: 1;
}

.job-modal {
  background: white;
  border-radius: 15px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.3s ease;
}

.job-modal-header {
  background: #357aff;
  color: white;
  padding: 30px 40px;
  text-align: center;
  position: relative;
  border-radius: 15px 15px 0 0;
}
.job-modal-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
}
.job-modal-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
  font-family: "Archivo", sans-serif;
}

.job-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.job-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.job-modal-body {
  padding: 40px;
}

.job-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
  margin-bottom: 30px;
}

.job-field-wrapper {
  position: relative;
}
.job-field-wrapper.span-full {
  grid-column: 1/-1;
}
.job-field-wrapper label {
  display: block;
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-family: "Archivo", sans-serif;
}

.job-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.job-field-wrapper input, .job-field-wrapper textarea {
  width: 100%;
  padding: 15px 50px 15px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  background: #fafafa;
  color: #4a5568;
  font-family: "Quicksand", sans-serif;
}
.job-field-wrapper input::-moz-placeholder, .job-field-wrapper textarea::-moz-placeholder {
  color: #a0aec0;
  font-style: italic;
}
.job-field-wrapper input::placeholder, .job-field-wrapper textarea::placeholder {
  color: #a0aec0;
  font-style: italic;
}
.job-field-wrapper input:focus, .job-field-wrapper textarea:focus {
  outline: none;
  border-color: #4285f4;
  background: white;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}
.job-field-wrapper textarea {
  resize: vertical;
  min-height: 100px;
}

.job-field-icon {
  position: absolute;
  right: 15px;
  color: #ff8034;
  font-size: 18px;
  pointer-events: none;
}

.field-required-mark {
  color: #e53e3e;
}

.file-upload-area {
  border: 2px dashed #e2e8f0;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  background: #fafafa;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.file-upload-area:hover, .file-upload-area.dragover {
  border-color: #357aff;
  background: #f7faff;
}
.file-upload-area.has-file {
  border-color: #48bb78;
  background: #f0fff4;
}
.file-upload-area.has-file .file-upload-icon {
  color: #48bb78;
}

.file-upload-icon {
  font-size: 2.5rem;
  color: #a0aec0;
  margin-bottom: 10px;
  display: block;
}

.file-upload-text {
  color: #4a5568;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.file-upload-subtext {
  color: #a0aec0;
  font-size: 0.8rem;
}

.file-selected {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: #e6fffa;
  border: 1px solid #48bb78;
  border-radius: 6px;
  padding: 10px 15px;
  margin-top: 10px;
}
.file-selected.show {
  display: flex;
}

.file-info {
  display: flex;
  align-items: center;
  color: #2d3748;
  font-size: 0.9rem;
}
.file-info i {
  margin-right: 8px;
  color: #48bb78;
}

.file-remove {
  background: none;
  border: none;
  color: #e53e3e;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 2px;
}
.file-remove:hover {
  color: #c53030;
}

.hidden-file-input {
  display: none;
}

.job-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.job-privacy-notice {
  flex: 1;
  min-width: 300px;
  color: #718096;
  font-size: 0.9rem;
  line-height: 1.5;
  font-family: "Quicksand", sans-serif;
}

.job-submit-button {
  background: #357aff;
  color: white;
  padding: 15px 35px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 160px;
}
.job-submit-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.job-submit-button:disabled {
  background: #a0aec0;
  cursor: not-allowed;
  transform: none;
}

.success-message {
  text-align: center;
  padding: 60px 40px;
}

.success-icon {
  font-size: 4rem;
  color: #48bb78;
  margin-bottom: 20px;
}

.success-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}

.success-text {
  color: #4a5568;
  margin-bottom: 30px;
  line-height: 1.5;
}

.success-button {
  background: #357aff;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.success-button:hover {
  background: #0056b3;
}

.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .job-modal {
    margin: 10px;
    max-height: 95vh;
  }
  .job-modal-header {
    padding: 25px 30px;
  }
  .job-modal-body {
    padding: 30px 25px;
  }
  .job-form-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .job-form-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .job-form-footer .job-privacy-notice {
    min-width: auto;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .enterprise-form-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .enterprise-contact-main {
    padding: 30px 20px;
  }
  .enterprise-contact-banner {
    padding: 40px 20px;
  }
  .enterprise-contact-banner h1 {
    font-size: 1.8rem;
  }
  .enterprise-form-footer {
    flex-direction: column;
    text-align: center;
  }
  .enterprise-form-footer .enterprise-privacy-notice {
    min-width: auto;
    order: 2;
  }
  .enterprise-form-footer .enterprise-submit-button {
    order: 1;
    width: 100%;
  }
}
#btn-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 2em; /* Ajusta el tamaño del icono según tus preferencias */
  color: #007bff;
  cursor: pointer;
  z-index: 1;
}
#btn-to-top i {
  font-size: 70px;
  color: #ff6200;
}

.ingenoil-scroll-indicator {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 140px;
}

.ingenoil-scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: black;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: "Archivo", sans-serif !important;
  transition: color 0.3s ease;
}

.ingenoil-scroll-track {
  width: 2px;
  height: 100px;
  background: rgba(53, 122, 255, 0.2);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ingenoil-scroll-thumb {
  width: 100%;
  background: #ff8034;
  border-radius: 1px;
  height: 0%;
  transition: height 0.2s ease;
  position: absolute;
  top: 0;
}

.ingenoil-scroll-indicator:hover .ingenoil-scroll-track {
  width: 4px;
  background: rgba(53, 122, 255, 0.3);
}
.ingenoil-scroll-indicator:hover .ingenoil-scroll-text {
  color: #ff8034;
}

@media (max-width: 768px) {
  .ingenoil-scroll-indicator {
    right: 15px;
    height: 110px;
  }
  .ingenoil-scroll-text {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }
  .ingenoil-scroll-track {
    height: 70px;
  }
}
@media (max-width: 480px) {
  .ingenoil-scroll-indicator {
    right: 10px;
  }
  .ingenoil-scroll-text {
    font-size: 10px;
    display: none;
  }
}
footer {
  height: 260px;
  width: 100%;
  background-color: #357aff;
}
footer .container-row {
  max-width: 75%;
  margin: 0 auto;
  height: 100%;
  padding: 0 15px;
}
footer .container-row .row {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  align-items: flex-start;
  justify-content: space-between;
}
footer .container-row .row .f-logo {
  flex: 1;
  max-width: 28%;
  padding-top: 10px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  padding-right: 10px;
}
footer .container-row .row .f-logo .container-img {
  display: flex;
  justify-content: flex-start;
  padding-top: 20px;
  padding-left: 0;
  margin-left: 0;
}
footer .container-row .row .f-logo .container-img img {
  height: 55px;
  padding-top: 10px;
  padding-left: 0;
  margin-left: 0;
}
footer .container-row .row .f-logo .text-f {
  font-size: 14px;
  font-family: "Archivo", sans-serif;
  color: white;
  padding-left: 0;
  margin-left: 0;
  padding-top: 0.8em;
  line-height: 1.5;
  text-align: left;
}
footer .container-row .row .f-logo .container-redes {
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
  margin-left: 0;
  gap: 12px;
  padding-top: 8px;
}
footer .container-row .row .f-logo .container-redes i {
  font-size: 18px;
  color: white;
  transition: transform 0.3s ease;
  cursor: pointer;
}
footer .container-row .row .f-logo .container-redes i:hover {
  transform: scale(1.2);
  color: #ff8034;
}
footer .container-row .row .f-info, footer .container-row .row .f-servicios {
  flex: 1;
  max-width: 18%;
  padding-top: 32px;
  color: white;
  padding-left: 15px;
}
footer .container-row .row .f-info h3, footer .container-row .row .f-servicios h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 500;
  border-bottom: 2px solid #ff8034;
  display: inline-block;
  padding-bottom: 4px;
}
footer .container-row .row .f-info ul, footer .container-row .row .f-servicios ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .container-row .row .f-info ul li, footer .container-row .row .f-servicios ul li {
  margin-bottom: 6px;
}
footer .container-row .row .f-info ul li a, footer .container-row .row .f-servicios ul li a {
  text-decoration: none;
  color: white;
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  transition: color 0.3s ease;
}
footer .container-row .row .f-info ul li a:hover, footer .container-row .row .f-servicios ul li a:hover {
  color: #ff8034;
}
footer .container-row .row .f-contacto {
  flex: 1;
  max-width: 22%;
  padding-top: 32px;
  color: white;
  padding-left: 15px;
}
footer .container-row .row .f-contacto h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 500;
  border-bottom: 2px solid #ff8034;
  display: inline-block;
  padding-bottom: 4px;
}
footer .container-row .row .f-contacto .contacto-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
footer .container-row .row .f-contacto .contacto-item i {
  font-size: 15px;
  color: #ff8034;
  margin-right: 8px;
  width: 16px;
}
footer .container-row .row .f-contacto .contacto-item p {
  margin: 0;
  font-size: 14px;
  color: white;
}

.line-orange {
  height: 20px;
  width: 100%;
  background-color: #ff8034;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Quicksand", sans-serif;
}
.line-orange h4 {
  font-size: 15px;
  text-align: center;
  color: white;
  margin: 0;
}

.services-section {
  background: linear-gradient(to bottom, #e8ecf3 0%, #f5f7fa 100%);
  padding: 60px 20px;
}

.title-service {
  background: white;
  border-radius: 24px 24px 0 0;
  padding: 30px 20px;
  text-align: center;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: all 0.3s ease;
}
.title-service::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 3px;
}
.title-service .title-h2 {
  font-size: 2.5rem;
  color: #357aff;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  text-align: center;
  margin-left: 30px;
}
.title-service .container-p {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}
.title-service .container-p p {
  font-size: 1.2rem;
  color: #4e4844;
  line-height: 1.6;
  font-family: "Archivo", sans-serif;
  padding-top: 10px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  background: white;
  padding: 30px 25px;
  border-radius: 0 0 24px 24px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  position: relative;
}
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(53, 122, 255, 0.1) 50%, transparent 100%);
}
.services .service-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 2px solid #357aff;
  position: relative;
  overflow: hidden;
  width: 398px;
  flex-shrink: 0;
}
.services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #ff8034;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.services .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(53, 122, 255, 0.15);
  border-color: #357aff;
  background: white;
}
.services .service-card:hover::before {
  transform: scaleX(1);
}
.services .service-card:hover .icon {
  background: #357aff;
  transform: scale(1.05);
}
.services .service-card:nth-child(1) .specs-title::before {
  background: #ff8034;
}
.services .service-card:nth-child(2) .specs-title::before {
  background: #357aff;
}
.services .service-card:nth-child(3) .specs-title::before {
  background: #ff8034;
}
.services .card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.services .icon {
  width: 55px;
  height: 55px;
  background: #357aff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  transition: all 0.3s ease;
}
.services .icon img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.services .title-section h3 {
  font-size: 1.2rem !important;
  color: #ff8034;
  margin-bottom: 2px;
  font-family: "Quicksand", sans-serif;
}
.services .subtitle {
  color: #357aff;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  line-height: 20px;
  font-weight: bold;
}
.services .card-description {
  color: black;
  font-size: 1em;
  line-height: 1.4;
  margin-bottom: 20px;
  font-family: "Archivo", sans-serif;
}
.services .specifications {
  margin-bottom: 20px;
}
.services .specs-title {
  font-size: 0.9rem;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-family: "Archivo", sans-serif;
}
.services .specs-title::before {
  content: "";
  width: 3px;
  height: 16px;
  background: #357aff;
  margin-right: 8px;
  border-radius: 2px;
}
.services .specs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.services .spec-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: white;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}
.services .spec-item::before {
  content: "✓";
  color: #357aff;
  font-weight: bold;
  font-size: 0.9rem;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}
.services .spec-item:hover {
  background: #f0f9ff;
  border-left-color: #357aff;
  transform: translateX(4px);
}
.services .spec-item span {
  color: #475569;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Archivo", sans-serif;
}
.services .a-footer {
  text-decoration: none;
}
.services .card-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}
.services .details-btn {
  background: #357aff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.services .details-btn:hover {
  background: #ff8034;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 128, 52, 0.3);
}

@media screen and (max-width: 1700px) {
  .navbar .navbar-brand img {
    padding-left: 18px;
  }
  .nosotros .container-hidden .container-botones .boton-emergente {
    width: 300px;
    height: 140px;
  }
}
@media screen and (max-width: 1570px) {
  .nosotros .container-row .no-container .content-row {
    font-size: 22px;
  }
  .nosotros .container-row .img-row img {
    height: 220px;
  }
}
@media screen and (max-width: 1500px) {
  .navbar .navbar-brand img {
    height: 55px !important;
  }
  .servicios {
    height: 800px;
  }
  .servicios .cont-serv-title {
    padding-top: 40px;
  }
  .servicios .cont-serv-title h1 {
    font-size: 45px;
  }
  .servicios .row {
    max-width: 63%;
  }
  .servicios .row .overlay span {
    font-size: 25px;
  }
  .servicios .row .overlay p {
    font-size: 17px;
  }
  .servicios .row .overlay p span {
    font-size: 17px;
  }
  .servicios .row .cardio {
    height: 210px;
  }
  .servicios .row .cardio .overlay-image {
    height: 80px;
  }
  .jumbo-tron .container-text p {
    font-size: 22px;
  }
  .jumbo-tron .container-text span {
    font-size: 4em;
  }
  .sumate .sumate-text .btn-cv {
    width: 40%;
  }
  .main-contacto {
    height: 727px;
  }
  .main-contacto .container-contacto {
    padding-top: 0;
  }
  .main-contacto .container-contacto .box-info h1 {
    font-size: 35px;
  }
  .main-contacto .container-contacto .box-info h3 {
    font-size: 20px;
  }
  .main-contacto .container-contacto form .btn-form {
    width: 40%;
    margin-top: 15px;
  }
  .main-contacto .container-contacto form .input-box input {
    height: 55px;
  }
  .main-contacto .container-contacto form .input-box i {
    left: 31%;
    font-size: 31px;
  }
  .main-contacto .container-contacto form .input-box input, .main-contacto .container-contacto form .input-box textarea {
    width: 40%;
  }
  .main-contacto .container-contacto form .input-box textarea {
    height: 80px;
  }
}
@media screen and (max-width: 1410px) {
  section {
    scroll-margin-top: -70px; /* Más margen para notebooks */
  }
  .nosotros .container-hidden .container-imagenes {
    justify-content: end;
  }
  .nosotros .container-hidden .container-imagenes .volt {
    width: 900px;
    height: 900px;
    max-width: 480px;
    max-height: 480px;
  }
  .nosotros .container-hidden .container-imagenes .volt img.imagen-contenido {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .nosotros .container-hidden .container-texto .texto {
    max-width: 400px;
  }
  .nosotros .container-hidden .container-texto .texto span {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .nosotros .container-hidden .container-texto .texto p {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .servicios .section-title h2 {
    font-size: 3rem;
  }
  .servicios .section-title p {
    font-size: 1.1rem;
  }
  .servicios .flip-card {
    width: 300px;
    height: 350px;
  }
  .servicios .card-icon img {
    height: 110px;
  }
  .servicios .card-title {
    font-size: 1.4rem;
  }
  .servicios .flip-card-front span {
    font-size: 1.3rem;
  }
  .servicios .card-features li {
    font-size: 1.1rem;
  }
  .title-service img {
    height: 200px;
  }
  .jumbo-tron .container-text p {
    font-size: 22px;
  }
  .jumbo-tron .container-text span {
    font-size: 4em;
  }
  #btn-to-top i {
    font-size: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .nosotros .title-nosotros .div {
    font-size: 2.6rem;
  }
  .nosotros .container-hidden .container-imagenes {
    justify-content: end;
  }
  .nosotros .container-hidden .container-imagenes .volt {
    width: 400px;
    height: 400px;
    max-width: 400px;
    max-height: 400px;
  }
  .nosotros .container-hidden .container-imagenes .volt img.imagen-contenido {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 1160px) {
  .navbar .navbar-toggler:focus {
    box-shadow: none !important;
  }
  .navbar .navbar-toggler {
    border: none !important;
    background-color: #347cff;
  }
  .navbar i {
    font-size: 40px;
    color: #ff8034;
  }
}
@media screen and (max-width: 1050px) {
  .jumbo-tron .container-text {
    width: 95%;
  }
  .servicios .row {
    max-width: 90%;
  }
  .main-contacto .container-contacto form .input-box input {
    font-size: 15px;
  }
  .main-contacto .container-contacto form .input-box i {
    font-size: 25px;
  }
  .main-contacto .container-contacto form .input-box textarea {
    font-size: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .sumate .sumate-text .btn-cv {
    width: 50%;
  }
}
@media screen and (max-width: 992px) {
  .parallax-section .text-container h2 {
    font-size: 2rem;
  }
  .milei {
    margin-top: 80px;
  }
  .title-service img {
    height: 180px;
  }
  .servicios {
    height: 1400px;
  }
  .servicios .section-title p {
    max-width: 650px;
    margin-top: 6px;
  }
  .servicios .agrupacion {
    margin-top: 0;
  }
  .container-row {
    padding-top: 20px;
  }
  .container-row .item-row {
    height: 600px;
  }
  .container-row .item-row .content-row {
    height: 130px;
    width: 60%;
    margin: 0 auto;
    font-size: 25px;
  }
  .container-row .item-row .img-row img {
    height: 280px;
  }
  .container-row .item-row .title-row {
    font-size: 55px;
  }
  .cards-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .flip-card {
    width: 300px;
    height: 350px;
  }
  .card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  .card-title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 850px) {
  .nosotros .milei {
    margin-top: 70px;
  }
  .nosotros .title-nosotros {
    margin: -0.5rem 0;
  }
  .nosotros .container-hidden .container-texto-imagen {
    flex-direction: column-reverse;
  }
  .nosotros .container-hidden .container-texto-imagen .volt {
    max-width: 400px;
  }
  .nosotros .container-hidden .container-texto-imagen .container-texto {
    text-align: center;
  }
  .nosotros .container-hidden .container-texto-imagen .container-texto .texto {
    max-width: 450px;
    padding-top: 30px;
  }
  .nosotros .container-hidden .container-texto-imagen .container-texto .texto span {
    font-size: 2.5rem;
  }
  .nosotros .container-hidden .container-texto-imagen .container-texto .texto p {
    font-size: 1.4rem;
  }
  .nosotros .container-hidden .container-imagenes {
    justify-content: center;
  }
  .nosotros .container-botones {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }
  .nosotros .container-botones .boton-emergente {
    width: 360px;
    height: 50px;
  }
  .sumate .sumate-text h1 {
    font-size: 2.2rem;
  }
  .main-contacto .container-contacto .box-info h1 {
    font-size: 25px;
  }
  .main-contacto .container-contacto .box-info h3 {
    font-size: 16px;
  }
  .main-contacto .container-contacto form .input-box input {
    height: 60px;
  }
  .main-contacto .container-contacto form .input-box i {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .navbar {
    min-height: 97px;
  }
  .navbar .nav-item a {
    font-size: 16px;
    line-height: 1;
  }
  .navbar .navbar-brand img {
    height: 45px !important;
  }
  .jumbo-tron {
    align-items: center !important;
    justify-content: start !important;
  }
  .jumbo-tron .container-text {
    padding-left: 0;
    padding-top: 16em;
    text-align: center !important;
    width: 95% !important;
  }
  .jumbo-tron .container-text p {
    width: 100%;
    font-size: 22px;
    padding-top: 50px;
  }
  #btn-to-top i {
    font-size: 40px;
  }
}
@media screen and (max-width: 700px) {
  .sumate .sumate-text h1 {
    font-size: 2rem;
  }
  .sumate .sumate-text h4 {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 665px) {
  .sumate .sumate-text h1 {
    font-size: 1.8rem;
  }
  .sumate .sumate-text h4 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 643px) {
  .main-contacto .container-contacto .box-info h3 {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .parallax-section {
    flex-direction: column;
    justify-content: center;
    gap: 0px;
    padding: 0 20px;
    align-items: flex-start;
  }
  .parallax-section .text-container {
    text-align: left;
  }
  .parallax-section .text-container h2 {
    font-size: 2rem;
  }
  .parallax-section .text-container p {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 576px) {
  .jumbo-tron .container-text span {
    font-size: 3.5em;
  }
  .jumbo-tron .container-text p {
    font-size: 17px;
  }
  .main-contacto {
    height: 830px;
  }
  .main-contacto .container-contacto .box-info h3 {
    font-size: 12px;
  }
  .line-orange h4 {
    font-size: 12px;
  }
  .sumate .sumate-text .btn-cv {
    width: 75%;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 544px) {
  .target {
    height: 180px;
    align-items: flex-start;
    text-align: left;
  }
  .target h2 {
    text-align: left;
    font-size: 25px;
  }
  .target .button-container {
    align-self: flex-start;
  }
  .servicios {
    height: 1460px;
  }
  .flip-card {
    width: 280px;
    height: 320px;
  }
  .flip-card-front,
  .flip-card-back {
    padding: 20px;
  }
  .card-icon {
    font-size: 2.5rem;
  }
  .card-title {
    font-size: 1.3rem;
  }
  .card-description,
  .card-features li {
    font-size: 0.9rem;
  }
  .jumbo-tron .container-text {
    padding-top: 12em;
  }
  .jumbo-tron .container-text span {
    font-size: 3em;
  }
  .jumbo-tron .container-text p {
    font-size: 20px;
    padding-top: 20px;
  }
  .main-contacto {
    height: 830px;
  }
  .main-contacto .container-contacto .box-info h3 {
    font-size: 12px;
  }
  .main-contacto .container-contacto form .btn-form {
    width: 90%;
    height: 54px;
    font-size: 1.2rem;
  }
  .main-contacto .container-contacto form .input-box i {
    font-size: 23px;
    left: 11%;
  }
  .main-contacto .container-contacto form .input-box input {
    font-size: 15px;
    width: 85%;
  }
  .main-contacto .container-contacto form .input-box textarea {
    font-size: 17px;
    width: 85%;
  }
}
@media screen and (max-width: 450px) {
  .nosotros .title-nosotros .div {
    font-size: 2.1rem;
  }
  .nosotros .container-hidden .container-texto-imagen .volt {
    max-width: 350px;
    max-height: 350px;
  }
  .nosotros .container-hidden .container-texto-imagen .container-texto {
    text-align: center;
  }
  .nosotros .container-hidden .container-texto-imagen .container-texto .texto {
    max-width: 350px;
    padding-top: 30px;
  }
  .nosotros .container-hidden .container-texto-imagen .container-texto .texto span {
    font-size: 2.1rem;
  }
  .nosotros .container-hidden .container-texto-imagen .container-texto .texto p {
    font-size: 1.2rem;
  }
  .nosotros .container-hidden .container-imagenes {
    justify-content: center;
  }
  .nosotros .container-botones {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }
  .nosotros .container-botones .boton-emergente {
    width: 270px;
    height: 45px;
  }
  .nosotros .container-botones .boton-emergente span {
    font-size: 18px;
  }
  .servicios .section-title {
    margin-bottom: 25px;
  }
  .servicios .section-title h2 {
    font-size: 2.1rem;
    margin-bottom: 7px;
  }
  .servicios .section-title p {
    font-size: 1.2rem;
    max-width: 360px;
  }
  .sumate .sumate-text .btn-cv {
    width: 85%;
  }
}
@media screen and (max-width: 404px) {
  .line-orange h4 {
    font-size: 10px;
  }
}
@media screen and (max-width: 400px) {
  .title-service img {
    height: 84px;
  }
  .title-service img {
    height: 80px;
  }
  .main-contacto .container-contacto .box-info h1 {
    font-size: 25px;
  }
  .main-contacto .container-contacto .box-info h3 {
    font-size: 13px;
  }
  .main-contacto .container-contacto form .btn-form {
    width: 95%;
    height: 46px;
    font-size: 1.1rem;
  }
  .main-contacto .container-contacto form .input-box i {
    font-size: 21px;
    left: 6%;
  }
  .main-contacto .container-contacto form .input-box input {
    font-size: 15px;
    width: 95%;
    height: 61px;
  }
  .main-contacto .container-contacto form .input-box textarea {
    font-size: 15px;
    width: 95%;
  }
  .sumate .sumate-text h1 {
    font-size: 1.4rem;
  }
  .sumate .sumate-text h4 {
    font-size: 1rem;
  }
  .sumate .sumate-text .btn-cv {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 385px) {
  .servicios {
    height: 1490px;
  }
  .sumate .sumate-text .btn-cv {
    width: 93%;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 350px) {
  .line-orange {
    height: 26px;
  }
  .servicios .row .overlay p {
    font-size: 14px;
  }
  .servicios .row .overlay p span {
    font-size: 14px;
  }
  .servicios .row .overlay span {
    font-size: 22px;
  }
}
/*SERVICES */
@media (max-width: 1410px) {
  .services-section {
    padding: 40px 15px;
  }
  .title-service {
    border-radius: 20px 20px 0 0;
    padding: 25px 15px;
    max-width: 1200px;
  }
  .title-service::after {
    left: 30px;
    right: 30px;
    height: 2px;
  }
  .title-service .title-h2 {
    font-size: 2.5rem;
    margin-left: 0;
    margin-bottom: 15px;
  }
  .title-service .container-p {
    max-width: 1100px;
  }
  .title-service .container-p p {
    font-size: 1.2rem;
    line-height: 1.5;
    padding-top: 0;
  }
  .services {
    gap: 20px;
    padding: 25px 15px;
    border-radius: 0 0 20px 20px;
    max-width: 1200px;
    margin-bottom: 40px;
  }
  .services::before {
    left: 30px;
    right: 30px;
  }
  .services .service-card {
    border-radius: 16px;
    padding: 20px;
    width: 320px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  }
  .services .service-card::before {
    height: 4px;
  }
  .services .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(53, 122, 255, 0.15);
  }
  .services .title-section h3 {
    font-size: 1rem !important;
  }
  .services .card-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  .card-header {
    margin-bottom: 15px;
  }
  .icon {
    width: 45px !important;
    height: 45px !important;
    border-radius: 12px !important;
    margin-right: 10px !important;
  }
  .icon img {
    width: 20px;
    height: 20px;
  }
  .subtitle {
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
  }
  .specifications {
    margin-bottom: 15px;
  }
  .specs-title {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
  .specs-title::before {
    height: 14px;
    margin-right: 6px;
  }
  .specs-list {
    max-height: 160px;
    gap: 8px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .spec-item {
    padding: 6px 10px;
    border-radius: 6px;
    border-left: 2px solid transparent;
  }
  .spec-item::before {
    font-size: 0.8rem;
    margin-right: 6px;
    width: 14px;
  }
  .spec-item:hover {
    transform: translateX(3px);
  }
  .spec-item span {
    font-size: 0.8rem !important;
  }
  .card-footer {
    padding-top: 12px;
  }
  .details-btn {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
  }
  .details-btn:hover {
    box-shadow: 0 4px 12px rgba(255, 128, 52, 0.3);
  }
}
@media (max-width: 1200px) {
  .services {
    gap: 15px;
    max-width: 1000px;
  }
  .services .service-card {
    width: 300px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 480px;
  }
  .title-service {
    max-width: 1000px;
  }
  .card-description {
    font-size: 0.8rem;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .specifications {
    margin-bottom: 15px;
    flex-grow: 1;
  }
  .specs-title {
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1e293b;
  }
  .specs-list {
    max-height: 190px;
    gap: 8px;
  }
  .spec-item {
    padding: 8px 12px;
  }
  .spec-item span {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
  }
  .card-footer {
    margin-top: auto;
    padding-top: 15px;
  }
  .icon {
    width: 42px;
    height: 42px;
  }
  .icon img {
    width: 26px;
    height: 26px;
  }
  .title-section h3 {
    font-size: 1.4rem;
  }
  .subtitle {
    font-size: 0.9rem;
  }
}
@media (max-width: 991px) {
  .services {
    flex-direction: column;
    align-items: center;
    max-width: 700px !important;
  }
  .services .service-card {
    width: 100%;
    max-width: 400px;
  }
  .services .title-section h3 {
    font-size: 1.7rem;
  }
  .services .subtitle {
    font-size: 1.4rem !important;
  }
  .services .icon {
    width: 55px !important;
    height: 55px !important;
  }
  .services .icon img {
    width: 40px !important;
    height: 40px !important;
  }
  .services .card-description {
    font-size: 1rem;
  }
  .title-service {
    max-width: 700px !important;
  }
  .specs-list {
    max-height: 220px;
  }
  .spec-item span {
    font-size: 0.9rem !important;
  }
}
@media (max-width: 480px) {
  .title-service {
    padding: 20px 10px;
  }
  .title-service .title-h2 {
    font-size: 2.1rem;
    text-align: start;
  }
  .title-service .container-p p {
    text-align: start;
  }
  .services {
    padding: 20px 10px;
  }
  .services .title-section h3 {
    font-size: 1.4rem;
  }
  .services .subtitle {
    font-size: 1.1rem !important;
  }
  .services .service-card {
    width: 100%;
    max-width: 420px;
    overflow: visible;
    padding-bottom: 24px;
  }
  .services .specs-list {
    max-height: none;
    overflow: visible;
  }
  .services .icon {
    width: 45px !important;
    height: 45px !important;
  }
  .services .icon img {
    width: 30px !important;
    height: 30px !important;
  }
  .card-header {
    margin-bottom: 12px;
  }
  .icon {
    width: 40px;
    height: 40px;
  }
  .icon img {
    width: 24px;
    height: 24px;
  }
  .title-section h3 {
    font-size: 1.3rem;
  }
  .subtitle {
    font-size: 0.8rem;
  }
  .card-description {
    font-size: 0.8rem;
  }
  .specifications {
    margin-bottom: 12px;
  }
  .spec-item span {
    font-size: 0.7rem;
  }
}
@media (max-width: 768px) {
  #contacto .enterprise-form-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  #contacto .enterprise-field-wrapper {
    width: 100%;
  }
}
@media (max-width: 560px) {
  #contacto .enterprise-contact-banner {
    padding: 20px 20px !important;
  }
  #contacto .enterprise-contact-banner h1 {
    font-size: 1.85rem;
    text-align: start;
  }
  #contacto .enterprise-contact-banner p {
    text-align: start;
    font-size: 1rem;
  }
  #contacto .enterprise-contact-main {
    padding: 20px 10px;
  }
  #contacto .enterprise-privacy-notice {
    font-size: 0.7rem;
  }
  #contacto .enterprise-form-footer {
    align-items: start;
  }
}

@media (max-width: 1200px) {
  footer .container-row {
    max-width: 85%;
  }
  footer .f-logo .text-f {
    font-size: 13px;
    max-width: 16em;
  }
  footer .f-info h3, footer .f-servicios h3, footer .f-contacto h3 {
    font-size: 17px;
  }
  footer .f-info ul li a, footer .f-servicios ul li a, footer .f-contacto ul li a {
    font-size: 13px;
  }
  footer .f-contacto .contacto-item p {
    font-size: 13px;
  }
}
@media (max-width: 992px) {
  footer {
    height: auto;
    padding-bottom: 30px;
  }
  footer .container-row {
    max-width: 95%;
  }
  footer .container-row .row {
    flex-wrap: wrap;
  }
  footer .container-row .row .f-logo {
    max-width: 100%;
    margin-bottom: 25px;
    text-align: center;
    padding-right: 0;
  }
  footer .container-row .row .f-logo .container-img {
    justify-content: center;
    padding-top: 10px;
  }
  footer .container-row .row .f-logo .text-f {
    text-align: center;
    padding: 15px 20px 0;
    max-width: none;
  }
  footer .container-row .row .f-logo .container-redes {
    justify-content: center;
  }
  footer .container-row .row .f-info, footer .container-row .row .f-servicios, footer .container-row .row .f-contacto {
    max-width: 48%;
    margin-bottom: 25px;
    padding-left: 0;
    text-align: center;
  }
}
@media (max-width: 768px) {
  footer {
    height: auto;
    padding-bottom: 15px;
  }
  footer .container-row {
    max-width: 100%;
    padding: 0 15px;
  }
  footer .container-row .row {
    flex-direction: column;
    align-items: center;
  }
  footer .container-row .row .f-logo {
    max-width: 100%;
    margin-bottom: 20px;
    text-align: center;
    padding: 15px 10px 0;
  }
  footer .container-row .row .f-logo .container-img {
    padding-top: 0;
  }
  footer .container-row .row .f-logo .text-f {
    font-size: 14px;
    padding: 10px 10px 0;
    line-height: 1.5;
  }
  footer .container-row .row .f-logo .container-redes {
    padding-top: 10px;
  }
  footer .container-row .row .f-logo .container-redes i {
    font-size: 22px;
  }
  footer .container-row .row .f-info, footer .container-row .row .f-servicios {
    max-width: 100%;
    margin-bottom: 15px;
    text-align: center;
    padding: 0px 0px 0;
  }
  footer .container-row .row .f-info h3, footer .container-row .row .f-servicios h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  footer .container-row .row .f-info ul li, footer .container-row .row .f-servicios ul li {
    margin-bottom: 4px;
  }
  footer .container-row .row .f-info ul li a, footer .container-row .row .f-servicios ul li a {
    font-size: 16px;
  }
  footer .container-row .row .f-contacto {
    max-width: 100%;
    margin-bottom: 15px;
    text-align: center;
    padding: 10px 10px 0;
  }
  footer .container-row .row .f-contacto h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  footer .container-row .row .f-contacto .contacto-item {
    justify-content: center;
    margin-bottom: 6px;
  }
  footer .container-row .row .f-contacto .contacto-item i {
    font-size: 18px;
    margin-right: 12px;
  }
  footer .container-row .row .f-contacto .contacto-item p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  footer .container-row {
    padding: 0 10px;
  }
  footer .container-row .row .f-logo .text-f {
    font-size: 13px;
    padding: 10px 5px 0;
  }
  footer .container-row .row .f-info h3, footer .container-row .row .f-servicios h3 {
    font-size: 16px;
  }
  footer .container-row .row .f-info ul li a, footer .container-row .row .f-servicios ul li a {
    font-size: 15px;
  }
  footer .container-row .row .f-contacto h3 {
    font-size: 16px;
  }
  footer .container-row .row .f-contacto .contacto-item p {
    font-size: 15px;
  }
  .line-orange h4 {
    font-size: 12px;
  }
}
/* Extra Large Screens - 4K y superiores (2560px+) */
@media screen and (min-width: 2100px) {
  .navbar {
    min-height: 180px;
  }
  .navbar .navbar-brand img {
    height: 80px;
    padding-left: 120px;
  }
  .navbar .nav-item a {
    font-size: 30px;
  }
  .jumbo-tron .container-text {
    width: 50%;
    padding-left: 200px;
  }
  .jumbo-tron .container-text span {
    font-size: 6em;
    line-height: 0.9;
  }
  .jumbo-tron .container-text p {
    font-size: 35px;
    padding-top: 25px;
    width: 85%;
  }
  .nosotros .title-nosotros .div {
    font-size: 4.3rem;
    margin-bottom: 2rem;
  }
  .nosotros .container-hidden {
    max-width: 1600px;
  }
  .nosotros .container-hidden .container-texto .texto {
    max-width: 650px;
  }
  .nosotros .container-hidden .container-texto .texto span {
    font-size: 4rem;
    margin-bottom: 1.5rem;
  }
  .nosotros .container-hidden .container-texto .texto p {
    font-size: 2rem;
    line-height: 1.7;
  }
  .nosotros .container-hidden .container-imagenes .volt {
    max-width: 700px;
  }
  .nosotros .container-botones {
    gap: 40px;
  }
  .nosotros .container-botones .boton-emergente {
    width: 322px;
    height: 73px;
  }
  .nosotros .container-botones .boton-emergente span {
    font-size: 30px;
  }
  /* SECCIÓN SERVICES AUMENTADA PROPORCIONALMENTE */
  .services-section .title-service {
    max-width: 1980px;
    border-radius: 27px 27px 0 0;
  }
  .services-section .title-service .title-h2 {
    font-size: 4rem;
    margin-left: 0;
    margin-bottom: 23px;
  }
  .services-section .title-service .container-p {
    max-width: 1080px;
  }
  .services-section .title-service .container-p p {
    font-size: 1.8rem;
    line-height: 1.7;
    padding-top: 14px;
  }
  .services-section .services {
    max-width: 1980px;
    gap: 18px;
    padding: 63px 54px;
    border-radius: 0 0 27px 27px;
  }
  .services-section .services .service-card {
    width: 585px;
    padding: 41px;
    border-radius: 23px;
    min-height: 720px;
  }
  .services-section .services .service-card::before {
    height: 5px;
  }
  .services-section .services .service-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 18px 54px rgba(53, 122, 255, 0.18);
  }
  .services-section .services .service-card .card-header {
    margin-bottom: 27px;
  }
  .services-section .services .service-card .icon {
    width: 77px !important;
    height: 77px !important;
    border-radius: 16px !important;
    margin-right: 16px !important;
  }
  .services-section .services .service-card .icon img {
    width: 52px !important;
    height: 52px !important;
  }
  .services-section .services .service-card .title-section h3 {
    font-size: 1.8rem !important;
    margin-bottom: 5px;
  }
  .services-section .services .service-card .subtitle {
    font-size: 1.89rem !important;
    line-height: 1.3 !important;
    font-weight: bold;
  }
  .services-section .services .service-card .card-description {
    font-size: 1.44rem;
    line-height: 1.6;
    margin-bottom: 32px;
  }
  .services-section .services .service-card .specifications {
    margin-bottom: 27px;
  }
  .services-section .services .service-card .specs-title {
    font-size: 1.35rem;
    margin-bottom: 16px;
  }
  .services-section .services .service-card .specs-title::before {
    width: 4px;
    height: 18px;
    margin-right: 11px;
  }
  .services-section .services .service-card .specs-list {
    gap: 11px;
    max-height: 270px;
  }
  .services-section .services .service-card .spec-item {
    padding: 11px 14px;
    border-radius: 9px;
    border-left: 4px solid transparent;
  }
  .services-section .services .service-card .spec-item::before {
    font-size: 1.08rem;
    margin-right: 11px;
    width: 18px;
  }
  .services-section .services .service-card .spec-item:hover {
    transform: translateX(5px);
  }
  .services-section .services .service-card .spec-item span {
    font-size: 1.26rem !important;
    font-weight: 500;
  }
  .services-section .services .service-card .card-footer {
    padding-top: 26px;
    margin-top: auto;
  }
  .services-section .services .service-card .details-btn {
    padding: 18px 36px;
    border-radius: 27px;
    font-size: 1.08rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.72px;
  }
  .services-section .services .service-card .details-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 18px rgba(255, 128, 52, 0.4);
  }
  /* SECCIÓN CONTACTO AUMENTADA PROPORCIONALMENTE */
  #contacto {
    padding: 36px 23px;
  }
  #contacto .enterprise-contact-wrapper {
    max-width: 1260px;
  }
  #contacto .enterprise-contact-banner {
    padding: 45px 68px;
  }
  #contacto .enterprise-contact-banner h1 {
    font-size: 3.42rem;
    margin-bottom: 14px;
  }
  #contacto .enterprise-contact-banner p {
    font-size: 1.44rem;
    line-height: 1.4;
  }
  #contacto .enterprise-contact-main {
    padding: 77px 68px;
  }
  #contacto .enterprise-form-layout {
    gap: 45px 68px;
    margin-bottom: 36px;
  }
  #contacto .enterprise-field-wrapper label {
    font-size: 1.44rem;
    margin-bottom: 16px;
    font-weight: 600;
  }
  #contacto .enterprise-field-wrapper input, #contacto .enterprise-field-wrapper select, #contacto .enterprise-field-wrapper textarea {
    padding: 22px 68px 22px 22px;
    font-size: 1.17rem;
    border-radius: 9px;
  }
  #contacto .enterprise-field-wrapper textarea {
    min-height: 126px;
  }
  #contacto .enterprise-field-icon {
    font-size: 27px;
    right: 16px;
  }
  #contacto .enterprise-submit-button {
    padding: 20px 43px;
    font-size: 1.35rem;
    min-width: 162px;
    border-radius: 9px;
  }
  #contacto .enterprise-privacy-notice {
    font-size: 1.17rem;
    line-height: 1.6;
  }
  #contacto .target {
    height: 216px;
    max-width: 1260px;
    margin-top: 18px;
    border-radius: 16px;
    padding: 14px 27px;
  }
  #contacto .target h2 {
    font-size: 38px;
    padding-top: 14px;
  }
  #contacto .target .button-container {
    padding-top: 9px;
  }
  #contacto .target .button-container .cta-button {
    padding: 22px 43px;
    font-size: 20px;
    border-radius: 11px;
  }
  #brochure .text-container h2 {
    font-size: 3.2rem;
  }
  #brochure .text-container p {
    font-size: 2.3rem;
  }
  #brochure .cta-button {
    padding: 26px 38px;
    font-size: 22px;
  }
  #jobModalOverlay {
    /* SOLO CAMBIOS DE TAMAÑOS PARA 2K */
  }
  #jobModalOverlay .job-modal-overlay {
    padding: 30px; /* era 20px */
  }
  #jobModalOverlay .job-modal {
    border-radius: 25px; /* era 15px */
    max-width: 1200px; /* era 700px */
    transform: translateY(50px); /* era 30px */
  }
  #jobModalOverlay .job-modal-header {
    padding: 60px 70px; /* era 30px 40px */
    border-radius: 25px 25px 0 0; /* era 15px 15px 0 0 */
  }
  #jobModalOverlay .job-modal-header h2 {
    font-size: 3.2rem; /* era 2rem */
    margin-bottom: 18px; /* era 8px */
  }
  #jobModalOverlay .job-modal-header p {
    font-size: 1.8rem; /* era 1.1rem */
  }
  #jobModalOverlay .job-modal-close {
    top: 25px; /* era 20px */
    right: 25px; /* era 20px */
    font-size: 1.8rem; /* era 1.5rem */
    width: 42px; /* era 35px */
    height: 42px; /* era 35px */
  }
  #jobModalOverlay .job-modal-body {
    padding: 70px; /* era 40px */
  }
  #jobModalOverlay .job-form-layout {
    gap: 35px 45px; /* era 30px 40px */
    margin-bottom: 35px; /* era 30px */
  }
  #jobModalOverlay .job-field-wrapper label {
    margin-bottom: 20px; /* era 12px */
    font-size: 1.4rem; /* era 0.95rem */
  }
  #jobModalOverlay .job-field-wrapper input,
  #jobModalOverlay .job-field-wrapper textarea {
    padding: 24px 75px 24px 24px; /* era 15px 50px 15px 15px */
    border-radius: 15px; /* era 8px */
    font-size: 1.3rem; /* era 0.8rem */
  }
  #jobModalOverlay .job-field-wrapper textarea {
    min-height: 120px; /* era 100px */
  }
  #jobModalOverlay .job-field-icon {
    right: 24px; /* era 15px */
    font-size: 28px; /* era 18px */
  }
  #jobModalOverlay .file-upload-area {
    border-radius: 12px; /* era 8px */
    padding: 40px 25px; /* era 30px 20px */
  }
  #jobModalOverlay .file-upload-icon {
    font-size: 3rem; /* era 2.5rem */
    margin-bottom: 15px; /* era 10px */
  }
  #jobModalOverlay .file-upload-text {
    font-size: 1.1rem; /* era 0.9rem */
    margin-bottom: 8px; /* era 5px */
  }
  #jobModalOverlay .file-upload-subtext {
    font-size: 1rem; /* era 0.8rem */
  }
  #jobModalOverlay .file-selected {
    border-radius: 8px; /* era 6px */
    padding: 12px 18px; /* era 10px 15px */
    margin-top: 12px; /* era 10px */
  }
  #jobModalOverlay .file-info {
    font-size: 1.1rem; /* era 0.9rem */
  }
  #jobModalOverlay .file-info i {
    margin-right: 10px; /* era 8px */
    font-size: 1.3rem; /* agregado */
  }
  #jobModalOverlay .file-remove {
    font-size: 1.4rem; /* era 1.2rem */
    padding: 4px; /* era 2px */
  }
  #jobModalOverlay .job-form-footer {
    gap: 25px; /* era 20px */
    margin-top: 35px; /* era 30px */
  }
  #jobModalOverlay .job-privacy-notice {
    min-width: 350px; /* era 300px */
    font-size: 1rem; /* era 0.9rem */
  }
  #jobModalOverlay .job-submit-button {
    padding: 24px 55px; /* era 15px 35px */
    border-radius: 15px; /* era 8px */
    font-size: 1.4rem; /* era 1rem */
    min-width: 220px; /* era 160px */
  }
  #jobModalOverlay .success-message {
    padding: 80px 50px; /* era 60px 40px */
  }
  #jobModalOverlay .success-icon {
    font-size: 5rem; /* era 4rem */
    margin-bottom: 25px; /* era 20px */
  }
  #jobModalOverlay .success-title {
    font-size: 2.2rem; /* era 1.8rem */
    margin-bottom: 15px; /* era 10px */
  }
  #jobModalOverlay .success-text {
    margin-bottom: 40px; /* era 30px */
    font-size: 1.2rem; /* agregado */
  }
  #jobModalOverlay .success-button {
    padding: 15px 32px; /* era 12px 25px */
    border-radius: 10px; /* era 8px */
    font-size: 1.1rem; /* era 1rem */
  }
  /* SOLO CAMBIOS DE TAMAÑOS PARA FOOTER 2K */
  #footer {
    height: 400px; /* era 260px */
  }
  #footer .container-row {
    padding: 0 35px; /* era 0 15px */
  }
  #footer .container-row .row .f-logo {
    padding-top: 10px; /* era 10px */
    padding-right: 10px; /* era 10px */
  }
  #footer .container-row .row .f-logo .container-img {
    padding-top: 45px; /* era 20px */
  }
  #footer .container-row .row .f-logo .container-img img {
    height: 95px; /* era 55px */
    padding-top: 20px; /* era 10px */
  }
  #footer .container-row .row .f-logo .text-f {
    font-size: 22px; /* era 14px */
    padding-top: 0.8em; /* era 0.8em */
  }
  #footer .container-row .row .f-logo .container-redes {
    gap: 25px; /* era 12px */
    padding-top: 18px; /* era 8px */
  }
  #footer .container-row .row .f-logo .container-redes i {
    font-size: 32px; /* era 18px */
  }
  #footer .container-row .row .f-info, #footer .container-row .row .f-servicios {
    padding-top: 65px; /* era 32px */
    padding-left: 35px; /* era 15px */
  }
  #footer .container-row .row .f-info h3, #footer .container-row .row .f-servicios h3 {
    font-size: 32px; /* era 18px */
    margin-bottom: 25px; /* era 12px */
    border-bottom: 4px solid #ff8034; /* era 2px */
    padding-bottom: 8px; /* era 4px */
  }
  #footer .container-row .row .f-info ul li, #footer .container-row .row .f-servicios ul li {
    margin-bottom: 14px; /* era 6px */
  }
  #footer .container-row .row .f-info ul li a, #footer .container-row .row .f-servicios ul li a {
    font-size: 24px; /* era 14px */
  }
  #footer .container-row .row .f-contacto {
    padding-top: 65px; /* era 32px */
    padding-left: 35px; /* era 15px */
  }
  #footer .container-row .row .f-contacto h3 {
    font-size: 32px; /* era 18px */
    margin-bottom: 25px; /* era 12px */
    border-bottom: 4px solid #ff8034; /* era 2px */
    padding-bottom: 8px; /* era 4px */
  }
  #footer .container-row .row .f-contacto .contacto-item {
    margin-bottom: 18px; /* era 8px */
  }
  #footer .container-row .row .f-contacto .contacto-item i {
    font-size: 28px; /* era 15px */
    margin-right: 18px; /* era 8px */
    width: 32px; /* era 16px */
  }
  #footer .container-row .row .f-contacto .contacto-item p {
    font-size: 24px; /* era 14px */
  }
  .line-orange {
    height: 30px;
  }
  .line-orange h4 {
    font-size: 21px;
  }
  .ingenoil-scroll-track {
    width: 3px;
    height: 130px;
  }
}/*# sourceMappingURL=style.v4.css.map */