@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #1e1e1e;
  background-color: #ffffff;
  line-height: 1.4;
  overflow-x: hidden;
}

:root {
  --color-primario: #5a6b1c;
  --color-secundario: #17821f;
  --color-auxiliar: #acd342;
  --color-texto-principal: #333333;
  --color-texto-secundario: #5c5c5c;
  --color-texto-claro: #ffffff;
  --color-fondo-alternativo: #efefef;
  --color-fondo-base: #f7f7f7;
  --color-fondo-oscuro: #323a3a;
  --color-input-bg: rgba(255, 255, 255, 0.1); /* Fondo sutil para inputs */
  --color-input-border: rgba(255, 255, 255, 0.3);
  --font-base: "Manrope", sans-serif;
  --padding-seccion: 5.625rem;
  --padding-seccion-mobile: 3.5rem;
  --ancho-maximo: 1280px;
}

.container {
  margin: 0 auto;
  padding: 7.5rem 5rem;
}

h1,
h2,
h3 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.75rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.4rem;
}

h3 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 1.2rem;
}

.section-title {
  color: var(--color-primario);
  text-align: center;
}

.section-subtitle {
  color: var(--color-texto-principal);
  font-weight: 800;
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 4rem;
}

.btn {
  padding: 0.9rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.btn-primary {
  border-color: transparent;
  color: var(--color-texto-principal);
  background: var(--color-auxiliar);
}

.btn-primary:hover {
  background-color: #93b839;
  color: var(--color-texto-claro);
  transform: translateY(-2px);
  border: transparent;
}

.btn-primary-white {
  border-color: transparent;
  color: var(--color-texto-principal);
  background: white;
}

.btn-primary-white:hover {
  background-color: var(--color-auxiliar);
  transform: translateY(-2px);
  border: transparent;
}

.btn-secondary {
  border: 2px solid var(--color-auxiliar);
  color: var(--color-texto-principal);
  background: transparent;
}

.btn-secondary:hover {
  background-color: rgba(172, 211, 66, 0.2);
  transform: translateY(-2px);
}

.btn-secondary-white {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-secondary-white:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .container {
    padding: 7.5rem 2rem;
  }
}
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding-block: 20px;
  background-color: transparent;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}

.navbar-container {
  max-width: 1600px;
  margin: 0 auto;
  padding-inline: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo svg {
  height: 50px;
  width: auto;
}

.navbar-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-menu ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-menu a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-texto-claro);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.navbar-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-auxiliar);
  transition: width 0.3s ease-out;
}

.navbar-menu a:hover::after {
  width: 100%;
}

.navbar-menu a:hover {
  color: var(--color-auxiliar);
}

.navbar.scrolled .navbar-menu a {
  color: var(--color-texto-principal);
}

.navbar.scrolled .navbar-menu a::after {
  background-color: var(--color-primario);
}

.navbar.scrolled .navbar-menu a:hover {
  color: var(--color-primario);
}

.navbar-cta {
  padding: 10px 20px;
  background-color: white;
  color: var(--color-secundario);
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar.scrolled .navbar-cta {
  background-color: var(--color-auxiliar);
  color: var(--color-texto-principal);
}

.navbar.scrolled .logo-fill {
  fill: var(--color-primario);
}

.navbar-toggle,
.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .navbar-container {
    padding-inline: 24px;
  }
  .navbar-desktop {
    display: none;
  }
  .navbar-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 1001;
  }
  .navbar.scrolled .navbar-toggle {
    color: var(--color-texto-principal);
  }
  .mobile-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 24px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
  }
  .mobile-menu nav a {
    color: var(--color-texto-principal);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  .mobile-menu nav a:hover {
    color: var(--color-auxiliar);
  }
  .mobile-menu .navbar-cta {
    display: block;
    text-align: center;
    background-color: var(--color-auxiliar);
    color: var(--color-texto-principal);
  }
}
.hero {
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  height: 100vh;
  background-image: url("../img/hero/Ingeniero-trabajando-automatizacion-industrial-hero-section.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
  backdrop-filter: blur(0px);
  transition: all 0.4s ease;
  z-index: 2;
}

.hero .hero__contenido {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  text-align: center;
  height: 100vh;
  width: 100vw;
  color: var(--color-texto-claro);
  margin-top: 3rem;
}

.hero__contenido h1 {
  width: 90vw;
  margin-bottom: 2rem;
}

.typed-text {
  background: linear-gradient(90deg, #acd342, #22ba2c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: bold;
}

.cursor {
  display: inline-block;
  font-weight: bold;
  color: white;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
.btn-outline {
  margin-top: 1rem;
  border: 2px solid white;
  color: white;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: white;
  color: var(--color-texto-principal);
  transform: translateY(-2px);
}

.hero__hexagons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .btn.btn-outline {
    padding: 12px 40px;
  }
}
.benefits {
  background-color: var(--color-fondo-base);
  position: relative;
  z-index: 2;
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 40px;
  text-align: center;
}

.benefits__icon {
  margin-bottom: 1rem;
}

.icon-beneficio {
  width: 56px;
  height: 56px;
}

.benefits__item h3 {
  color: var(--color-texto-principal);
  margin-bottom: 1rem;
}

.benefits__item p {
  font-size: 1rem;
  color: var(--color-texto-principal);
}

.services {
  background-color: var(--color-fondo-alternativo);
  text-align: center;
  position: relative;
  z-index: 5;
}

.container__services {
  width: 100vw;
  padding: 7.5rem 0;
}

@media (max-width: 768px) {
  .titular-services {
    padding: 0 3rem;
  }
}
.carousel-container {
  overflow: hidden;
  margin: 0;
  /* 💡 Tip: Usar un ancho del 100% del viewport si está dentro de un contenedor con padding */
  width: 100vw;
  /* 💡 Tip: Usar margin-left/right negativo para compensar el padding del contenedor padre si existe */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-left: clamp(20px, 4vw, 80px);
  padding-right: clamp(20px, 4vw, 80px);
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 30px 80px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel__card {
  position: relative;
  width: 280px;
  min-width: 280px;
  height: 450px;
  border-radius: 20px;
  text-align: left;
  flex: 0 0 auto;
  overflow: hidden;
  transition: transform 0.4s ease;
  cursor: pointer;
  z-index: 1;
  will-change: transform;
  text-decoration: none;
}

.carousel__card:hover {
  transform: scale(1.03);
  z-index: 2;
}

.card-bg {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
}

/* =========================================================
   ESTILOS BASE Y TRANSICIÓN (APLICA A AMBOS CAROUSELES)
   ========================================================= */
/* Esta regla asegura que todas las tarjetas que usan .card-bg tienen la transición de fade-in */
.carousel__card .card-bg,
.carousel__card--portfolio .card-bg {
  /* Mantén tus estilos de background-size, background-position, etc. */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Define la transición para la opacidad (el efecto fade-in) */
  transition: opacity 0.5s ease-in-out;
  /* Placeholder: se puede usar un color de fondo mientras carga */
  background-color: #333;
}

/* --------------------------------------------------------- */
/* LAZY LOADING RULE: OCULTA LAS IMÁGENES AL INICIO          */
/* --------------------------------------------------------- */
/* Esta regla es CRUCIAL y aplica a CUALQUIER tarjeta con la clase lazy-bg-card */
.lazy-bg-card .card-bg {
  background-image: none; /* Evita la carga inicial de la URL */
  opacity: 0; /* Oculta el fondo para preparar el fade-in */
}

/* =========================================================
   REGLAS ESPECÍFICAS DE CARGA INMEDIATA (NO LAZY)
   ========================================================= */
/* 1. CARGA INMEDIATA: Tarjeta de Servicios 1 (DEBE SER VISIBLE) */
.card-service-1 .card-bg {
  background-image: url("../img/servicios-cards/sistema-de-automatizacion-modernizacion-de-sistemas-service-card.jpg");
  opacity: 1;
}

/* 2. CARGA INMEDIATA: Tarjeta de Portfolio 1 (DEBE SER VISIBLE) */
.card-portfolio-1 .card-bg {
  background-image: url("../img/portfolio/modernizacion-de-sistemas-nutroline-proyecto-card.jpg");
  opacity: 1;
}

/* =========================================================
   REGLAS DE CARGA DIFERIDA (DEBEN ESTAR VACÍAS DE background-image)
   ========================================================= */
/* REGLAS DE SERVICIOS (Asegúrate de haber eliminado el background-image 
   de las tarjetas 2 a 8 para que hereden la regla .lazy-bg-card .card-bg)
*/
.card-service-2 .card-bg,
.card-service-3 .card-bg,
.card-service-4 .card-bg,
.card-service-5 .card-bg,
.card-service-6 .card-bg,
.card-service-7 .card-bg,
.card-service-8 .card-bg {
  /* DEBEN ESTAR VACÍAS: NO HAY background-image AQUÍ */
}

/* REGLAS DE PORTFOLIO (Asegúrate de eliminar el background-image 
   de las tarjetas 2 a 6 para que hereden la regla .lazy-bg-card .card-bg)
*/
.card-portfolio-2 .card-bg,
.card-portfolio-3 .card-bg,
.card-portfolio-4 .card-bg,
.card-portfolio-5 .card-bg,
.card-portfolio-6 .card-bg {
  /* DEBEN ESTAR VACÍAS: NO HAY background-image AQUÍ */
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(66, 210, 13);
  mix-blend-mode: multiply;
  opacity: 0.9;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.carousel__card:hover .card-overlay {
  opacity: 0;
}

.img-overlay-black {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1) 90%);
  z-index: 1;
}

.card-overlay-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(66, 210, 13);
  mix-blend-mode: multiply;
  opacity: 0.9;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.carousel__card--portfolio:hover .card-overlay-1 {
  opacity: 0;
}

.img-overlay-portfolio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 90%);
  z-index: 1;
}

.carousel__card h3 {
  position: absolute;
  top: 35px;
  left: 25px;
  right: 25px;
  z-index: 2;
  color: var(--color-texto-claro);
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  text-align: left;
}

.carousel__card--portfolio {
  position: relative;
  width: 280px;
  min-width: 280px;
  height: 450px;
  border-radius: 20px;
  text-align: left;
  flex: 0 0 auto;
  overflow: hidden;
  transition: transform 0.4s ease;
  cursor: pointer;
  z-index: 1;
  will-change: transform;
  text-decoration: none;
}

.carousel__card--portfolio:hover {
  transform: scale(1.03);
  z-index: 2;
}

.card__content {
  position: relative;
  z-index: 3;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.card-tag-logo {
  height: 7rem;
  width: 7rem;
  align-self: flex-start;
  margin-bottom: -25px;
  margin-top: -15px;
}

.card__content h3 {
  z-index: 2;
  color: var(--color-texto-claro);
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
}

.card-plus {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  background-color: var(--color-secundario);
  color: var(--color-texto-claro);
  font-size: 20px;
  border-radius: 50%;
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.card-plus i {
  font-size: 18px;
  color: var(--color-texto-claro);
}

.carousel__controls {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.carousel__arrow {
  background-color: #ffffff;
  border: 1px solid #eee;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel__arrow i {
  font-size: 16px;
  color: #333;
}

.carousel__arrow:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

.carousel__arrow:disabled {
  opacity: 0.5;
  cursor: default;
  transform: none;
}

@media (max-width: 768px) {
  .carousel {
    padding: 20px 24px;
  }
  .card {
    min-width: 250px;
    height: 400px;
  }
  .card h3 {
    font-size: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
}
.clientes {
  background-color: var(--color-fondo-oscuro);
  position: relative;
  z-index: 2;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0;
  column-gap: 0.8rem;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.client-logo {
  width: 12.5rem;
  min-width: 9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.25rem;
}

.client-logo img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .clients-grid {
    gap: 0 0;
    width: 100%;
  }
  .client-logo {
    width: 8rem;
    min-width: unset;
  }
  .client-logo img {
    max-width: 6rem;
  }
}
.about-gsap-container {
  height: 500vh;
  position: relative;
  z-index: 3;
}

.about-gsap-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-fondo-base);
}

.about-gsap-main-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  color: var(--color-primario);
  text-align: center;
  width: 80%;
  z-index: 10;
}

.about-gsap-scene {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: var(--ancho-maximo);
  margin: 0 auto;
}

.about-gsap-cobot {
  position: absolute;
  bottom: -70vh;
  left: -40vw;
  height: 150vh;
  max-height: 1300px;
}
.about-gsap-cobot img {
  height: 100%;
  width: auto;
}

.about-gsap-text-wrapper {
  position: absolute;
  top: 60vh;
  left: 50vw;
  transform: translateY(-50%);
  width: 40%;
  max-width: 500px;
}

.about-gsap-text {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 800;
  color: var(--color-texto-principal);
}
.about-gsap-text .text-intro {
  display: block;
  color: var(--color-secundario);
  font-weight: 600;
  margin-bottom: 8px;
}

.about-gsap-cta {
  padding: 0.9rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  border-color: transparent;
  color: var(--color-texto-principal);
  background: var(--color-auxiliar);
  transition: all 0.3s ease;
}

.about-gsap-cta:hover {
  background-color: #93b839;
  transform: translateY(-2px);
  border: transparent;
}

@media (max-width: 768px) {
  .about-gsap-cobot {
    position: absolute;
    bottom: -35vh;
    left: -80vw;
    max-width: 500px;
    height: auto;
    max-height: 500px;
    pointer-events: none;
    will-change: transform;
  }
  .about-gsap-cobot img {
    display: block;
    height: auto;
    width: 100%;
    object-fit: contain;
  }
  .about-gsap-text-wrapper {
    position: absolute;
    top: 55vh;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 80%;
  }
  .about-gsap-text {
    text-align: center;
  }
}
.portfolio {
  background-color: var(--color-fondo-alternativo);
  text-align: center;
  position: relative;
  z-index: 5;
}

.site-footer {
  background-color: #1a202c;
  color: #a0aec0;
  font-size: 0.8rem;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-copyright p {
  margin: 0;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.7rem;
}

.footer-nav a {
  color: #e2e8f0;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.3s ease-out;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: #e2e8f0;
  font-size: 18px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  color: #ffffff;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-right {
    flex-direction: column;
    gap: 24px;
  }
}
/* --- Estructura Base para TODOS los Overlays --- */
.modal-overlay,
.modal-services-overlay {
  position: fixed;
  inset: 0; /* Abarca toda la pantalla */
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start; /* Alinea arriba para permitir scroll interno */
  justify-content: center;
  z-index: 1000;
  overflow-y: auto; /* Mantiene el scroll solo para el modal */
  padding: 60px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}

.modal-overlay.active,
.modal-services-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* --- Contenedor Blanco  --- */
.modal-container {
  background: #fff;
  width: 100%;
  max-width: 70vw;
  padding: 80px 100px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: modalFadeIn 0.4s ease;
  margin: auto; /* Esto centra la caja vertical y horizontalmente */
}

/* --- Scroll para Modales Largos (solo aplica al de servicios) --- */
.modal-overlay {
  align-items: flex-start; /* Alinea arriba para permitir scroll */
  overflow-y: auto;
}

/* --- Botón de Cierre (estilo unificado) --- */
.modal-close-btn,
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f0f0f0;
  color: #333;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close-btn:hover,
.modal-close:hover {
  background-color: #e0e0e0;
  transform: scale(1.1);
}

/* --- Contenido Interno de los Modales --- */
.modal-content {
  text-align: left;
}

.modal__service-tag {
  display: inline-block;
  background-color: var(--color-secundario);
  color: var(--color-texto-claro);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.logo-tag {
  width: 7rem;
}

.logo-tag-byasa {
  width: 8rem;
}

.logo-tag-aplitecno {
  width: 9rem;
}

.logo-tag-horizontal {
  width: 7rem;
  height: 5rem;
}

.modal__title {
  font-size: 48px;
  width: 90%;
  color: var(--color-primario);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 60px;
}

.modal__content-blocks {
  display: grid;
  gap: 24px;
}

.modal__content-card {
  background-color: var(--color-fondo-alternativo);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  color: var(--color-texto-principal);
}

.modal__content-card p {
  padding: 60px 100px 60px 100px;
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
}

.modal__content-card ul {
  padding: 0 100px 60px 100px;
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  list-style: none;
}

.modal__content-card li::before {
  content: "\f058"; /* El código Unicode del ícono que quieres usar */
  font-family: "Font Awesome 6 Free"; /* Asegúrate que coincida con tu versión */
  font-weight: 900; /* Necesario para los íconos sólidos */
  margin-right: 20px; /* Espacio entre el ícono y el texto */
  color: var(--verde-turquesa); /* O el color que prefieras */
  margin-top: 2px;
}

.modal__content-card li {
  display: flex; /* <-- Activa Flexbox */
  align-items: flex-start; /* <-- Alinea el ícono y el texto en la parte superior */
  margin-bottom: 20px;
}

.modal__content-card b {
  color: var(--color-primario);
}

.modal__card-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Estilos para la comparación de imágenes */
/* --- Estilos para la Comparación de Imágenes (Corregido) --- */
.image-comparison {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
}

/* Contenedor que envuelve a ambas imágenes */
.image-comparison__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* La imagen de "Antes" (ocupa todo el espacio por defecto) */
.image-comparison__before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* La imagen de "Después" (se superpone y se recorta con el slider) */
.image-comparison__after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%; /* Inicia a la mitad */
  height: 100%;
  overflow: hidden; /* Oculta la parte de la imagen que no debe verse */
}

.image-comparison img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Asegura que la imagen llene el espacio sin deformarse */
  position: absolute;
  top: 0;
  left: 0;
}

.image-comparison__after img {
  width: 100vw; /* Ajusta según el tamaño de tu imagen base */
  max-width: none;
}

.image-comparison__label {
  position: absolute;
  top: 10px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 600;
  user-select: none; /* Evita que el texto se seleccione al arrastrar */
}

.image-comparison__before .image-comparison__label {
  right: 10px;
}

.image-comparison__after .image-comparison__label {
  right: 10px;
}

/* La línea deslizadora */
.image-comparison__slider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: white;
  cursor: ew-resize; /* Cursor de mover horizontalmente */
  z-index: 10;
}

/* El círculo para arrastrar */
.image-comparison__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-comparison__handle::before,
.image-comparison__handle::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent var(--color-auxiliar) transparent transparent;
  border-width: 5px 5px 5px 0;
  transform: translateX(-5px);
}

.image-comparison__handle::after {
  border-color: transparent transparent transparent var(--color-auxiliar);
  border-width: 5px 0 5px 5px;
  transform: translateX(5px);
}

.modal__apps-block {
  text-align: center;
  margin-top: 20px;
  padding-top: 48px;
}

.modal__subtitle {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primario);
  margin-bottom: 40px;
}

.modal__apps-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 80px 0;
}

.modal__app-item {
  border: 1px solid #bbf7d0;
  color: var(--color-secundario);
  background-color: #f0fdf4;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
}

.modal__cta-question {
  color: var(--color-primario);
  text-align: center;
  margin-bottom: 60px;
  max-width: 95%;
}

.modal__cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 4rem 0 1rem 0;
  flex-wrap: wrap;
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: var(--color-texto-principal);
  flex-shrink: 0;
}

.modal__cta-button.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-auxiliar);
  color: var(--color-texto-principal);
  padding: 0 45px;
  height: 50px;
  border-radius: 50px;
  border-color: transparent;
  text-decoration: none;
  font-weight: 600;
  min-height: 70px;
  transition: all 0.3s ease;
  line-height: 1.3;
  text-align: left;
}

.modal__cta-button.whatsapp-btn:hover {
  background-color: #93b839;
  transform: translateY(-2px);
  border: transparent;
}

.modal__cta-button.btn-ver-mas {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  color: var(--color-texto-principal);
  padding: 0 45px;
  height: 50px;
  border-radius: 50px;
  border: 2px solid var(--color-auxiliar);
  text-decoration: none;
  font-weight: 600;
  min-height: 70px;
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1.3;
  text-align: left;
}

.modal__cta-button.btn-ver-mas:hover {
  background-color: rgba(172, 211, 66, 0.2);
  transform: translateY(-2px);
}

.modal__cta-separator {
  font-weight: 600;
  color: #9ca3af;
}

.modal__qr-code figure {
  margin: 0;
}

.modal__qr-code img {
  display: block;
  width: 130px;
  height: auto;
  margin-inline: auto;
}

.modal__qr-code figcaption {
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-texto-principal);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  /* --- ESTILOS RESPONSIVE PARA MODALES --- */
  .modal-overlay,
  .modal-services-overlay {
    /* Eliminamos el padding para que el modal use el 100% del viewport */
    padding: 2rem 0;
    /* 🛑 Desactivamos la alineación vertical a flex-start */
    align-items: flex-start;
    /* 🛑 Desactivamos el centrado horizontal para permitir 100% de ancho */
    justify-content: flex-start; /* O flex-end, pero NO center */
  }
  /* Ajusta el padding y el ancho máximo de las cajas de los modales */
  .modal-services {
    max-width: 100vw;
    padding: 40px 0;
  }
  .modal-container {
    max-width: 100vw;
    padding: 4rem 2rem;
  }
  .modal__service-tag {
    font-size: 14px;
    margin-bottom: 1rem;
  }
  .modal__title {
    font-size: 32px;
    width: 100%;
    margin-bottom: 32px;
  }
  .modal__subtitle {
    font-size: 18px;
  }
  /* Ajusta el padding y tamaño de texto dentro de las tarjetas grises */
  .modal__content-card p,
  .modal__content-card ul {
    padding: 32px 24px;
    font-size: 16px;
    line-height: 1.6;
  }
  .modal__content-card ul {
    padding-bottom: 24px;
  }
  /* Ajusta la altura de la imagen comparativa */
  .image-comparison {
    height: 250px;
  }
  /* Ajusta los textos y listas de la sección de "Aplicaciones" o "Tecnologías" */
  .modal__apps-block {
    margin-top: 40px;
    padding-top: 32px;
  }
  .modal__apps-list {
    margin-bottom: 48px;
  }
  .modal__subtitle,
  .modal__cta-question {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .modal__cta-question {
    max-width: 100%;
  }
  /* --- Oculta el QR y el separador "ó" en móvil --- */
  .modal__cta-separator,
  .modal__qr-code {
    display: none;
  }
  /* Centra el botón de WhatsApp restante */
  .modal__cta-container {
    justify-content: center;
  }
  .modal__cta-button.whatsapp-btn {
    padding: 0.75rem 2rem;
  }
}
.hero_nosotros {
  position: relative;
  height: 220vh;
  background-image: url("../img/nosotros/hero-nosotros-danam.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero_nosotros__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
  z-index: 2;
}

.hero_nosotros__contenido {
  position: absolute;
  padding: 0 5rem;
  top: 25vh;
  left: 5%;
  z-index: 3;
  color: white;
  max-width: 90%;
}

.hero_nosotros__contenido h1 {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 35px;
}

.hero_nosotros__contenido p {
  font-size: 1.2rem;
  color: rgba(245, 245, 245, 0.8);
  line-height: 1.6;
  width: 60%;
  font-weight: 600;
  margin-bottom: 35px;
}

/* Segundo bloque alineado a la derecha */
.hero_nosotros__contenido--right {
  padding: 90vh 0 20vh 60vh;
  text-align: left;
}

.nosotros-tag {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  color: rgba(245, 245, 245, 0.8);
  margin-bottom: 1rem;
}

.hero_nosotros__contenido--right h2 {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 35px;
}

.hero_nosotros__contenido--right p {
  width: 80%;
}

.valores-nosotros {
  position: relative;
  height: auto;
  background-color: #fff;
  background-size: cover;
  background-position: center;
  min-height: 100%;
  overflow: hidden;
}

.valores-nosotros__contenido {
  position: relative;
  z-index: 3;
  color: #333;
}

.valores-nosotros__contenido h1 {
  font-size: clamp(2rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 45px;
}

.valores-nosotros__contenido--right {
  padding: 0 0 0 60vh;
  text-align: left;
}

.valores-nosotros__contenido--right p {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 35px;
  color: #5c5c5c;
  width: 100%;
}

.valores-nosotros__contenido-acento {
  color: var(--color-primario);
}

.parallax-hero {
  position: relative;
  height: 70vh;
  background-image: url("../img/nosotros/automatizacion-industria-4-0-nosotros.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.parallax-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
  z-index: 2;
}

.impact-metrics {
  background-color: #fff;
  color: var(--color-texto-principal);
  padding: 6rem 5%;
  text-align: center;
}

.impact-metrics__container {
  max-width: 1200px;
  margin: 0 auto;
}

.impact-metrics__header {
  margin-bottom: 4rem;
}

.impact-metrics__tag p {
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(0.75rem, 1vw, 1.25rem);
  color: var(--color-texto-secundario);
  margin-bottom: 1rem;
}

.impact-metrics__tag1 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(0.75rem, 1vw, 1.25rem);
  color: var(--color-texto-secundario);
  margin-bottom: 1rem;
}

.impact-metrics__titulo {
  font-family: var(--font-principal, "Manrope", sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.3;
  color: var(--color-primario);
}

.impact-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.impact-metrics__item {
  text-align: center;
}

.impact-metrics__numero {
  font-family: "VT323", monospace;
  font-size: clamp(3rem, 10vw, 8rem);
  color: var(--color-texto-principal, #333);
  line-height: 1;
  position: relative;
}

.impact-metrics__numero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 6px;
}

.impact-metrics__descripcion {
  font-family: var(--font-principal, "Manrope", sans-serif);
  font-size: clamp(1rem, 1vw + 0.75rem, 1.25rem);
  color: var(--color-texto-secundario, #5c5c5c);
  line-height: 1.6;
}

.impact-metric__numero-especial {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "VT323", monospace;
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--color-texto-principal, #333);
  line-height: 1;
  position: relative;
}

.ubicacion-operacion {
  position: relative;
  height: auto;
  background-color: var(--color-fondo-alternativo);
  background-size: cover;
  background-position: center;
  min-height: 100%;
  overflow: hidden;
}

.ubicacion-operacion__contenido {
  position: relative;
  z-index: 3;
  color: #333;
  max-width: 100%;
}

.ubicacion-operacion__tag {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 30px;
}

.ubicacion-operacion__contenido h1 {
  font-size: clamp(2rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 45px;
}

.ubicacion-operacion__parrafo {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #5c5c5c;
  width: 100%;
}

.ubicacion-operacion__contenido-acento {
  color: var(--color-primario);
}

/* === CTA Final - Danam === */
.cta-final {
  position: relative;
  overflow: hidden;
  background: var(--color-secundario);
  color: #f8fafc;
  padding: 6rem 1.5rem;
  text-align: center;
}

/* Contenido principal */
.cta-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-tag {
  color: var(--color-texto-claro);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-text {
  font-size: clamp(1rem, 1vw + 0.8rem, 1.2rem);
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Botones */
.cta-buttons-nosotros-pagina {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: clamp(1.8rem, 5vw, 2.3rem);
  }
  .cta-text {
    font-size: 1rem;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}
/* Las media queries para la estructura responsiva no cambian */
@media (max-width: 900px) {
  .impact-metrics__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 500px) {
  .impact-metrics__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .impact-metric__numero-especial {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "VT323", monospace;
    font-size: clamp(2rem, 6vw, 7rem);
    color: var(--color-texto-principal, #333);
    line-height: 1;
    position: relative;
  }
  .impact-metrics__item {
    text-align: center;
  }
  .impact-metrics__numero::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .parallax-hero__overlay h1 {
    font-size: 40px;
  }
  .parallax-hero__overlay p {
    font-size: 18px;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .hero_nosotros__contenido {
    top: 20vh;
    padding: 0 2rem;
  }
  .hero_nosotros__contenido h1 {
    font-size: 2rem;
  }
  .hero_nosotros__contenido p {
    font-size: 1rem;
    width: 100%;
    margin-bottom: 35px;
  }
  .hero_nosotros__contenido--right {
    padding: 80vh 2rem 0 2rem;
    text-align: left;
  }
  .nosotros-tag {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
  .hero_nosotros__contenido--right h2 {
    font-size: 1.3rem;
    margin-bottom: 35px;
  }
  .valores-nosotros__contenido--right {
    padding: 0 0 0 0;
    text-align: left;
  }
  .valores-nosotros__contenido--right p {
    font-size: 1rem;
    line-height: 1.4;
    width: 100%;
  }
  .ubicacion-operacion__parrafo {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
/* ===================================================
   ESTILOS PÁGINA DE CONTACTO - DANAM
   =================================================== */
/* --- Layout Principal --- */
.contacto-main {
  background-color: var(--color-fondo-oscuro);
  color: var(--color-texto-claro);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacto-container {
  width: 100%;
  margin: 0 auto;
  padding: 40px;
}

/* --- Encabezado --- */
.contacto-tag {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-auxiliar);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.contacto-header {
  color: var(--color-texto-claro);
  margin-bottom: 4rem;
}

.contacto-header .resaltado-blanco {
  color: var(--color-texto-claro);
  font-weight: 800;
}

.contacto-header .resaltado-verde {
  color: var(--color-auxiliar);
  font-weight: 800;
}

/* --- Formulario General --- */
.formulario-contacto {
  width: 100%;
}

.form-group {
  margin-bottom: 25px;
}

/* Labels solo para inputs de texto */
.form-field > label,
.form-group > label[for=mensaje] {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-texto-claro);
}

/* Inputs de texto, email, teléfono y textarea */
input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--color-input-border);
  background-color: var(--color-input-bg);
  color: var(--color-texto-claro);
  border-radius: 8px;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

input:focus,
textarea:focus {
  border-color: var(--color-auxiliar);
  outline: none;
  box-shadow: 0 0 8px rgba(172, 211, 66, 0.3);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* --- Campos en Línea (Nombre/Apellido, Email/Teléfono) --- */
.form-group--inline {
  display: flex;
  gap: 30px;
}

.form-field {
  flex: 1;
}

/* --- Radio Buttons --- */
.radio-group-title {
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-texto-claro);
}

.radio-group {
  display: flex;
  gap: 30px;
  align-items: center;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Radio button nativo estilizado */
.radio-option input[type=radio] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--color-auxiliar);
  flex-shrink: 0;
}

.radio-option label {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-texto-claro);
  cursor: pointer;
  user-select: none;
  margin: 0;
}

.radio-option:hover label {
  color: var(--color-auxiliar);
}

/* --- Botón y Acciones --- */
.form-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

/* En tu contacto.css */
button[type=submit].btn-primary {
  /* Fuerza que se comporte como inline-block */
  display: inline-block;
  /* Elimina estilos por defecto del button */
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  appearance: none;
  /* Ahora aplica los estilos de .btn-primary */
  padding: 0.9rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 1rem;
  transition: all 0.3s ease;
  border-color: transparent;
  color: var(--color-texto-principal);
  background: var(--color-auxiliar);
}

button[type=submit].btn-primary:hover {
  background-color: #93b839;
  transform: translateY(-2px);
  border: transparent;
}

.form-nota {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* --- Media Queries (Adaptación Móvil) --- */
@media (max-width: 768px) {
  .contacto-main {
    padding: 100px 0 60px;
  }
  .contacto-header h1 {
    font-size: 36px;
  }
  .contacto-container {
    padding: 30px 20px;
    width: 95%;
  }
  .contacto-tag {
    font-size: 14px;
  }
  /* En móvil, los campos dejan de estar en línea */
  .form-group--inline {
    flex-direction: column;
    gap: 0;
  }
  .radio-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .form-nota {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .contacto-header h1 {
    font-size: 28px;
  }
  .contacto-container {
    padding: 20px 15px;
  }
  input[type=text],
  input[type=email],
  input[type=tel],
  textarea {
    font-size: 14px;
    padding: 12px;
  }
}

/*# sourceMappingURL=style.css.map */
