/* ============ VARIABLES Y RESET ============ */
:root {
  --color-primary: #5ce1e6; /* Celeste claro */
  --color-secondary: #3ebde8; /* Azul turquesa */
  --color-accent: #519f44; /* Verde esmeralda */
  --color-white: #ffffff; /* Blanco puro */
  --color-dark: #333333; /* Texto oscuro */
  --color-light: #f8f8f8; /* Fondo claro */
  --header-height: 70px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--color-light);
  color: var(--color-dark);
  line-height: 1.6;
}

/* ============ COMPONENTES REUTILIZABLES ============ */
/* Botones */
.btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border: none;
}

.btn-primary:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-outline:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-accent {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  transition: all 0.3s ease;
}

.btn-outline-accent:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

/* ============ HEADER ============ */
header {
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 8px 0;
  width: 100%;
  height: var(--header-height);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  min-width: max-content;
  transition: transform 0.2s;
}

.logo-link:hover {
  transform: scale(1.03);
}

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

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
  white-space: nowrap;
}

.logo-text span {
  color: var(--color-accent);
}

nav {
  flex: 1;
  overflow-x: auto;
  padding: 4px 0;
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 18px;
  justify-content: center;
  align-items: center;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: var(--color-accent);
}

nav ul li a:hover::after {
  width: 100%;
}

.header-buttons {
  display: flex;
  gap: 12px;
  min-width: max-content;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-dark);
  cursor: pointer;
  padding: 5px;
}

.nav-menu-header {
  display: none;
}

.nav-close-btn {
  display: none;
}

.nav-footer {
  display: none;
}

/* Nuevos estilos para los botones en el menú de navegación */
.nav-header-buttons {
  display: none;
}

.nav-btn {
  font-size: 14px;
  padding: 8px 12px;
  white-space: nowrap;
}

/* Responsive Header */
@media (max-width: 992px) {
  .header-container {
    flex-wrap: nowrap;
    gap: 12px;
    padding: 10px 15px;
  }

  .mobile-menu-toggle {
    display: block;
    order: 0;
    z-index: 1001;
  }

  .logo-link {
    order: 1;
    flex: 1;
    justify-content: center;
  }

  .header-buttons {
    display: none;
  }

  nav.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    padding: 0;
    transition: left 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
  }

  nav.nav-menu.active {
    left: 0;
  }

  .nav-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-header-buttons {
    display: flex;
    gap: 10px;
    margin-right: 15px;
  }

  .nav-close-btn {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-dark);
    cursor: pointer;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    flex: 1;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav ul li a.nav-link {
    padding: 15px;
    display: block;
    font-size: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  nav ul li a.nav-link::after {
    display: none;
  }

  nav ul li a.nav-link:hover {
    background-color: rgba(81, 159, 68, 0.1);
  }

  .nav-footer {
    display: flex;
    justify-content: center;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-social {
    display: flex;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .nav-header-buttons {
    gap: 8px;
  }

  .nav-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  .nav-btn i {
    margin-right: 4px;
  }

  nav ul li a.nav-link {
    font-size: 16px;
    padding: 12px;
  }
}

/* ============ TRACKING SECTION ============ */
.tracking {
  background-color: var(--color-white);
  padding: 40px 20px;
  position: relative;
  z-index: 1;
  margin-top: -30px;
}

.tracking-container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tracking h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.tracking-form {
  display: flex;
  gap: 10px;
  /* Añadimos esto para que los elementos internos se distribuyan */
  flex-wrap: wrap; /* Permitimos que los elementos pasen a la siguiente línea en pantallas pequeñas */
}

.tracking-form input {
  flex-grow: 1; /* El input ocupará el espacio disponible */
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
  min-width: 0; /* Permite que el input se encoja si es necesario */
}

.tracking-form input:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 2px rgba(62, 189, 232, 0.2);
}

.tracking-form button {
  /* Modificamos el ancho del botón para que no sea fijo */
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-white);
  border: none;
  white-space: nowrap; /* Evita que el texto del botón se rompa */
}

.tracking-form button:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Media query para pantallas más pequeñas (ej. celulares) */
@media (max-width: 600px) {
  .tracking-form {
    flex-direction: column; /* Apilamos el input y el botón verticalmente */
  }

  .tracking-form button {
    width: 100%; /* El botón ocupa todo el ancho disponible */
  }

  .tracking-form input {
    margin-bottom: 10px; /* Espacio entre el input y el botón */
  }
}

/* ============ SERVICES SECTION ============ */
.services {
  padding: 80px 20px;
  background-color: var(--color-light);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-secondary);
  margin: 15px auto 0;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(92, 225, 230, 0.2);
}

.service-card-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  font-size: 50px;
  color: var(--color-accent);
  margin-bottom: 20px;
  text-align: center;
}

.service-card h3 {
  color: var(--color-dark);
  margin-bottom: 15px;
  text-align: center;
  font-size: 22px;
}

.service-card p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
  flex: 1;
}

/* ============ ABOUT SECTION ============ */
.about {
  padding: 100px 20px;
  background-color: #f9fbfe;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.about-image-container {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  align-items: stretch;
}

.about-image-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 100%;
  height: auto;
  align-self: stretch;
}

.about-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.05));
}

.about-badge {
  position: absolute;
  bottom: -25px;
  left: 30px;
  background: linear-gradient(135deg, #5CE1E6, #3EBDE8);
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(92, 225, 230, 0.4);
  z-index: 2;
}

.badge-content {
  text-align: center;
}

.badge-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

.about-text-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.text-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-text-content h3 {
  font-size: 32px;
  color: #0b3056;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-description p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.about-features {
  margin: 40px 0;
  display: grid;
  gap: 25px;
}

.feature-item {
  display: flex;
  gap: 20px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(92, 225, 230, 0.1), rgba(62, 189, 232, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  color: #3EBDE8;
}

.feature-text h4 {
  font-size: 18px;
  color: #0b3056;
  margin-bottom: 8px;
}

.feature-text p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0 0 0;
}

.stat-item {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #3EBDE8;
  margin-bottom: 5px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.about-button-container {
  margin-top: 40px;
  padding-top: 20px;
}

.btn-about {
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(62, 189, 232, 0.3);
}

  /* ============ MVV SECTION ============ */
  .mvv-premium {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fcff, #e6f4f9);
    position: relative;
    overflow: hidden;
  }

  .mvv-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover;
    opacity: 0.03;
    z-index: 0;
  }

  .mvv-premium-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .mvv-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .mvv-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    z-index: 1;
    height: 380px; /* Altura fija para todos los cards */
    display: flex;
    flex-direction: column;
  }

  .mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  }

  .card-ornament {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(92, 225, 230, 0.1), rgba(62, 189, 232, 0.2));
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    z-index: -1;
  }

  .card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
  }

  .mission-card .card-icon {
    background: linear-gradient(135deg, #5CE1E6, #3EBDE8);
    box-shadow: 0 10px 20px rgba(92, 225, 230, 0.3);
  }

  .vision-card .card-icon {
    background: linear-gradient(135deg, #0b3056, #1c5b8f);
    box-shadow: 0 10px 20px rgba(11, 48, 86, 0.3);
  }

 /* ============ MVV SECTION ============ */
.mvv-premium {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fcff, #e6f4f9);
  position: relative;
  overflow: hidden;
}

.mvv-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover;
  opacity: 0.03;
  z-index: 0;
}

.mvv-premium-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mvv-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mvv-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  z-index: 1;
  height: 380px; /* Altura fija para todos los cards */
  display: flex;
  flex-direction: column;
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-ornament {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(92, 225, 230, 0.1), rgba(62, 189, 232, 0.2));
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: -1;
}

.card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: white;
}

.mission-card .card-icon {
  background: linear-gradient(135deg, #5CE1E6, #3EBDE8);
  box-shadow: 0 10px 20px rgba(92, 225, 230, 0.3);
}

/* Eliminamos la decoración con forma de ojo */
.mission-decoration {
  display: none;
}

/* También ocultamos cualquier SVG dentro de la tarjeta de misión */
.mission-svg {
  display: none;
}

.vision-card .card-icon {
  background: linear-gradient(135deg, #0b3056, #1c5b8f);
  box-shadow: 0 10px 20px rgba(11, 48, 86, 0.3);
}

/* Mejoras para la card de valores */
.values-card .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.values-card .card-icon {
  background: linear-gradient(135deg, #519F44, #3e7e35);
  box-shadow: 0 10px 20px rgba(81, 159, 68, 0.3);
  margin-bottom: 15px;
}

.values-card h3 {
  font-size: 22px;
  color: #0b3056;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

/* Rediseño de la cuadrícula de valores */
.values-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 10px;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border-radius: 8px;
  text-align: center;
  background-color: rgba(81, 159, 68, 0.05);
  transition: all 0.3s ease;
}

.value-item:hover {
  background-color: rgba(81, 159, 68, 0.15);
  transform: translateY(-3px);
}

.value-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(81, 159, 68, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #519F44;
  margin-bottom: 8px;
}

.value-item span {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  display: block;
}

/* Responsive design mejorado */
@media (max-width: 1200px) {
  .mvv-premium-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .mvv-premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-card {
    grid-column: span 2;
  }
  
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .mvv-premium {
    padding: 60px 15px;
  }
  
  .mvv-premium-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .values-card {
    grid-column: span 1;
    height: auto;
    min-height: 380px;
  }
  
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .value-icon {
    width: 32px;
    height: 32px;
    font-size: 15px;
    margin-bottom: 6px;
  }
}

@media (max-width: 576px) {
  .mvv-card {
    height: auto;
    min-height: 320px;
    padding: 25px 20px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .value-item {
    padding: 10px 5px;
  }
  
  .value-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .value-item span {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mvv-card {
    padding: 20px 15px;
  }
}

/* Ocultar todos los elementos decorativos en las tarjetas */
.mission-decoration,
.vision-decoration,
.values-decoration,
.mission-svg,
.vision-line,
.values-dots {
  display: none !important;
}

/* ============ FAQ SECTION ============ */
.faq-premium {
  padding: 80px 20px;
  background-color: #f9fbfe;
  position: relative;
}

.faq-premium-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.faq-premium-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.faq-illustration {
  display: none;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: rgba(92, 225, 230, 0.05);
}

.faq-question:hover {
  background-color: rgba(92, 225, 230, 0.1);
}

.question-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(92, 225, 230, 0.1), rgba(62, 189, 232, 0.2));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #3EBDE8;
  flex-shrink: 0;
}

.question-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.question-text h3 {
  font-size: 18px;
  color: #0b3056;
  margin: 0;
  font-weight: 600;
}

.question-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(92, 225, 230, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #3EBDE8;
  transition: all 0.3s ease;
}

.faq-item.active .question-toggle {
  transform: rotate(180deg);
  background-color: #3EBDE8;
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.answer-content {
  padding: 0 20px 20px 75px;
}

.answer-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.answer-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 15px;
}

.detail-item i {
  color: #519F44;
}

.storage-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.feature-badge {
  background-color: rgba(81, 159, 68, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #519F44;
}

.feature-badge i {
  font-size: 12px;
}

.answer-actions {
  margin-top: 20px;
}

/* Responsive FAQ */
@media (min-width: 992px) {
  .faq-premium-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .faq-illustration {
    display: block;
    position: sticky;
    top: 100px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: fit-content;
  }
  
  .faq-illustration img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
  }
  
  .faq-illustration:hover img {
    transform: scale(1.03);
  }
  
  .answer-content {
    padding: 0 25px 25px 85px;
  }
}

@media (max-width: 576px) {
  .faq-question {
    padding: 15px;
  }
  
  .question-text h3 {
    font-size: 16px;
  }
  
  .answer-content {
    padding: 0 15px 15px 65px;
  }
}

/* ============ CONTACT SECTION ============ */
.contact {
  padding: 80px 20px;
  background-color: #f9fbfe;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-form-container {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

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

.form-group {
  position: relative;
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #0b3056;
  font-size: 14px;
}

.required {
  color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px 12px 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
  padding: 15px 15px 15px 40px;
}

.form-icon {
  position: absolute;
  left: 15px;
  top: 38px;
  color: #519F44;
  font-size: 16px;
}

.textarea-icon {
  top: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #519F44;
  box-shadow: 0 0 0 3px rgba(81, 159, 68, 0.1);
  background-color: white;
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.form-notes {
  font-size: 13px;
  color: #666;
}

.privacy-checkbox {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.privacy-checkbox input {
  width: auto;
  margin: 0;
}

.privacy-link {
  color: #519F44;
  text-decoration: none;
  font-weight: 500;
}

.privacy-link:hover {
  text-decoration: underline;
}

.btn-submit {
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  background-color: #519F44;
  color: white;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: #458b3a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(81, 159, 68, 0.3);
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info-card h3 {
  color: #0b3056;
  margin-bottom: 20px;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.method-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(81, 159, 68, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #519F44;
  font-size: 16px;
  flex-shrink: 0;
}

.method-details h4 {
  color: #0b3056;
  margin-bottom: 5px;
  font-size: 16px;
}

.method-details a,
.method-details p {
  color: #666;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.method-details a:hover {
  color: #519F44;
}

.contact-social {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-social h4 {
  color: #0b3056;
  margin-bottom: 20px;
  font-size: 18px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(81, 159, 68, 0.1);
  color: #519F44;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #519F44;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Contact */
@media (min-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .form-row {
    flex-direction: row;
  }
  
  .form-group {
    flex: 1;
  }
  
  .form-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .contact-form-container,
  .contact-info-card,
  .contact-social {
    padding: 20px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 15px 12px 35px;
  }
  
  .form-icon {
    left: 12px;
  }
  
  .method-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

/* ============ MAP SECTION ============ */
.map-section {
  padding: 60px 0;
  background-color: #f8fcff;
  overflow: hidden;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  color: #0b3056;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.map-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.map-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 450px;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

/* Testimonials styling */
.testimonials-container {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 25px;
  height: 450px;
  overflow-y: auto;
}

.testimonials-container h3 {
  font-size: 20px;
  color: #0b3056;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonials-container h3 i {
  color: #ffc107;
}

.testimonial {
  border-left: 4px solid #519F44;
  padding: 5px 0 5px 15px;
  margin-bottom: 25px;
  position: relative;
}

.testimonial:last-child {
  margin-bottom: 0;
}

.testimonial-content {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
}

.testimonial-content p {
  font-style: italic;
  color: #444;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-info {
  flex: 1;
}

.author-info h4 {
  font-size: 16px;
  color: #0b3056;
  margin: 0 0 3px 0;
}

.author-info p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .map-section {
    padding: 50px 0;
  }
  
  .map-content {
    gap: 25px;
  }
  
  .map-wrapper,
  .testimonials-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .map-content {
    grid-template-columns: 1fr;
  }
  
  .map-wrapper {
    height: 300px;
  }
  
  .testimonials-container {
    height: auto;
    max-height: 450px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .map-section {
    padding: 40px 0;
  }
  
  .map-container {
    padding: 0 15px;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .map-wrapper {
    height: 250px;
  }
  
  .testimonials-container {
    padding: 20px 15px;
  }
  
  .testimonials-container h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .testimonial {
    padding-left: 12px;
    margin-bottom: 20px;
  }
  
  .testimonial-content {
    padding: 12px;
  }
  
  .testimonial-content p {
    font-size: 13px;
  }
  
  .author-info h4 {
    font-size: 15px;
  }
  
  .author-info p {
    font-size: 12px;
  }
}

/* ============ FOOTER ============ */
.footer-premium {
  background: linear-gradient(135deg, var(--color-dark), #1c5b8f);
  color: #fff;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  fill: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding-bottom: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-logo span {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.footer-logo strong {
  color: var(--color-primary);
}

.footer-description {
  line-height: 1.7;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

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

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-primary);
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--color-accent);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-links li a i {
  font-size: 12px;
  color: var(--color-accent);
  width: 18px;
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links {
  display: flex;
  gap: 15px;
}

.legal-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}

.legal-link:hover {
  color: var(--color-primary);
}

.footer-payments {
  display: flex;
  gap: 10px;
}

.footer-payments img {
  height: 28px;
  opacity: 0.7;
  filter: grayscale(100%) brightness(1.5);
  transition: all 0.3s ease;
}

.footer-payments img:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}

/* ============ SECCIÓN DE PROMOCIÓN DEL DESARROLLADOR ============ */
.developer-promo-section {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.developer-card {
  background: linear-gradient(135deg, #1c5b8f, #0b3056);
  border-radius: 12px;
  padding: 25px;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.developer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0b3056, #1a4b7a);
  z-index: -1;
  border-radius: 12px;
}

.dev-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dev-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #5CE1E6, #3EBDE8);
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(92, 225, 230, 0.4);
}

.dev-header h3 {
  margin: 10px 0 5px;
  font-size: 20px;
}

.dev-title {
  color: #5CE1E6;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.dev-skills h4,
.dev-services h4,
.dev-contact h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #5CE1E6;
  position: relative;
  padding-bottom: 8px;
}

.dev-skills h4::after,
.dev-services h4::after,
.dev-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #519F44;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.skill-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.skill-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.skill-item i {
  color: #5CE1E6;
  font-size: 16px;
}

.dev-services ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.dev-services li {
  padding: 8px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dev-services li i {
  color: #519F44;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-method.whatsapp {
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.contact-method.email {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.contact-method.linkedin {
  background: rgba(10, 102, 194, 0.2);
  border: 1px solid rgba(10, 102, 194, 0.3);
}

.contact-method:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.2);
}

.btn-hire-me {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #519F44, #3e7e35);
  color: white;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  width: 100%;
}

.btn-hire-me:hover {
  background: linear-gradient(135deg, #3e7e35, #519F44);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(81, 159, 68, 0.4);
}
/* ============ MODALES ============ */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.modal-content {
  background-color: var(--color-white);
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-50px);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(255,255,255,0.2);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  padding: 20px 25px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  color: var(--color-white);
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.3s;
  line-height: 1;
  padding: 0 0 5px 10px;
}

.modal-close:hover {
  transform: rotate(90deg);
}

.modal-body {
  padding: 25px;
}

.modal-body p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #555;
  font-size: 16px;
}

.modal-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.modal-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background-color: rgba(92, 225, 230, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.modal-feature:hover {
  transform: translateY(-5px);
  background-color: rgba(92, 225, 230, 0.15);
}

.modal-feature i {
  color: var(--color-accent);
  font-size: 24px;
  min-width: 40px;
  text-align: center;
  margin-top: 3px;
}

.modal-feature h4 {
  color: var(--color-dark);
  margin-bottom: 8px;
  font-size: 18px;
}

.modal-feature p {
  font-size: 14px;
  margin-bottom: 0;
  color: #666;
}

.modal-benefits {
  list-style-type: none;
  padding: 0;
  margin: 25px 0;
}

.modal-benefits li {
  padding: 10px 0 10px 30px;
  position: relative;
  margin-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.modal-benefits li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.modal-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.modal-option {
  padding: 15px;
  background-color: var(--color-light);
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
}

.modal-option h5 {
  color: var(--color-dark);
  margin-bottom: 10px;
  font-size: 16px;
}

.modal-option p {
  font-size: 14px;
  margin-bottom: 0;
}

.modal-process {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px 0;
}

.process-step {
  flex: 1;
  min-width: 150px;
  padding: 15px;
  background-color: var(--color-light);
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.process-step span {
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--color-accent);
  color: white;
  border-radius: 50%;
  line-height: 30px;
  margin: 0 auto 10px;
  font-weight: bold;
}

.process-step p {
  font-size: 14px;
  margin-bottom: 0;
}

/* Estilos adicionales para modales */

/* Estilo para el footer del modal */
.modal-footer {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  border-radius: 0 0 12px 12px;
}

.modal-footer .btn {
  padding: 10px 20px;
  font-weight: 600;
  min-width: 120px;
  transition: all 0.3s ease;
}

.modal-footer .btn-primary {
  background-color: #f8f9fa;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.modal-footer .btn-primary:hover {
  background-color: var(--color-primary);
  color: white;
}

.modal-footer .btn-accent {
  background-color: var(--color-accent);
  color: white;
  border: none;
}

.modal-footer .btn-accent:hover {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Ajustes para modales en dispositivos móviles */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 20px auto;
  }
  
  .modal-footer {
    flex-direction: column;
    gap: 10px;
  }
  
  .modal-footer .btn {
    width: 100%;
  }
  
  .modal-features {
    grid-template-columns: 1fr;
  }
  
  .modal-options {
    grid-template-columns: 1fr;
  }
}

/* WhatsApp Fixed */
.whatsapp-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-fixed:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}

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

.legal-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  color: var(--color-white);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  max-height: 90vh;
  overflow: hidden;
  padding: 2rem 1rem;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5));
  background-image: url('https://images.unsplash.com/photo-1553413077-190dd305871c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease-out;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: white;
}

.hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.hero-buttons .btn {
  min-width: 200px;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
  background-color: var(--color-accent);
  color: white;
  border: 2px solid var(--color-accent);
  box-shadow: 0 4px 15px rgba(81, 159, 68, 0.3);
}

.hero-buttons .btn-primary:hover {
  background-color: #458b3a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(81, 159, 68, 0.4);
}

.hero-buttons .btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.hero-buttons .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    background-attachment: scroll;
    padding: 1rem;
  }
  
  .hero-content {
    width: 95%;
    padding: 1.5rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .hero-tagline {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
}

@media (min-width: 1600px) {
  .hero {
    min-height: 70vh;
  }
  

  
  .hero-tagline {
    font-size: 1.5rem;
  }
  
  .hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .header-container {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 15px;
  }
  
  nav {
    order: 2;
    width: 100%;
  }
  
  nav ul {
    justify-content: space-around;
    gap: 10px;
  }
  
  .header-buttons {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  
  .contact-info-header {
    display: none;
  }
  
  .hero {
    min-height: 350px;
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 2.3rem;
  }
  
  .about {
    padding: 80px 20px;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image-container {
    width: 100%;
    height: 400px;
  }
  
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-premium-content {
    grid-template-columns: 1fr;
  }
  
  .faq-illustration {
    display: none;
  }
  
  .answer-content {
    padding: 0 25px 25px 25px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .map-wrapper {
    height: 400px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
  }
  
  .developer-promo-section {
    order: -1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .logo-link {
    width: 100%;
    justify-content: center;
  }
  
  .logo-text {
    font-size: 18px;
  }
  
  nav ul li a {
    font-size: 14px;
  }
  
  .btn {
    padding: 6px 12px;
    font-size: 14px;
  }
  
  .header-container {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }
  
  nav {
    order: 3;
    width: 100%;
  }
  
  nav ul {
    justify-content: space-between;
    gap: 5px;
  }
  
  .hero {
    min-height: 300px;
    padding: 50px 15px;
  }
  
  .hero-content {
    width: 90%;
    padding: 1.8rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 30px;
  }
  
  .about-text-content h3 {
    font-size: 28px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .mvv-card {
    padding: 30px 20px;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 25px;
  }
  
  .faq-question {
    padding: 15px;
  }
  
  .question-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .question-text h3 {
    font-size: 16px;
  }
  
  .contact h2,
  .map-section h2 {
    font-size: 30px;
  }
  
  .contact-info-item {
    flex-direction: column;
    gap: 5px;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-legal {
    align-items: center;
  }
  
  .footer-legal-links {
    justify-content: center;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .logo img {
    height: 36px;
  }
  
  nav ul {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .header-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .header-buttons .btn {
    width: 100%;
    max-width: 200px;
  }
  
  .hero {
    min-height: 280px;
    padding: 40px 10px;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    max-width: 220px;
  }
  
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .about-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }
  
  .feature-item {
    flex-direction: column;
    gap: 15px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .mvv-premium-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .documents-list {
    grid-template-columns: 1fr;
  }
  
  .storage-features {
    flex-direction: column;
  }
  
  .feature-badge {
    justify-content: center;
  }
  
  .map-wrapper {
    height: 300px;
  }
  
  .map-address {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  
  .map-info-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Estilos Premium para la tarjeta de desarrollador */


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

.dev-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #5CE1E6, #3EBDE8);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
}

.dev-title {
    color: #5CE1E6;
    font-size: 18px;
    font-weight: 500;
}

.dev-expertise h4,
.dev-tech-stack h4,
.dev-services h4,
.dev-achievements h4,
.dev-contact h4 {
    color: #5CE1E6;
    border-bottom: 2px solid rgba(92, 225, 230, 0.3);
    padding-bottom: 8px;
    margin: 25px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.expertise-item {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #5CE1E6;
    transition: transform 0.3s;
}

.expertise-item:hover {
    transform: translateY(-5px);
}

.expertise-item i {
    font-size: 24px;
    color: #5CE1E6;
    margin-bottom: 10px;
}

.expertise-item h5 {
    margin: 10px 0;
    color: white;
}

.expertise-item p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.tech-column h5 {
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-column li {
    padding: 8px 0;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-column i {
    color: #5CE1E6;
    width: 20px;
}

.services-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.service-column h5 {
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-column li {
    padding: 8px 0;
    color: rgba(255,255,255,0.8);
    position: relative;
    padding-left: 20px;
}

.service-column li:before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #5CE1E6;
}

.dev-achievements ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.dev-achievements li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: rgba(255,255,255,0.9);
}

.dev-achievements li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #519F44;
    font-weight: bold;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.contact-btn {
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.contact-btn.whatsapp {
    background: #25D366;
}

.contact-btn.email {
    background: #D44638;
}

.contact-btn.linkedin {
    background: #0A66C2;
}

.contact-btn.hire-me {
    background: linear-gradient(135deg, #5CE1E6, #3EBDE8);
    font-weight: bold;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.signature {
    text-align: right;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .tech-categories,
    .services-columns {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-container h2,
.services-container h2 {
    font-size: 36px;
    color: #0b3056;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.contact-container h2::after,
.services-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #5CE1E6, #3EBDE8);
    border-radius: 2px;
}

.contact-container p.section-subtitle,
.services-container p.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-align: center;
}

/* Estilos específicos para la opción 2 */
.testimonial {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 4px solid var(--color-accent);
}

.testimonial-content p {
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-content p::before,
.testimonial-content p::after {
  color: var(--color-accent);
  font-size: 24px;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background-color: rgba(92, 225, 230, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 20px;
}


.author-info h4 {
  color: var(--color-dark);
  margin-bottom: 5px;
  font-size: 16px;
}


.author-info p {
  color: #666;
  font-size: 14px;
  margin: 0;
  font-style: normal;
}

.trust-badges {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.trust-badges img {
  height: 50px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.trust-badges img:hover {
  opacity: 1;
}

.certifications {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.certification-list {
  list-style: none;
  padding: 0;
}

.certification-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.certification-list i {
  color: var(--color-accent);
}