/* =================================================================
   HOJA DE ESTILOS OPTIMIZADA PARA MÓVILES - TORINO COMPLETA
   ================================================================= */

/* Reset y configuración base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevenir scroll horizontal en móviles */
}

/* Estilos específicos para página Torino */
body.torino {
  background: linear-gradient(135deg, #0a0e13, #1b1f24, #2c3e50);
  background-attachment: fixed;
  background-image: url("img/fondo-micro.webp");
  background-size: cover;
  background-position: center;
}

/* =================================================================
   HEADER Y VIDEO DE FONDO - OPTIMIZADO MÓVIL
   ================================================================= */

.torino header {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px; /* Altura mínima para móviles */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.torino .video-container {
  position: absolute;   /* antes estaba relative */
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.torino .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* mantiene proporciones */
}

.torino #video1 {
  opacity: 1;
  z-index: 1;
}

.torino #video2 {
  opacity: 0;
  z-index: 1;
}

/* Botones del header optimizados para móvil */
.torino .buttons {
  position: absolute;
  bottom: 5vh;
  left: 49.5%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
  max-width: 320px;
  padding: 0 1rem;
}

.torino .btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.torino .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.torino .btn:hover::before {
  left: 100%;
}

.torino .btn-primary {
  background: linear-gradient(135deg, #ed3e0e, #bf3d0b);
  color: white;
  border: 2px solid transparent;
  box-shadow: 0 8px 25px rgba(237, 62, 14, 0.3);
}

.torino .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(237, 62, 14, 0.4);
}

.torino .btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #c0741b;
  border: 2px solid #c0741b;
  box-shadow: 0 8px 25px rgba(192, 116, 27, 0.2);
}

.torino .btn-secondary:hover {
  background: linear-gradient(135deg, #c0741b, #d4951f);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(192, 116, 27, 0.4);
}

/* =================================================================
   NAVEGACIÓN PRINCIPAL CON MENÚ HAMBURGUESA
   ================================================================= */

.torino .main-nav {
  background: linear-gradient(90deg, #4e6d75, #2b6275);
  backdrop-filter: blur(15px);
  padding: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.torino .nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.torino .nav-logo img {
  height: 50px;
  width: 90px;
  border-radius: 5px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.torino .nav-logo img:hover {
  transform: scale(1.05);
}

/* Botón hamburguesa */
.torino .nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
}

.torino .nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.torino .nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.torino .nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.torino .nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Enlaces de navegación */
.torino .nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}

.torino .nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.8rem 1rem;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  font-size: 0.9rem;
}

.torino .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #c0741b, #d4951f);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.torino .nav-links a:hover {
  transform: translateY(-2px) scale(1.05);
  color: #2c3e50;
}

/* Overlay para móviles */
.torino .nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  transition: opacity 0.3s ease;
}

/* Prevenir scroll del body cuando el menú está abierto */
body.nav-open {
  overflow: hidden;
}

/* =================================================================
   SECCIONES OPTIMIZADAS PARA MÓVIL
   ================================================================= */

.torino section {
  background: linear-gradient(135deg, #25394c, rgba(18, 20, 22, 0.8));
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  margin: 2rem auto;
  padding: 2rem 1.5rem;
  max-width: 95%;
  text-align: center;
  position: relative;
  scroll-margin-top: 100px; /* Para compensar navbar fijo */
}

.torino section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #55808e, #25394c);
  transform: translateX(-50%);
  border-radius: 2px;
}

.torino section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  margin: 1.5rem 0;
  background: linear-gradient(135deg, #ed3e0e, #c0741b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  filter: drop-shadow(0 2px 4px rgba(237, 62, 14, 0.3));
}

.torino section p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 100%;
  margin: 0 auto 2rem auto;
  color: #ddd;
  opacity: 0.9;
  text-align: left;
}

/* =================================================================
   SERVICIOS OPTIMIZADOS PARA MÓVIL
   ================================================================= */

.torino .services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.torino .service-box {
  background: linear-gradient(135deg, rgba(237, 62, 14, 0.1), rgba(191, 61, 11, 0.15));
  backdrop-filter: blur(15px);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.torino .service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(237, 62, 14, 0.2), rgba(192, 116, 27, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.torino .service-box:hover::before,
.torino .service-box.touch-active::before {
  opacity: 1;
}

.torino .service-box:hover,
.torino .service-box.touch-active {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 57, 76, 0.4);
}

.torino .service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #25394c;
  filter: drop-shadow(0 1px 2px #9e9b9b);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.torino .service-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.torino .service-box h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: rgb(192, 112, 8);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  line-height: 1.3;
  text-align: center;
}

.torino .service-arrow {
  font-size: 1.2rem;
  color: #c0741b;
  font-weight: bold;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.torino .service-box:hover .service-arrow,
.torino .service-box.touch-active .service-arrow {
  transform: translateX(8px);
}

/* =================================================================
   SECCIÓN DE CLIENTES OPTIMIZADA
   ================================================================= */

#rrhh {
  background: linear-gradient(135deg, #25394c, rgba(18, 20, 22, 0.8));
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  margin: 2rem auto;
  padding: 2rem 1.5rem;
  max-width: 95%;
}

#rrhh h2 {
  margin-top: 0;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.client-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  background-color: white;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  height: 90px;
}

.carousel-track {
  display: flex;
  animation: scrollLogos 30s linear infinite;
  height: 90px;
  align-items: center;
}

.carousel-track img {
  height: 60px;
  margin: 0 20px;
  opacity: 0.8;
  transition: all 0.3s ease;
  border-radius: 4px;
  filter: grayscale(0.3);
}

.carousel-track img:hover {
  transform: scale(1.1);
  opacity: 1;
  filter: grayscale(0);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =================================================================
   SECCIÓN COTIZAR OPTIMIZADA PARA MÓVIL
   ================================================================= */

.torino #cotizar {
  background: linear-gradient(135deg, #25394c, rgba(18, 20, 22, 0.8));
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  margin: 2rem auto;
  padding: 2rem 1.5rem;
  max-width: 95%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.torino #cotizar h2 {
  font-size: 2rem;
  margin: 1rem 0 1.5rem 0;
}

.torino #cotizar p {
  font-size: 1.1rem;
  text-align: center;
  margin: 0 auto 1.5rem auto;
}

/* Botón CTA principal optimizado */
.torino .btn-cotizar {
  background: linear-gradient(135deg, #ed3e0e, #bf3d0b);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(237, 62, 14, 0.4);
  border: 2px solid transparent;
  width: 100%;
  max-width: 320px;
  margin: 2rem auto;
}

.torino .btn-cotizar:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(237, 62, 14, 0.6);
}

.torino .btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.torino .btn-cotizar:hover .btn-arrow {
  transform: rotate(180deg);
}

/* Container del formulario optimizado */
.torino .cotizar-form-container {
  max-height: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  margin-top: 1rem;
}

.torino .cotizar-form-container.active {
  max-height: 2000px;
  opacity: 1;
}

.torino .cotizar-form-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(237, 62, 14, 0.05), rgba(27, 31, 36, 0.8));
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 1.5rem;
  margin-top: 2rem;
  position: relative;
}

/* Sección de información */
.torino .cotizar-info-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.torino .cotizar-header h3 {
  color: #ed3e0e;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.torino .cotizar-header p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}

.torino .cotizar-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.torino .benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border-left: 3px solid #2e4a5d;
  transition: all 0.3s ease;
}

.torino .benefit-item:hover {
  background: rgba(237, 62, 14, 0.05);
  border-left-color: #ed3e0e;
}

.torino .benefit-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(237, 62, 14, 0.3));
}

.torino .benefit-text {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

/* Sección del formulario */
.torino .cotizar-form-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.torino .cotizar-form-section .form-header h4 {
  color: #ed3e0e;
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.torino .cotizar-form-section .form-header p {
  color: #bbb;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.torino .cotizar-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.torino .cotizar-form .form-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.torino .cotizar-form input,
.torino .cotizar-form textarea,
.torino .cotizar-form select {
  padding: 1rem;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 100%;
}

.torino .cotizar-form input::placeholder,
.torino .cotizar-form textarea::placeholder {
  color: #999;
}

.torino .cotizar-form select {
  cursor: pointer;
}

.torino .cotizar-form select option {
  background: #2c3e50;
  color: #fff;
}

.torino .cotizar-form input:focus,
.torino .cotizar-form textarea:focus,
.torino .cotizar-form select:focus {
  outline: none;
  border-color: #ed3e0e;
  background: rgba(237, 62, 14, 0.05);
  box-shadow: 0 0 15px rgba(237, 62, 14, 0.2);
}

.torino .cotizar-form textarea {
  resize: vertical;
  min-height: 100px;
  font-family: 'Roboto', sans-serif;
}

.torino .cotizar-form .submit-btn {
  background: linear-gradient(135deg, #ed3e0e, #bf3d0b);
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.5rem auto 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(237, 62, 14, 0.3);
  width: 100%;
  max-width: 280px;
}

.torino .cotizar-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(237, 62, 14, 0.5);
}

/* =================================================================
   CONTACTO OPTIMIZADO PARA MÓVIL
   ================================================================= */

.torino #contacto {
  background: linear-gradient(135deg, #25394c, rgba(18, 20, 22, 0.8));
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  text-align: center;
}

.torino #contacto h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.torino #contacto p {
  font-size: 1.1rem;
  margin: 1.5rem auto;
  color: #fff;
  text-align: center;
}

.torino #contacto strong {
  color: #c0741b;
  text-shadow: 0 0 8px rgba(192, 116, 27, 0.5);
  word-break: break-all; /* Permitir ruptura en emails/teléfonos largos */
}

.btn-link {
  background: linear-gradient(135deg, #ed3e0e, #bf3d0b);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(237, 62, 14, 0.3);
}

.btn-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(237, 62, 14, 0.5);
}

/* =================================================================
   MODALES OPTIMIZADOS PARA MÓVIL
   ================================================================= */

.torino .modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.torino .modal-content {
  position: relative;
  background: linear-gradient(135deg, #1b1f24, #2c3e50);
  margin: 5% auto;
  padding: 1.5rem;
  width: 95%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  max-height: 85vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

.torino .modal.mobile-modal .modal-content {
  margin: 2% auto;
  width: 98%;
  max-height: 95vh;
  border-radius: 10px;
}

.torino .close {
  color: #aaa;
  float: right;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 10;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.torino .close:hover {
  color: #ed3e0e;
  background: rgba(237, 62, 14, 0.2);
}

.torino .modal h3 {
  color: #ed3e0e;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  padding-right: 3rem;
  line-height: 1.3;
}

.torino .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.torino .gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.torino .gallery img:hover {
  transform: scale(1.05);
  border-color: #ed3e0e;
  box-shadow: 0 8px 25px rgba(237, 62, 14, 0.3);
}

.torino .modal-description {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.7;
  text-align: left;
  background: rgba(255,255,255,0.05);
  padding: 1.2rem;
  border-radius: 12px;
  border-left: 3px solid #ed3e0e;
}

/* =================================================================
   VISOR DE IMÁGENES OPTIMIZADO PARA MÓVIL
   ================================================================= */

.image-viewer {
  display: none;
  position: fixed;
  z-index: 2500;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(15px);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.image-viewer-content {
  position: relative;
  max-width: 95%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-viewer-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.8);
  animation: slideIn 0.3s ease;
}

.image-close {
  position: absolute;
  top: -60px;
  right: 0;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  background: rgba(0,0,0,0.7);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-close:hover {
  color: #ed3e0e;
  background: rgba(237, 62, 14, 0.3);
}

.image-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.image-nav:hover {
  background: rgba(237, 62, 14, 0.8);
}

.image-nav.prev {
  left: -60px;
}

.image-nav.next {
  right: -60px;
}

.image-counter {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: bold;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

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

.torino footer {
  background: linear-gradient(135deg, #0a0e13, #1b1f24);
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 2rem;
  border-top: 3px solid #77959d;
  position: relative;
}

.torino footer p {
  color: #ddd;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

/* =================================================================
   BOTÓN WHATSAPP OPTIMIZADO
   ================================================================= */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
  filter: brightness(1.1);
}

/* =================================================================
   RESPONSIVE DESIGN ESPECÍFICO PARA MÓVILES
   ================================================================= */

/* Navegación móvil */
@media (max-width: 768px) {
  .torino .nav-toggle {
    display: flex;
  }

  .torino .nav-links {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100vh;
    background: linear-gradient(180deg, #4e6d75, #2b6275);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 20px 20px 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    transition: right 0.3s ease;
    z-index: 1000;
    gap: 0;
  }

  .torino .nav-links.active {
    right: 0;
  }

  .torino .nav-overlay.active {
    display: block;
    opacity: 1;
  }

  .torino .nav-links a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    font-size: 1rem;
  }

  .torino section {
    scroll-margin-top: 80px;
    padding: 2rem 1.5rem;
  }

  .torino section h2 {
    font-size: 1.8rem;
  }

  .torino .services {
    gap: 1.5rem;
  }

  .torino .service-box {
    min-height: 140px;
  }

  .torino .service-box h3 {
    font-size: 1.3rem;
  }

  .torino .modal-content {
    margin: 10% auto;
    width: 90%;
    padding: 1rem;
    max-height: 80vh;
  }

  .torino .modal h3 {
    font-size: 1.4rem;
    padding-right: 2.5rem;
  }

  .torino .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .torino .gallery img {
    height: 100px;
  }

  .torino .modal-description {
    font-size: 0.9rem;
    padding: 1rem;
  }

  .image-viewer-content img {
    max-height: 70vh;
  }

  .image-close {
    top: -50px;
    font-size: 2rem;
    width: 40px;
    height: 40px;
  }

  .image-nav {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }

  .image-nav.prev {
    left: -50px;
  }

  .image-nav.next {
    right: -50px;
  }

  .image-counter {
    bottom: -50px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }

  .torino footer {
    padding: 1.5rem 0.5rem;
  }

  .torino footer p {
    font-size: 0.8rem;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .torino header {
    min-height: 400px;
  }

  .torino .buttons {
    bottom: 10vh;
    max-width: 280px;
  }

  .torino .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
  }

  .torino .main-nav {
    padding: 0.8rem;
  }

  .torino .nav-logo img {
    height: 40px;
    width: 75px;
  }

  .torino .nav-links {
    width: 200px;
    padding: 70px 15px 15px 15px;
  }

  .torino .nav-links a {
    font-size: 0.9rem;
    padding: 0.8rem 0;
  }

  .torino section {
    margin: 1.5rem auto;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    scroll-margin-top: 70px;
  }

  .torino section h2 {
    font-size: 1.6rem;
    margin: 1rem 0 1.5rem 0;
  }

  .torino section p {
    font-size: 1rem;
  }

  .torino .service-box {
    min-height: 120px;
    padding: 1.5rem 1rem;
  }

  .torino .service-icon img {
    width: 60px;
    height: 60px;
  }

  .torino .service-box h3 {
    font-size: 1.1rem;
  }

  .torino .btn-cotizar {
    padding: 1rem 2rem;
    font-size: 0.9rem;
    max-width: 280px;
  }

  .torino .cotizar-form-wrapper {
    padding: 1.5rem 1rem;
  }

  .torino .cotizar-header h3 {
    font-size: 1.5rem;
  }

  .torino #contacto p {
    font-size: 1rem;
  }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
  .torino .nav-links {
    width: 180px;
  }

  .torino .btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.8rem;
  }

  .torino section {
    padding: 1.2rem 0.8rem;
  }

  .torino section h2 {
    font-size: 1.4rem;
  }

  .torino .service-box {
    padding: 1.2rem 0.8rem;
  }

  .torino .service-icon img {
    width: 50px;
    height: 50px;
  }

  .torino .service-box h3 {
    font-size: 1rem;
  }

  .torino .cotizar-form-wrapper {
    padding: 1.2rem 0.8rem;
  }

  .torino .modal-content {
    width: 95%;
    padding: 0.8rem;
  }

  .torino .gallery {
    grid-template-columns: 1fr;
  }
}

/* =================================================================
   OPTIMIZACIONES DE PERFORMANCE Y ACCESIBILIDAD
   ================================================================= */

/* Reducir movimiento para usuarios sensibles */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .torino .video-bg {
    transition: none;
  }

  .whatsapp-float {
    animation: none;
  }

  .carousel-track {
    animation: none;
  }
}

/* Optimizaciones para dispositivos táctiles */
.touch-device .torino .service-box:hover {
  transform: none;
}

.touch-device .torino .service-box.touch-active {
  transform: translateY(-5px) scale(1.02);
}

/* Estados de carga para lazy loading */
img.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

img.lazy.loaded {
  opacity: 1;
}

/* Mejoras de contraste para accesibilidad */
@media (prefers-contrast: high) {
  .torino section {
    border: 2px solid rgba(255,255,255,0.3);
  }

  .torino .btn {
    border-width: 3px;
  }

  .torino .service-box {
    border: 2px solid rgba(255,255,255,0.2);
  }
}

/* Soporte para modo oscuro del sistema */
@media (prefers-color-scheme: dark) {
  body.torino {
    background: linear-gradient(135deg, #000811, #0f1419, #1a2332);
  }
}

/* =================================================================
   KEYFRAMES Y ANIMACIONES
   ================================================================= */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { 
    transform: translateY(-30px); 
    opacity: 0; 
  }
  to { 
    transform: translateY(0); 
    opacity: 1; 
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sectionFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =================================================================
   ESTADOS DE VALIDACIÓN DEL FORMULARIO
   ================================================================= */

.torino .cotizar-form input:invalid:not(:placeholder-shown),
.torino .cotizar-form textarea:invalid:not(:placeholder-shown),
.torino .cotizar-form select:invalid {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.05);
}

.torino .cotizar-form input:valid:not(:placeholder-shown),
.torino .cotizar-form textarea:valid:not(:placeholder-shown),
.torino .cotizar-form select:valid {
  border-color: #27ae60;
  background: rgba(39, 174, 96, 0.03);
}

/* Estados deshabilitados */
.torino .cotizar-form .submit-btn:disabled {
  background: #666;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.6;
}

.torino .cotizar-form .submit-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* =================================================================
   MEJORAS DE UX PARA MÓVIL
   ================================================================= */

/* Aumentar área de toque para elementos interactivos */
@media (max-width: 768px) {
  .torino .nav-links a,
  .torino .btn,
  .torino .service-box,
  .torino .btn-cotizar {
    min-height: 44px; /* Área mínima recomendada para touch */
  }

  /* Espaciado adicional entre elementos táctiles */
  .torino .nav-links a {
    margin: 0.2rem 0;
  }

  .torino .services {
    gap: 1.8rem;
  }
}

/* Prevenir zoom en inputs en iOS */
@media screen and (max-width: 768px) {
  .torino .cotizar-form input,
  .torino .cotizar-form textarea,
  .torino .cotizar-form select {
    font-size: 16px; /* Previene zoom automático en iOS */
  }
}

/* Mejoras de scrolling suave */
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* Scrolling suave en iOS */
}

/* Optimizaciones para el rendimiento */
.torino .video-bg {
  will-change: opacity;
  transform: translateZ(0); /* Forzar aceleración de hardware */
}

.torino .service-box {
  will-change: transform;
  transform: translateZ(0);
}

.torino .btn {
  will-change: transform;
  transform: translateZ(0);
}

/* =================================================================
   ESTILOS PARA ORIENTACIÓN LANDSCAPE EN MÓVILES
   ================================================================= */

@media screen and (max-height: 500px) and (orientation: landscape) {
  .torino header {
    height: 100vh;
    min-height: 400px;
  }

  .torino .buttons {
    bottom: 8vh;
  }

  .torino section {
    padding: 1.5rem 1rem;
  }

  .torino section h2 {
    font-size: 1.6rem;
    margin: 1rem 0;
  }
}

/* =================================================================
   MEJORAS DE ACCESIBILIDAD
   ================================================================= */

/* Focus visible para navegación por teclado */
.torino .nav-links a:focus,
.torino .btn:focus,
.torino .service-box:focus,
.torino .cotizar-form input:focus,
.torino .cotizar-form textarea:focus,
.torino .cotizar-form select:focus {
  outline: 2px solid #ed3e0e;
  outline-offset: 2px;
}

/* Skip link para navegación por teclado */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #ed3e0e;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
}

.skip-link:focus {
  top: 6px;
}

/* Mejoras de contraste para texto */
.torino section p,
.torino .modal-description {
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

/* =================================================================
   PRINT STYLES
   ================================================================= */

@media print {
  .torino .video-container,
  .whatsapp-float,
  .torino .buttons,
  .torino .main-nav,
  .torino .modal,
  .torino .nav-toggle,
  .torino .nav-overlay {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .torino section {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
  
  .torino section h2 {
    color: #333 !important;
  }
  
  .torino section p {
    color: #333 !important;
  }
}

/* =================================================================
   CLASES DE UTILIDAD
   ================================================================= */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.no-scroll {
  overflow: hidden;
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

.slide-in {
  animation: slideIn 0.5s ease-in-out;
}

/* =================================================================
   LOADING STATES
   ================================================================= */

.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* =================================================================
   ESTILOS ADICIONALES PARA COMPATIBILIDAD COMPLETA
   ================================================================= */

/* Estilos para página de gracias - móvil optimizado */
.gracias-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0e13, #1b1f24, #2c3e50);
  background-attachment: fixed;
  background-image: url("img/fondo-micro.webp");
  background-size: cover;
  background-position: center;
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0;
  padding: 1rem;
}

.gracias-container {
  text-align: center;
  background: linear-gradient(135deg, #3f606f, #25394c);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  max-width: 90%;
  width: 100%;
  max-width: 500px;
}

.gracias-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.success-icon {
  font-size: 3rem;
  color: white;
  background: rgba(255,255,255,0.2);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-weight: bold;
  transition: transform 0.3s ease;
  border: 2px solid rgba(255,255,255,0.3);
}

.gracias-container h1 {
  font-family: 'Oswald', sans-serif;
  color: #b9723b;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}

.gracias-container p {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.sub-message {
  font-size: 0.95rem !important;
  opacity: 0.9;
  font-style: italic;
  margin-bottom: 2rem !important;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.volver-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}

.volver-btn:hover {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  font-size: 0.9rem;
}

.whatsapp-btn img {
  width: 18px;
  height: 18px;
}

.whatsapp-btn:hover {
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Responsive para página de gracias */
@media (max-width: 480px) {
  .gracias-container {
    margin: 1rem;
    padding: 2rem 1.5rem;
  }

  .gracias-container h1 {
    font-size: 1.8rem;
  }

  .success-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .volver-btn,
  .whatsapp-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .gracias-container h1 {
    font-size: 1.6rem;
  }

  .gracias-container p {
    font-size: 1rem;
  }
}


/* ============================================================
   Ajustes responsivos para header Torino
   ============================================================ */

/* MOBILE (máx 768px): ocultar video y usar imagen */
@media (max-width: 768px) {
  .torino .video-container video {
    display: none; /* oculta el video */
  }

  .torino .video-container {
    background-image: url("img/LOGOS/ChatGPT Image 24 ago 2025, 11_44_30 p.m..png"); /* imagen de reemplazo */
    background-size: cover;
    background-position: center;
  }

  .torino .buttons {
    flex-direction: column; /* botones en columna */
    max-width: 320px;
  }
}

/* DESKTOP/TABLET (desde 769px): video visible y botones en fila */
@media (min-width: 769px){
  .torino .buttons {
    flex-direction: row;   /* botones uno al lado del otro */
    justify-content: center;
    max-width: none;
    gap: 2rem;             /* espacio entre botones */
  }

  .torino .btn {
    width: auto;           /* ancho automático */
    min-width: 180px;      /* tamaño mínimo para consistencia */
  }
}


/* ============================================================
   Flecha hacia abajo debajo de los botones
   ============================================================ */
.torino .down-arrow {
  position: absolute;
  bottom: 0vh; /* mismo punto de referencia que los botones */
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  animation: floatArrow 2s infinite ease-in-out;
}

.torino .down-arrow img {
  width: 20px;         /* ajustá según tu diseño */
  height: auto;
  cursor: pointer;
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.4));
}

/* Animación de “flotar” */
@keyframes floatArrow {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* =================================================================
   CONTACTO - FORMULARIO OPTIMIZADO PARA MÓVIL
   ================================================================= */
.contact-container {
  background: linear-gradient(135deg, #25394c, rgba(18, 20, 22, 0.8));
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  margin: 2rem auto;
  padding: 2rem 1.5rem;
  max-width: 95%;
  text-align: left;
  position: relative;
}

.contact-header h2 {
  color: #ed3e0e;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.contact-header h1 {
    color: #bbb;
    font-size: 1rem;
    margin: 1rem auto 2rem auto;
    text-align: center;
}

.contact-cta p {
  color: #bbb;
  font-size: 0.95rem;
  margin: 1rem auto 2rem auto;
  text-align: center;
}

/* Detalles de contacto */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border-left: 3px solid #2e4a5d;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(237, 62, 14, 0.05);
  border-left-color: #ed3e0e;
}

.contact-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(237, 62, 14, 0.3));
}

.contact-label {
  font-weight: bold;
  display: block;
  color: #c0741b;
  text-align: left;
}

.contact-value {
  color: #fff;
  font-size: 0.95rem;
  text-align: left;
}

/* Formulario con el mismo estilo que cotización */
.contact-form-section .form-header h3 {
  color: #ed3e0e;
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.contact-form-section .form-header p {
  color: #bbb;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form .form-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ed3e0e;
  background: rgba(237, 62, 14, 0.05);
  box-shadow: 0 0 15px rgba(237, 62, 14, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Botón igual que cotizar */
.contact-form .submit-btn {
  background: linear-gradient(135deg, #ed3e0e, #bf3d0b);
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.5rem auto 0 auto;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 8px 25px rgba(237, 62, 14, 0.3);
}

.contact-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(237, 62, 14, 0.5);
}




/* =================================================================
   FIN DE LA HOJA DE ESTILOS MÓVIL OPTIMIZADA
   ================================================================= */