* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background-image: url('../img/fondo-pagina-jckl.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: rgba(19, 35, 48, 0.644);
    line-height: 1.6;
  }
  
  header {
    background-color: rgba(19, 35, 48, 0.644);
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .logo {
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: background 0.3s;
    border-radius: 5px;
  }
  
  .nav-links a:hover {
    background-color: #346175b7;
  }
  
  .seccion {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  
  .marco-imagen {
    background-image: url('../img/marco-vintage.jpeg');
    background-size: contain;
    background-repeat: no-repeat;
    padding: 20px;
    width: 100%;  /* Establecer el contenedor para que ocupe el 100% del ancho */
    max-width: 250px; /* Establecer un límite máximo para el tamaño del marco */
    height: 450px;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
  }
  
  .imagen-enmarcada {
    width: 100%;  /* Hacer que la imagen ocupe el 100% del ancho del contenedor */
    height: 350px; /* Mantener la relación de aspecto */
    max-width: 200px; /* Limitar el tamaño máximo de la imagen */
    object-fit: contain; /* Asegura que la imagen cubra el espacio sin distorsionarse */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
  
  footer {
    text-align: center;
    padding: 1rem;
    background-color: rgba(19, 35, 48, 0.644);
    color: white;
    margin-top: 2rem;
  }
  
  .contenedor-presentacion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
  }
  
  .cuadro-texto {
    background-color: rgba(19, 35, 48, 0.644);
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 400px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    color: #d2d1da;
  }
  
  .cuadro-texto h2 {
    margin-top: 0;
    color: #d2d1da;
  }
  
  .cuadro-texto p {
    line-height: 1.6;
  }
  