/* Reset y Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-red-orange: #ff5900; /* naranja fuerte tirando a rojo */
  --primary-red-orange-2: #ff5900; /* intermedio rojo-naranja */
  --red-orange-glow: #ff5900; /* resplandor naranja-rojo */
  --white: #ffffff;
  --light-gray: #ffffff;
  --border: #00000091;
  --text-dark: #333;
  --text-muted: #5e5e5e;
  --text-white: #fff;
  --whatsapp: #25d366;
}
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}
.navbar {
  padding: 1rem 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-section {
  display: flex;
  align-items: center;
  gap: 35px;
}
.logo-placeholder {
  width: 62px;
  height: 62px;
  background: var(--light-gray);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-red-orange);
}
.logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.logo-text h2 {
  color: var(--primary-red-orange);
  font-weight: 800;
  font-size: 1.35rem;
}
.logo-text i {
  color: var(--red-orange-glow);
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: all 0.25s;
  padding: 8px 14px;
  border-radius: 6px;
}
.nav-menu a:hover {
  color: var(--primary-red-orange);
  background: var(--light-gray);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #bbb;
  margin: 3px 0;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 80vh;
  background: #ffffff;
  overflow: hidden;
}
.spark-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(255, 60, 0, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 179, 0, 0.15) 0%,
      transparent 50%
    );
  animation: sparkle 8s infinite;
}
.hero-overlay {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}
.main-title-container {
  text-align: center;
  margin-bottom: 3rem;
}
.mega-title {
  display: inline-block;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(255, 60, 0, 0.5);
  animation: titleGlow 2s infinite;
}
.shine-icon {
  color: #ff3c00;
  margin-right: 15px;
  animation: flash 3s infinite;
}
.service-types {
  margin-top: 1.5rem;
}
.service-item {
  display: block;
  font-size: 2rem;
  color: #ffb300;
  margin: 0.5rem 0;
  text-shadow: 0 0 15px rgba(255, 179, 0, 0.3);
  animation: slideIn 0.5s ease-out both;
}
.service-item:nth-child(2) {
  animation-delay: 0.2s;
}
.service-item:nth-child(3) {
  animation-delay: 0.4s;
}
.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}
.feature-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}
.feature-badge:hover {
  transform: translateY(-5px);
}
.pulse-icon {
  color: #ff3c00;
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}
.feature-badge span {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}
.hero-cta {
  text-align: center;
  margin-top: 3rem;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #ff3c00;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(255, 60, 0, 0.3);
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 60, 0, 0.4);
}
.rotating-tool {
  animation: rotate 5s linear infinite;
}
.bounce-right {
  animation: bounceRight 1.5s infinite;
}
@keyframes titleGlow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(255, 60, 0, 0.5);
  }
  50% {
    text-shadow: 0 0 25px rgba(255, 60, 0, 0.8);
  }
}
@keyframes flash {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes slideIn {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes bounceRight {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes sparkle {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes fadeInLetter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Alternancia de secciones */
.section {
  padding: 70px 0;
}
.section--orange {
  background: #f5f5f5;
  border-radius: 18px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.section--dark {
  background: var(--white);
}
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
}
.section--orange .section-title {
  color: var(--text-white);
}
.section--dark .section-title {
  color: var(--text-dark);
}

/* Descripción + Mapa */
.description-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}
.section--orange .description-box h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}
.section--dark .description-box h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.section--orange .editable-content {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.1rem;
  border-radius: 12px;
  border-left: 5px solid rgba(255, 255, 255, 0.4);
}
.section--dark .editable-content {
  background: var(--light-gray);
  padding: 1.1rem;
  border-radius: 12px;
  border-left: 5px solid var(--primary-red-orange);
}
.section--orange .editable-content p {
  font-size: 1.05rem;
  color: var(--text-white);
  line-height: 1.8;
}
.section--dark .editable-content p {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.8;
}
.section--orange .map-box h3 {
  color: var(--text-white);
  margin-bottom: 0.6rem;
  font-weight: 800;
}
.section--dark .map-box h3 {
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  font-weight: 800;
}
.map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
}
.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.section--orange .map-note {
  color: var(--text-white);
  margin-top: 0.45rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section--dark .map-note {
  color: var(--text-dark);
  margin-top: 0.45rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-ubicacion {
  padding: 2rem 1rem 1rem 1rem;
  text-align: center;
}
.ubicacion-horario {
  font-size: 1.2rem;
  color: #333;
  background: #fff;
  border-radius: 10px;
  padding: 1.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: inline-block;
}

/* 3 Columnas - Tarjetas claras */
.columns-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s, border-color 0.25s;
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-4px);
}
.service-image {
  height: 200px;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
}
.service-content {
  padding: 1.25rem;
}
.service-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-red-orange);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-list {
  list-style: none;
  padding: 0;
}
.service-list li {
  padding: 0.45rem 0;
  color: var(--text-dark);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.service-list li:last-child {
  border-bottom: none;
}
.center-column {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
}
.form-container h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary-red-orange);
  margin-bottom: 0.35rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.9rem;
  font-size: 0.98rem;
}
.contact-form {
  width: 100%;
}
.input-label {
  display: block;
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.inline-options {
  display: flex;
  gap: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.form-group {
  margin-bottom: 0.85rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.25s;
  background: var(--white);
  color: var(--text-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red-orange-glow);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 84px;
}
.help-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: block;
  margin-top: 0.35rem;
}
.hidden {
  display: none;
}
.btn-form {
  width: 100%;
  background: var(--whatsapp);
  color: #fff;
  font-size: 1rem;
  padding: 14px;
  margin-top: 0.25rem;
}
.btn-form:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.form-note {
  text-align: center;
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-note i {
  color: #10b981;
}

/* Carrusel */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.slide {
  min-width: 100%;
  height: 360px;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.55);
}
.carousel-btn.prev {
  left: 12px;
}
.carousel-btn.next {
  right: 12px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 0;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
}
.carousel-dots button.active {
  background: var(--primary-red-orange);
}

/* Footer claro */
.footer {
  background: var(--white);
  color: var(--text-dark);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border);
}
.footer-content {
  text-align: center;
  margin-bottom: 2rem;
}
.footer-section h3 {
  margin-bottom: 0.8rem;
  color: var(--primary-red-orange);
}
.footer-section p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.contact-info {
  margin-top: 1.2rem;
}
.contact-info p {
  margin: 0.45rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-dark);
}
.contact-info i {
  color: var(--primary-red-orange);
}
.contact-info a {
  color: var(--primary-red-orange);
  text-decoration: none;
}
.contact-info a:hover {
  opacity: 0.85;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  text-align: center;
  color: var(--text-muted);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
  z-index: 1000;
  transition: all 0.25s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  background: #22c55e;
}

/* Modern Form Styles */
.modern-form-section {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.modern-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.modern-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #f3f3f3;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 2rem 1.5rem;
  border: 1px solid #e0e0e0;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.rotating-icon {
  font-size: 2.5em;
  color: #ff3c00;
  margin-bottom: 15px;
  animation: rotate 4s linear infinite;
}

.animated-icon {
  animation: pulse 2s infinite;
}

.form-header h3 {
  color: #ff6634;
  font-family: "Wallpoet", "Poppins", Arial, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-header .form-subtitle {
  color: #333;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.modern-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.robotic-header {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 2rem;
  color: #ff6634;
  text-align: center;
  margin-bottom: 2.2rem;
  letter-spacing: 1px;
  font-weight: 700;
}

.animated-input {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6634;
  font-size: 1.2rem;
  pointer-events: none;
}

.animated-input input,
.animated-input textarea {
  padding-left: 44px;
}

.animated-input input,
.animated-input textarea,
.modern-select {
  width: 100%;
  padding: 12px 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s;
}

.animated-input input:focus,
.animated-input textarea:focus,
.modern-select:focus {
  border-color: #ff6634;
  box-shadow: 0 0 15px rgba(255, 60, 0, 0.3);
  outline: none;
}

.modern-label {
  color: #fff;
  margin-bottom: 8px;
  display: block;
}

.modern-submit-btn {
  position: relative;
  background: #ff6634;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 102, 52, 0.15);
  transition: background 0.2s, box-shadow 0.2s;
}

.modern-submit-btn:hover {
  background: #d94c00;
  box-shadow: 0 4px 16px rgba(255, 102, 52, 0.25);
}

.btn-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
}

.modern-submit-btn:hover .btn-hover {
  animation: shine 1s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

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

.title-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem auto;
  max-width: 1200px;
}

.title-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  transition: transform 0.3s;
}

.title-col:hover {
  transform: translateY(-10px);
}

.title-col.highlight {
  background: rgba(255, 255, 255, 0.15);
}

.mega-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.title-col span {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.mega-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #25d366;
  color: white;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
  font-size: 1.2rem;
  padding: 1rem 2rem;
  margin-top: 2rem;
}

.mega-whatsapp-btn:hover {
  transform: scale(1.05);
}

.whatsapp-icon {
  font-size: 2.2rem;
  animation: bounce 2s infinite;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  animation: pulse-ring 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.feature-badge {
  padding: 1.2rem 2rem;
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero {
  background: linear-gradient(135deg, #ff3c00 0%, #ff6b00 100%);
  padding: 2rem 0;
}

.letter-title {
  margin-bottom: 3rem;
  text-align: center;
}

.letter-container {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  max-width: 900px;
  margin: 0 auto;
}

.letter-container span {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeInLetter 0.5s ease forwards;
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-col {
  background: #ff6634;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 102, 52, 0.2);
}

.service-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 102, 52, 0.3);
}

.service-icon {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.service-col h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-col p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.mega-whatsapp-btn {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .service-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .letter-container span {
    font-size: 1.2rem;
  }

  .service-col {
    padding: 1.5rem;
  }

  .mega-whatsapp-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap");

.robotic-title {
  font-family: "Wallpoet", "Orbitron", sans-serif;
  font-size: 3.5rem;
  line-height: 1.4;
  color: #333333;
  text-align: center;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
  background: rgba(240, 240, 240, 0.92);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1),
    inset 0 0 20px rgba(255, 102, 0, 0.2);
  border: 2px solid rgba(255, 102, 0, 0.1);
  text-shadow: 2px 2px 0px rgba(255, 102, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.robotic-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shine 3s infinite;
}

.hero-main-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  padding: 3rem 2rem 2rem 2rem;
}
.hero-left,
.hero-right {
  flex: 1 1 350px;
  min-width: 320px;
  max-width: 500px;
}
.hero-left {
  background: #f3f3f3;
  border-radius: 18px;
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card {
  background: #f3f3f3;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.robotic-title {
  font-family: "Wallpoet", "Poppins", Arial, sans-serif;
  font-size: 2.2rem;
  background: rgba(80, 80, 80, 0.6);
  color: #fff;
  padding: 1.2rem 1rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 2px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  text-shadow: 0 2px 8px #ff6634, 0 0px 2px #fff;
}
.hero-desc {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}
.service-columns {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.service-col {
  background: #232323;
  border-radius: 12px;
  padding: 1rem 0.7rem;
  text-align: center;
  flex: 1 1 0;
  box-shadow: 0 2px 8px rgba(255, 102, 52, 0.08);
  color: #fff;
}
.service-col h3,
.service-col p {
  color: #fff;
}
.service-columns {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
}
.hero-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
}
.mega-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background: #25d366;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.7rem 1.2rem;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.mega-whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.25);
  background: #128c7e;
}
.whatsapp-icon {
  font-size: 1.5rem;
  margin-right: 0.7rem;
}
@media (max-width: 900px) {
  .hero-main-columns {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
  .hero-left,
  .hero-right {
    max-width: 100%;
    min-width: 0;
  }
  .robotic-title {
    font-size: 1.5rem;
    padding: 0.8rem 0.5rem;
  }
  .service-icon {
    font-size: 1.5rem;
  }
}

/* Cambios propuestos */
.modern-contact-form .form-group input,
.modern-contact-form .form-group textarea,
.modern-contact-form .form-group select {
  background: #eaeaea;
  border: 1.5px solid #ff6634;
  color: #222;
  border-radius: 8px;
  font-size: 1rem;
  padding: 0.7rem 1rem;
  margin-bottom: 0.7rem;
  box-shadow: 0 0 6px 0 #ff6634;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.modern-contact-form .form-group input::placeholder,
.modern-contact-form .form-group textarea::placeholder {
  color: #666;
  opacity: 1;
}

.modern-contact-form .form-group input:focus,
.modern-contact-form .form-group textarea:focus,
.modern-contact-form .form-group select:focus {
  border-color: #ff6634;
  box-shadow: 0 0 12px 0 #ff6634;
  outline: none;
}

.modern-contact-form .form-group label,
.modern-contact-form .form-group select,
.modern-contact-form .form-group option {
  color: #222;
}
.service-col .service-icon {
  color: #ff6634 !important;
}
.hero-separator {
  width: 100%;
  text-align: center;
  margin: 0 0 2rem 0;
  position: relative;
}
.separator-text {
  display: inline-block;
  background: #ff6634;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.5rem 2.5rem;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(255, 102, 52, 0.15);
  position: relative;
  z-index: 2;
}
.hero-separator:before,
.hero-separator:after {
  content: "";
  display: inline-block;
  width: 18%;
  height: 3px;
  background: #ff6634;
  vertical-align: middle;
  margin: 0 1.2rem;
  border-radius: 2px;
  z-index: 1;
}
.warranty-icon.service-icon {
  font-size: 2rem;
  color: #ff6634 !important;
  margin-right: 0.4rem;
  vertical-align: middle;
}
.hero-cta-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.service-card,
.hero-left,
.modern-form-container {
  background: #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === PATCH 2025-09-17: Centrar texto en formulario y evitar superposición con íconos === */
.modern-contact-form .animated-input input,
.modern-contact-form .animated-input textarea {
  text-align: center !important;
  padding-left: 44px !important;
  padding-right: 44px !important;
}
.modern-contact-form .animated-input input::placeholder,
.modern-contact-form .animated-input textarea::placeholder {
  text-align: center;
}
.modern-contact-form .modern-select {
  text-align: center !important;
  text-align-last: center;
  -moz-text-align-last: center;
  padding-left: 44px !important;
  padding-right: 44px !important;
}
.modern-contact-form .input-icon {
  left: 14px;
  pointer-events: none;
}

/* === PATCH 2025-09-17: Estilos de modal e imagen miniatura del mapa === */
.thumb {
  width: 240px;
  height: auto;
  cursor: zoom-in;
  border-radius: 6px;
  box-shadow: 0 4px 16px #0002;
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal.open { display: flex; }
.modal-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
}
.modal img {
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px #0006;
}
.modal-close {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #000c;
  color: #fff;
  border: none;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
}
.modal-close:focus { outline: 2px solid #fff6; }

/* Honeypot oculto para bots */
.hidden-hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
