body {
    font-family: 'Times New Roman', serif;
    background-color: #f6f2e7;
    color: #3a2e1f;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  
  header {
    background-color: #d8b89c;
    padding: 25px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  h1 {
    font-size: 2.5em;
    margin: 0;
    letter-spacing: 2px;
  }
  
  nav {
    margin-top: 10px;
  }
  
  nav a {
    color: #3a2e1f;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #6b4b2d;
    text-decoration: underline;
  }
  
  section {
    padding: 140px 20px;
    border-bottom: 2px solid #c8a68c;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #inicio p {
    max-width: 600px;
    font-size: 1.2em;
    line-height: 1.6;
    margin-top: 20px;
    color: #4a3b2e;
  }
  
  .inicio-imagen {
    margin-top: 60px;
  }
  
  .inicio-imagen img {
    width: 500px;
    max-width: 90%;
    border-radius: 25px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
  }
  
  .galeria {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
  }
  
  .galeria img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .galeria img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
  }
  
  #contacto p {
    font-size: 1.1em;
    margin: 10px 0;
  }
  
  .contacto-info {
    margin-top: 30px;
    line-height: 1.8;
  }
  
  .contacto-info a {
    color: #3a2e1f;
    text-decoration: none;
    font-weight: bold;
  }
  
  .contacto-info a:hover {
    color: #6b4b2d;
    text-decoration: underline;
  }
  
  footer {
    background-color: #d8b89c;
    padding: 25px;
    font-size: 1em;
    letter-spacing: 1px;
  }
  