    :root {
      --main-color: #222222;
      --accent-color: #dca896;
      --font-body: 'Open Sans', sans-serif;
      --font-title: 'Playfair Display', serif;
      --bg-light: #faf7f1;
      --bg-dark: #181818;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: var(--font-body);
      overflow-x: hidden;
      color: var(--main-color);
      background-color: var(--bg-light);
      line-height: 1.6;
      scroll-behavior: smooth;
    }
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background-color: #ffffff;
      border-bottom: 1px solid #ddd;
      z-index: 1000;
      display: flex;
      justify-content: center;
    }
    nav {
      display: flex;
      gap: 30px;
      padding: 15px 30px;
    }
    nav a {
      font-weight: bold;
      color: var(--main-color);
      text-decoration: none;
      transition: color 0.3s;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    nav a:hover {
      color: var(--accent-color);
    }
    section {
    width: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    }
    section.visible {
      opacity: 1;
      transform: translateY(0);
    }
    #sobre-nosotros{
        padding: 10vh 0;
    }
    #menu{
        padding: 5vh;
        background: url('../img/bg-01.jpg') center/cover no-repeat;
        margin-bottom: 10vh;
    }
    #galeria{
        padding: 10vh 0 0 0;
    }
    #ubicacion{
        padding: 10vh 0 0 0;
    }
    
    #hero {
      background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('../img/IMG-20250805-WA0044.jpg') center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 200px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    #hero h1 {
      font-family: var(--font-title);
      font-size: 86px;
      text-transform: uppercase;
      letter-spacing: 2px;
      animation: fadeInDown 1.2s ease forwards;
      line-height:1em;
    }
    #hero h2 {
      font-family: 'Roboto', sans-serif;
      font-size: 46px;
      animation: fadeInDown 0.5s ease forwards;
      color:#fff;
      font-weight: 400;
    }
    #hero p {
      font-size: 22px;
      margin-top: 10px;
      animation: fadeInUp 1.2s ease 0.4s forwards;
    }
    h2 {
      font-size: 76px;
      margin-bottom: 40px;
      font-family: var(--font-title);
      text-align: center;
      color: var(--main-color);
    }
    .section-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    }
    .section-split:nth-child(even) {
    flex-direction: row-reverse;
    max-width: 90%;
    margin: 0 auto;
    }
    .section-split img {
      width: 48%;
      height: 400px;
      object-fit: cover;
      display: block;
    }
    .section-split .text {
      flex: 1 1 48%;
      padding: 0 40px;
    }
    ul {
      list-style: none;
      padding-left: 0;
    }
    ul li {
      margin-bottom: 12px;
    }
    a {
      color: var(--accent-color);
      text-decoration: none;
      font-weight: bold;
      display: inline-block;
      margin-top: 10px;
    }
    a:hover {
      text-decoration: underline;
    }
    .galeria-instagram {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 0 auto;
    }
    .galeria-instagram img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
    }
    .galeria-instagram img:hover {
      transform: scale(1.03);
    }
    #mapa iframe {
      width: 100%;
      height: 350px;
      border: 0;
      border-radius: 0;
      padding:0;
      margin:0;
    }
    footer {
      background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3)), url('../img/bg-02.jpg') center/cover no-repeat;
      color: var(--accent-color);
      text-align: center;
      padding: 40px 20px;
      margin:0;
    }
    footer a {
      color: #fff;
    }
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }
    .hamburger span {
      display: block;
      width: 25px;
      height: 3px;
      background: var(--main-color);
      transition: all 0.3s ease;
    }
    .mobile-nav {
      display: none;
      flex-direction: column;
      background: rgba(255,255,255,0.98);
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .mobile-nav a {
      margin-bottom: 15px;
    }
    .show {
      display: flex !important;
    }
    
    .btn-descarga {
      display: inline-block;
      padding: 12px 20px;
      background-color: #000;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .btn-descarga:hover {
      background-color: #c74621;
      transform: scale(1.03);
    }
    
    
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        padding: 10px 20px;
        align-items: flex-start;
      }
      nav {
        display: none !important;
        flex-direction: column;
        gap: 15px;
        padding: 10px 0 0 0;
      }
      .hamburger {
        display: flex;
      }
      h2{
          font-size:46px;
      }
      #hero h2{
          font-size:26px;
      }
    .galeria-instagram {
        grid-template-columns: repeat(2, 1fr);
    }
    #menu.section-split {
        flex-direction: column-reverse !important;
    }
    .mobile-inverse {
        flex-direction: column-reverse !important;
    }
    .menu-section {
        flex-direction: column-reverse !important;
    }
    #menu.section-split {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }
    #hero h1 {
        font-size: 36px;
    }
    #hero p {
        font-size: 18px;
    }
    .section-split {
        flex-direction: column !important;
    }
    .section-split img,
    .section-split .text {
        width: 100%;
    }
    .galeria-instagram {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    nav a {
      font-size: 14px;
    }
    img[alt="La Pascuala Bistró"] {
      height: 40px !important;
      max-width: 140px;
    }
    #sobre-nosotros {
    padding: 0 0 10vh 0;
    }
    #menu {
    padding: 2em;
    }
    .section-split .text {
    flex: 1 1 48%;
    padding: 0 1em;
    }
  }