/* Estilos base - heredados del index */
:root {
  /* Colores principales */
  --primary-color: #004d99;
  --primary-light: rgba(0, 69, 138, 0.1);
  --primary-dark: #004799;
  
  --secondary-color: #d4af37;
  --secondary-light: rgba(212, 175, 55, 0.1);
  
  /* Escala de grises */
  --dark-color: #1a1a1a;
  --darker-color: #0d0d0d;
  --light-color: #ffffff;
  --lighter-color: #fcfcfc;
  --gray-color: #f5f5f5;
  --gray-dark: #e0e0e0;
  
  /* Texto */
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #f8f8f8;
  
  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  
  /* Bordes */
  --border-radius: 8px;
  --border-radius-lg: 12px;
  
  /* Transiciones */
  --transition-fast: all 0.2s ease;
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  
  /* Espaciados */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
}

/* Estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--gray-color);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* Botones */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #004d99;
  border-color: #EFB810;
  color: white;
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.btn-secondary:hover {
  background-color: #EFB810;
  border-color: #004d99;
  color: white;
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.btn-outline:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.header.shrink {
  padding: 0.5rem 3rem;
  background-color: rgba(255,255,255,0.95);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 70px;
  max-height: 70px;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 1.1rem;
  margin-left: auto;
}

.nav-link {
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link.active {
  color: #f2c94c;
  font-weight: bold;
}

.nav-link i {
  margin-right: 6px;
}

.nav-link:hover {
  color: #d4af37;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #f2c94c, #f2994a);
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-nav-whatsapp {
  background-color: #25D366;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  margin-left: 1rem;
  transition: background-color 0.3s ease;
}

.btn-nav-whatsapp:hover {
  background-color: #1ebe5c;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #d4af37;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transition: left 0.3s ease;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-links.show {
    left: 0;
  }

  .nav-link {
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.2rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  padding-top: 80px; /* Compensa el header fijo */
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--light-color), transparent);
  z-index: 1;
}
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed; /* Opcional para efecto parallax */
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }

  .hero-slideshow .slide {
    background-position: center top;
    background-size: cover;
  }
}



.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-slideshow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}


.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title span {
  color: var(--secondary-color);
  position: relative;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero:hover .hero-title span::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}

.feature-item i {
  color: var(--secondary-color);
}

.hero-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: var(--light-color);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Sección de Servicios */
.services-section {
  padding: 6rem 0;
  background-color: var(--lighter-color);
}

.tarjetas-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem; /* centrado + separación inferior */
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-header h2 span {
  color: var(--secondary-color);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  font-size: 2rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--secondary-color);
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-card p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.service-features {
  text-align: left;
  margin-bottom: 2rem;
}

.service-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

.service-features i {
  color: var(--secondary-color);
  margin-right: 0.5rem;
  font-size: 0.9rem;
  margin-top: 3px;
}

/* Sección de Cotización */
/* Estilos mejorados para la sección de cotización */
.quotation-section {
  padding: 8rem 0;
  color: white;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2e5a 0%, #004d99 100%);
}

.quotation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../static_servicios/img/modalidad.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.15;
  z-index: 0;
}

.quotation-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%);
  z-index: 1;
}

.quotation-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.quotation-text {
  flex: 1;
  min-width: 300px;
}

.section-title {
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  position: relative;
  display: block;
  text-align: center;
  line-height: 1.3;
}

.section-title span {
  color: var(--secondary-color);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.section-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.7;
  text-align: center;
}

.quotation-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.quotation-option {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.quotation-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quotation-option:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.quotation-option:hover::before {
  opacity: 1;
}

.option-icon {
  width: 70px;
  height: 70px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.quotation-option:hover .option-icon {
  transform: scale(1.1) rotate(10deg);
  background: white;
  color: var(--secondary-color);
}

.quotation-option h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.quotation-option h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
}

.quotation-option p {
  margin-bottom: 1.8rem;
  opacity: 0.9;
  line-height: 1.7;
}

.feature-list {
  margin-bottom: 2.5rem;
}

.feature-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 30px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
}

.feature-list i {
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--secondary-color);
  font-size: 0.9rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quotation-option:hover .feature-list li {
  opacity: 1;
}

.btn-option {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--secondary-color);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--secondary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-option:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.quotation-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hover-zoom {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.image-wrapper:hover .hover-zoom {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-wrapper:hover .image-overlay {
  opacity: 1;
}

.image-overlay p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.image-overlay i {
  font-size: 1.2rem;
  color: var(--secondary-color);
}

/* Sección de Proceso Mejorada */
.process-section {
  padding: 8rem 0;
  background-color: var(--lighter-color);
  position: relative;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('static/img/textura-fondo.png') repeat;
  opacity: 0.03;
  z-index: 0;
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.process-step {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.step-number-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: white;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
}

.step-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 2px;
  background: var(--secondary-color);
  opacity: 0.3;
  z-index: 1;
}

.step-content {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step:hover .step-content {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--secondary-color);
}

.process-step:hover .step-number {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: scale(1.1);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.process-step:hover .step-icon {
  background: var(--secondary-color);
  color: white;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 10px;
}

.process-step h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-step:hover h3::after {
  opacity: 1;
}

.process-step p {
  color: var(--text-medium);
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .process-step {
    flex: 1 1 180px;
  }
  
  .step-connector {
    display: none;
  }
}

@media (max-width: 992px) {
  .quotation-content {
    flex-direction: column;
  }
  
  .quotation-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto 3rem;
  }
  
  .process-step {
    flex: 1 1 160px;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .quotation-section,
  .process-section {
    padding: 5rem 0;
  }
  
  .quotation-options {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .quotation-option {
    padding: 1.8rem;
  }
  
  .process-step {
    flex: 1 1 100%;
    max-width: 300px;
  }
}

/* Animaciones mejoradas */
@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

.animate {
  opacity: 0;
}

.fadeIn {
  animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Efecto de aparición al hacer scroll */
.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(30px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==== Contacto - Formulario Personalizado ==== */
.contacto-form .form-container {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 3rem;
}

.contacto-form .form-image {
  flex: 1 1 50%;
  background: #f5f5f5;
}

.contacto-form .contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contacto-form .form-content {
  flex: 1 1 50%;
  padding: 3rem;
  background-color: #fff;
}

.contacto-form .form-content h1 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contacto-form .form-content h2 {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid var(--gray-dark);
  border-radius: var(--border-radius);
  background: white;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group label {
  position: absolute;
  top: -10px;
  left: 14px;
  background: white;
  padding: 0 5px;
  font-size: 0.85rem;
  color: var(--text-medium);
  pointer-events: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}
.form-group select {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid var(--gray-dark);
  border-radius: var(--border-radius);
  background: white;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  appearance: none;
}


.submit-btn {
    background: #4a89dc;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    width: 100%;
}

.submit-btn:hover {
    background: #3a70c2;
    transform: translateY(-2px);
}

/* Modal de éxito */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .form-container {
        flex-direction: column;
    }
    
    .form-image {
        height: 200px;
    }
}






.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.contact-info-icon {
  background: rgba(255, 126, 95, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.contact-info-content {
  flex: 1;
}

.contact-info-content h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: white;
}

.contact-info-content p, 
.contact-info-content a {
  opacity: 0.8;
  font-size: 0.9rem;
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-content a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  margin-top: 1.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition);
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: #ff6a4b;
}
/* Footer */
.footer {
  background: linear-gradient(135deg, #1a202c, #2d3748);
  color: var(--light-color);
  padding: 5rem 5% 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1518455027359-f3f8164ba6bd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
  opacity: 0.05;
  z-index: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-col {
  margin-bottom: 2rem;
}

.footer-col h3 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-col p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
  opacity: 0.8;
  transition: var(--transition);
  position: relative;
  padding-left: 20px;
}

.footer-links li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  transition: var(--transition);
  opacity: 0;
}

.footer-links li:hover {
  opacity: 1;
  padding-left: 25px;
}

.footer-links li:hover::before {
  opacity: 1;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-links i {
  margin-right: 0.8rem;
  color: var(--secondary-color);
  width: 20px;
  text-align: center;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.contact-info-icon {
  background: rgba(255, 126, 95, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.contact-info-content {
  flex: 1;
}

.contact-info-content h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: white;
}

.contact-info-content p, 
.contact-info-content a {
  opacity: 0.8;
  font-size: 0.9rem;
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-content a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-bottom p {
  margin-bottom: 1rem;
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
}

.logo-image {
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .quotation-content {
    flex-direction: column;
  }
  
  .quotation-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .process-step:not(:last-child)::after {
    display: none;
  }
  
  .form-container {
    flex-direction: column;
  }
  
  .form-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transition: var(--transition);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.show {
    left: 0;
  }
  
  .hero {
    padding-top: 80px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 1rem;
  }
  
  .logo-img {
    height: 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .quotation-options {
    grid-template-columns: 1fr;
  }
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate {
  animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}


/* === Modo de Trabajo === */
.modos-trabajo {
  background-color: #f9f9f9;
  padding: 4rem 1.5rem;
  text-align: center;
}

.modos-trabajo h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.modos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.modo {
  flex: 1 1 300px;
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.modo:hover {
  transform: translateY(-5px);
}

.modo h3 {
  font-size: 1.5rem;
  color: #004d99;
  margin-bottom: 1rem;
}

.modo p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}


/* === Tipos de Servicios === */
.tipos-servicio {
  background-color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.tipos-servicio h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.servicio-item {
  background-color: #fafafa;
  border-left: 5px solid #EFB810;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: left;
  transition: box-shadow 0.3s ease;
}

.servicio-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.servicio-item h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 0.8rem;
}

.servicio-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}


/* === Cotización === */
.cotizacion {
  background: linear-gradient(180deg, #fefefe 0%, #f3f3f3 100%);
  padding: 4rem 1.5rem;
  text-align: center;
}

.cotizacion h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.cotizacion p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cotizacion .btn-azul {
  margin-top: 2rem;
}




/* Estilos mejorados para la sección de servicios */
.servicios-profy {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f4f8 100%);
  position: relative;
  overflow: hidden;
}

.servicios-profy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('static/img/textura-fondo.png') repeat;
  opacity: 0.03;
  z-index: 0;
}

.servicios-profy .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem; /* centrado + separación inferior */
}


.titulo-seccion {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.titulo-seccion span {
  color: var(--secondary-color);
  position: relative;
}

.titulo-seccion::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
}

.tarjetas-servicios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tarjeta {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(0, 77, 153, 0.1);
}

.tarjeta:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 77, 153, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}

.imagen-hover {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.imagen-hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tarjeta:hover .imagen-hover img {
  transform: scale(1.1);
}

.servicio-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.contenido {
  padding: 1.8rem;
  position: relative;
}

.servicio-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(212, 175, 55, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -50px auto 1.5rem auto;
  color: var(--primary-color);
  font-size: 1.5rem;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tarjeta:hover .servicio-icon {
  background: var(--secondary-color);
  color: white;
  transform: scale(1.1) rotate(10deg);
}

.tarjeta h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
}

.tarjeta p {
  color: var(--text-medium);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.servicio-features {
  margin-bottom: 2rem;
}

.servicio-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.servicio-features i {
  color: var(--secondary-color);
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.acciones {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-azul, .btn-amarillo {
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-azul {
  background: var(--primary-color);
  color: rgb(255, 255, 255);
  border: 2px solid var(--primary-color);
}

.btn-azul:hover {
  background: rgb(255, 187, 0);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 77, 153, 0.2);
}

.btn-amarillo {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.btn-amarillo:hover {
  background: rgb(0, 60, 255);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

/* Animaciones */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .tarjetas-servicios {
    grid-template-columns: 1fr 1fr;
  }
  
  .titulo-seccion {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .tarjetas-servicios {
    grid-template-columns: 1fr;
  }
  
  .acciones {
    flex-direction: column;
  }
  
  .btn-azul, .btn-amarillo {
    width: 100%;
    justify-content: center;
  }
}

