/* ESTILOS GENERALES */
body {
  font-family: "Roboto Mono", monospace;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* PÁGINA PRINCIPAL */
.pagina-principal {
  background-color: #D3D3D3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container-principal {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.header-principal h1 {
  font-family: Arial, sans-serif;
  font-size: 73px;
  margin-bottom: 5px;
  color: #3c3c3c;
}

.header-principal h2 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #3c3c3c;
}

.seleccion-modulo {
  display: flex;
  max-width: 1200px; /* Ancho limitado a 1200px */
  margin: 0 auto; /* Centrar el contenedor */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  height: 350px; /* Altura fija de 350px */
  width: 100%; /* Ocupar el ancho disponible hasta 1200px */
}

.columna {
  flex: 1;
  display: flex;
  flex-direction: column; /* Cambiar a columna para apilar elementos */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

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

.columna.corporativo {
  background-color: #ffffff;
}

.columna.comercial {
  background-color: #3367D6;
}

.contenido-columna {
  text-align: center;
  padding: 40px;
  display: flex;
  flex-direction: column; /* Apilar elementos verticalmente */
  align-items: center;
  justify-content: center;
}

.icono-columna {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  order: 1; /* Imagen primero */
}

.btn-modulo {
  background-color: #3367D6;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 15px;
  order: 2; /* Botón después de la imagen */
}

.columna.comercial .btn-modulo {
  background-color: #ffffff;
  color: #3367D6;
}

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

.descripcion-modulo {
  color: #3c3c3c;
  font-size: 12px;
  max-width: 200px;
  margin: 0 auto;
  order: 3; /* Descripción después del botón */
}

.columna.comercial .descripcion-modulo {
  color: #ffffff;
}

.texto-inspirador {
  text-align: center;
  color: #3c3c3c; /* Mismo color que la columna corporativo */
  font-size: 12px; /* Tamaño 12px */
  margin: 20px 0;
  padding: 0 20px;
  max-width: 1200px; /* Ancho limitado a 1200px */
  margin-left: auto;
  margin-right: auto;
}

.footer-principal {
  margin-top: auto;
  padding: 20px;
  background-color: white;
  font-size: 11px;
}

/* BOTÓN EXPERIENCIA EN PÁGINA PRINCIPAL */
.boton-experiencia-container {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.columna-experiencia {
  width: 1200px;
  height: 250px;
  background-color: #3c3c3c;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.columna-experiencia:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.btn-experiencia {
  background-color: #ffffff;
  color: #3c3c3c;
  border: 2px solid white;
  padding: 20px 50px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-experiencia:hover {
  background-color: white;
  color: #3367D6;
   border: 2px solid #3367D6;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1240px) {
  .columna-experiencia {
    width: 95%;
    max-width: 1200px;
  }
}

@media (max-width: 768px) {
  .columna-experiencia {
    height: 200px;
  }
  
  .btn-experiencia {
    font-size: 1.3em;
    padding: 15px 40px;
  }
}

@media (max-width: 480px) {
  .columna-experiencia {
    height: 150px;
  }
  
  .btn-experiencia {
    font-size: 1.1em;
    padding: 12px 30px;
  }
}

/* PÁGINA CORPORATIVO */
.pagina-corporativo {
  background-color: #D3D3D3;
  padding: 20px;
}

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


.btn-regresar {
  background-color: #3c3c3c;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Roboto Mono", monospace;
  font-size: 0.9em;
}

.btn-regresar:hover {
  background-color: #3367D6;
}

/* ESTILOS PARA PÁGINA COMERCIAL */
.pagina-comercial {
  background-color: #D3D3D3;
  min-height: 100vh;
  padding: 20px;
}

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

.header-comercial h1 {
  font-family: Arial, sans-serif;
  font-size: 73px;
  margin-bottom: 5px;
  color: #3c3c3c;
}

.header-comercial h2 {
  font-size: 18px; /* Mismo tamaño que página principal */
  margin-bottom: 40px;
  color: #3c3c3c;
}

/* Sección Imagen ESTÁTICA */
.seccion-imagen {
  position: relative;
  height: 450px;
  width: 100vw;
  margin: 0 auto 40px auto;
  border-radius: 0;
  overflow: hidden;
  left: 50%;
  transform: translateX(-50%);
}

.contenedor-imagen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.imagen-estatica {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* Sin transformaciones - completamente estática */
}

.texto-sobre-imagen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.parrafo-hero {
  color: white;
  font-size: 18px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  padding: 0 20px;
  margin: 0;
  font-weight: normal;
}

/* El resto del CSS se mantiene igual */
.texto-enriquecido {
  text-align: center;
  color: #666;
  font-size: 12px;
  margin: 20px 0;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.boton-whatsapp {
  text-align: center;
  margin: 30px 0;
}

.btn-whatsapp {
  background-color: #3367D6;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #3c3c3c;
  transform: scale(1.05);
}

/* Texto enriquecido */
.texto-enriquecido {
  text-align: center;
  color: 3c3c3c;
  font-size: 12px;
  margin: 20px 0;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Botón de WhatsApp */
.boton-whatsapp {
  text-align: center;
  margin: 30px 0;
}

.btn-whatsapp {
  background-color: #3367D6; /* Color azul corporativo */
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #3c3c3c; /* Hover gris oscuro */
  transform: scale(1.05);
}

/* BOTONES ADICIONALES EN PÁGINA PRINCIPAL */
.botones-adicionales {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

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

.columna-boton {
  background-color: #3c3c3c;
  border-radius: 12px;
  padding: 5px 110px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.columna-boton:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.btn-adicional {
  background-color: #3c3c3c;
  color: white;
  border: 2px solid white;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  
}

.btn-adicional:hover {
  background-color: white;
  color: #3c3c3c;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .contenedor-botones {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .columna-boton {
    min-height: 100px;
    padding: 30px 20px;
  }
  
  .btn-adicional {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}

/* ESTILOS PARA NUEVAS SECCIONES COMERCIAL */

/* Sección de modelos */
.seccion-modelos {
  max-width: 1200px;
  margin: 60px auto 40px auto;
  padding: 0 20px;
}

.titulo-seccion {
  font-size: 24px;
  color: #3c3c3c;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Galería de 4 columnas */
.galeria-columnas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.columna-galeria {
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.columna-galeria:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.contenedor-imagen-galeria {
  width: 100%;
  height: 100%;
}

.imagen-galeria {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.columna-galeria:hover .imagen-galeria {
  transform: scale(1.05);
}

/* Texto descripción */
.texto-descripcion {
  text-align: center;
  color: #3c3c3c;
  font-size: 12px;
  line-height: 1.6;
  margin: 30px 0;
  padding: 0 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Popup para imágenes */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.popup-contenido {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.popup-contenido img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.cerrar-popup {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 40px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.cerrar-popup:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .galeria-columnas {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .columna-galeria {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .galeria-columnas {
    grid-template-columns: 1fr;
  }
  
  .columna-galeria {
    height: 250px;
  }
}

/* FRANJA HORIZONTAL SIMPLE - CORREGIDA */
.franja-horizontal {
  position: relative;
  height: 150px;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px 0;
}

.texto-exclusividad {
  color: #3c3c3c;
  font-size: 30px;
  text-align: center;
  margin: 0;
  font-weight: normal;
  padding: 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .franja-horizontal {
    height: 150px;
    margin: 60px 0;
  }
  
  .texto-exclusividad {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .franja-horizontal {
    height: 150px;
    margin: 40px 0;
  }
  
  .texto-exclusividad {
    font-size: 16px;
  }
}

/* SECCIÓN CARACTERÍSTICAS */
.seccion-caracteristicas {
  max-width: 1200px;
  margin: 80px auto 60px auto;
  padding: 0 20px;
}

.columnas-caracteristicas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.columna-caracteristica {
  background-color: #3c3c3c;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}

.columna-caracteristica:hover {
  transform: translateY(-10px);
}

.titulo-caracteristica {
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}

.texto-caracteristica {
  color: white;
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .franja-diagonal {
    height: 200px;
    margin: 60px 0;
  }
  
  .texto-exclusividad {
    font-size: 18px;
  }
  
  .columnas-caracteristicas {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .columna-caracteristica {
    padding: 30px 20px;
    min-height: auto;
  }
  
  .titulo-caracteristica {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .franja-diagonal {
    height: 150px;
    margin: 40px 0;
  }
  
  .texto-exclusividad {
    font-size: 16px;
  }
}

/* LÍNEA SEPARADORA */
.linea-separadora {
  width: 1200px;
  max-width: 90%;
  height: 1px;
  background-color: #3c3c3c;
  margin: 30px auto;
  border: none;
}

/* ESTILOS EXISTENTES PARA EL MÓDULO CORPORATIVO */

/* HEADER CORPORATIVO CON MISMO ESTILO */
.header-corporativo h1 {
  font-family: Arial, sans-serif;
  font-size: 73px;
  margin-bottom: 5px;
  color: #3c3c3c;
}

.header-corporativo h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #3c3c3c;
}

.subtitulo-corporativo {
  font-size: 18px;
  color: #3c3c3c;
  margin-bottom: 40px;
  text-align: center;
  font-weight: normal;
}
.auth-container {
  position: fixed;
  top: 15px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 10px 15px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: auto;
  max-width: 70%;
  border: 1px solid #e0e0e0;
}

.auth-buttons {
  display: flex;
  gap: 8px;
}

#btnGuardar:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #ccc !important;
}

#auth-status {
  font-weight: bold;
  padding: 5px;
  border-radius: 4px;
}

#btnLogin, #btnLogout {
  background-color: #3367D6;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8em;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

#btnLogin:hover, #btnLogout:hover {
  background-color: #3c3c3c;
  transform: translateY(-1px);
}

#btnLogout {
  background-color: #960018;
}

#btnLogout:hover {
  background-color: #3c3c3c;
}

.auth-authenticated #auth-status {
  color: #3367D6;
  font-weight: 600;
}

input[type="date"] {
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
  font-family: "Roboto Mono", monospace;
}

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

.registros-container {
  max-width: 1200px;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  max-height: 400px;
  overflow-y: auto;
  margin: 0 auto;
  padding: 20px;
}

.registro-horizontal {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  background-color: #3c3c3c;
}

.timestamp {
  font-weight: bold;
  color: #3367D6;
  margin-bottom: 8px;
  font-size: 0.9em;
}

.datos-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.dato-item {
  background-color: white;
  color: #3c3c3c;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  min-width: 150px;
  font-size: 0.9em;
}

.dato-item span {
  color: #5f6368;
  font-size: 0.85em;
}

.buscador-container {
  max-width: 1200px;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  margin: 0 auto;
}

#buscador-timestamp {
  margin-top: 60px;
  position: relative;
  z-index: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#btn-buscar {
  margin-top: 60px;
  position: relative;
  z-index: 1;
  padding: 8px 15px;
  background-color: #3367D6;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.lupa-btn {
  background-color: #3367D6;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.lupa-btn:hover {
  background-color: #3c3c3c;
}

.lupa-icon {
  color: white;
  transition: transform 0.2s ease;
}

.lupa-btn:hover .lupa-icon {
  transform: scale(1.1);
}

#tipo_vivienda {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Roboto Mono", monospace;
}

.archivo-item {
  display: flex;
  justify-content: space-between;
  padding: 5px;
  margin: 3px 0;
  background: #f0f0f0;
  border-radius: 4px;
}

.btn-eliminar {
  font-size: 25px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  background: #3367D6;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}

.btn-eliminar:hover {
  background: #3c3c3c;
  transform: scale(1.2);
}

#resultado-busqueda {
  margin: 20px 0;
}

.no-resultado {
  color: #d32f2f;
  padding: 15px;
  background-color: #ffebee;
  border-radius: 4px;
  border-left: 4px solid #f44336;
  margin-top: 20px;
}

.registro-encontrado {
  background-color: #3367D6;
  color: #ffffff;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #3c3c3c;
}

.contador-tiempo {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 4px;
  color: white;
  background-color: var(--color-verde);
  margin-left: auto;
  min-width: 140px;
  text-align: center;
}

.contador-tiempo.finalizado {
  background-color: var(--color-rojo);
}

:root {
  --color-verde: #3367D6;
  --color-rojo: #960018;
}

.fecha-terminacion {
  background-color: #3c3c3c;
  color: #ffffff;
  padding: 10px;
  border-radius: 4px;
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding-left: 20px;
  padding-right: 20px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 100;
  font-size: 11px;
}

body {
  margin-bottom: 60px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #3c3c3c;
  border-color: #ffffff;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 13px;
}

input {
  font-family: "Roboto Mono", monospace;
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

#arquitecto {
  width: 100%;
  padding: 8px;
  font-family: "Roboto Mono", monospace;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
}

button {
  background-color: #ffffff;
  color: #3c3c3c;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #3367D6;
  color: #ffffff;
}

/* ESTILOS PARA PÁGINA EXPERIENCIA */
.pagina-experiencia {
  background-color: #D3D3D3;
  min-height: 100vh;
  padding: 20px;
}

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

.header-experiencia h1 {
  font-family: Arial, sans-serif;
  font-size: 73px;
  margin-bottom: 5px;
  color: #3c3c3c;
}

.header-experiencia h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #3c3c3c;
}

.subtitulo-experiencia {
  font-size: 18px;
  color: #3c3c3c;
  margin-bottom: 40px;
  text-align: center;
  font-weight: normal;
}

.texto-experiencia {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  text-align: center;
  color: #666;
  font-size: 12px;
  line-height: 1.6;
  padding: 0 20px;
}

/* Franja de 3 columnas */
.franja-proyectos {
  width: 100vw;
  height: 450px;
  background-color: #f8f8f8;
  margin: 40px 0;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galeria-tres-columnas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.columna-proyecto {
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.columna-proyecto:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.contenedor-imagen-proyecto {
  width: 100%;
  height: 100%;
}

.imagen-proyecto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.columna-proyecto:hover .imagen-proyecto {
  transform: scale(1.05);
}

/* Sección Proyecto Individual */
.seccion-proyecto-individual {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.contenedor-proyecto {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}

.titulo-proyecto {
  color: #3c3c3c;
  font-size: 24px;
  margin: 0;
  font-weight: bold;
  text-align: left;
}

.texto-proyecto {
  color: #666;
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .franja-proyectos {
    height: auto;
    padding: 40px 0;
  }
  
  .galeria-tres-columnas {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .columna-proyecto {
    height: 250px;
  }
  
  .contenedor-proyecto {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .titulo-proyecto {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header-experiencia h1 {
    font-size: 50px;
  }
  
  .header-experiencia h2 {
    font-size: 20px;
  }
  
  .subtitulo-experiencia {
    font-size: 16px;
  }
}

/* ESTILOS PARA NUEVAS PÁGINAS */
.pagina-firma,
.pagina-patentado,
.pagina-contacto {
  background-color: #D3D3D3;
  min-height: 100vh;
  padding: 20px;
}

.container-firma,
.container-patentado,
.container-contacto {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.header-firma h1,
.header-patentado h1,
.header-contacto h1 {
  font-family: Arial, sans-serif;
  font-size: 73px;
  margin-bottom: 5px;
  color: #3c3c3c;
  text-align: center;
}

.header-firma h2,
.header-patentado h2,
.header-contacto h2 {
  font-size: 18px;
  margin-bottom: 40px;
  color: #3c3c3c;
  text-align: center;
}

.texto-firma,
.texto-patentado {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #666;
  font-size: 12px;
  line-height: 1.6;
}

/* Estilos para lista de contacto */
.lista-contacto {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.lista-contacto ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-contacto li {
  color: #666;
  font-size: 12px;
  line-height: 2;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .header-firma h1,
  .header-patentado h1,
  .header-contacto h1 {
    font-size: 50px;
  }
  
  .header-firma h2,
  .header-patentado h2,
  .header-contacto h2 {
    font-size: 16px;
  }
}