/* ── bypali-style.css — estilos compartidos By Pali ── */
*{box-sizing:border-box;margin:0;padding:0;}
:root{
  --bordo:#7D2027;
  --bordo-light:rgba(125,32,39,0.08);
  --crema:#FDF8F5;
  --rosa:#E8B4B8;
  --rosa-claro:#F2D4D7;
  --rosa-palido:#fdf0f2;
  --lavanda-claro:#D6DCEF;
  --dorado:#8B7D3A;
  --dorado-light:rgba(139,125,58,0.1);
  --texto:#2C1810;
  --texto2:#5a3a30;
  --texto3:#9a7060;
  --border:rgba(125,32,39,0.15);
  --color-text-primary:#2C1810;
  --color-text-secondary:#9a7060;
}
html{scroll-behavior:smooth;}
body{background:var(--crema);color:var(--texto);font-family:'DM Sans',sans-serif;min-height:100vh;}

/* NAV */
.bp-nav{
  background:rgba(253,248,245,0.97);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  padding:0 40px;height:64px;
  display:flex;align-items:center;justify-content:space-between;
  position:sticky;top:0;z-index:100;
}
@media(max-width:768px){.bp-nav{padding:0 20px;}}
.bp-nav-logo{
  font-family:'Playfair Display',serif;
  font-size:20px;font-weight:700;
  color:var(--bordo);text-decoration:none;
  white-space:nowrap;flex-shrink:0;
}
.bp-nav-links{
  display:flex;align-items:center;gap:28px;
  list-style:none;margin:0;padding:0;flex:1;justify-content:center;
}
.bp-nav-links a{
  font-size:13px;font-weight:500;color:var(--texto2);
  text-decoration:none;transition:color .2s;white-space:nowrap;
}
.bp-nav-links a:hover,.bp-nav-links a.active{color:var(--bordo);}
.bp-nav-cta{
  padding:8px 20px;background:var(--bordo);color:white;
  border-radius:30px;font-size:13px;font-weight:700;
  text-decoration:none;transition:all .2s;flex-shrink:0;
  font-family:'DM Sans',sans-serif;
}
.bp-nav-cta:hover{background:#9a2830;}
#bp-hamburger{
  display:none;background:none;border:none;cursor:pointer;
  padding:8px;flex-direction:column;gap:5px;flex-shrink:0;
}
.ham-line{display:block;width:22px;height:2px;background:var(--bordo);border-radius:2px;transition:all .3s;}
#bp-hamburger.open .ham-line:nth-child(1){transform:translateY(7px) rotate(45deg);}
#bp-hamburger.open .ham-line:nth-child(2){opacity:0;}
#bp-hamburger.open .ham-line:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
@media(max-width:768px){
  #bp-hamburger{display:flex;}
  .bp-nav-links{
    display:none;position:fixed;top:64px;left:0;right:0;bottom:0;
    background:var(--crema);flex-direction:column;justify-content:flex-start;
    padding:32px 24px;gap:24px;z-index:99;
  }
  .bp-nav-links.open{display:flex;}
  .bp-nav-links a{font-size:1.1rem;}
  .bp-nav-cta{display:none;}
}

/* FOOTER */
.bp-footer{
  text-align:center;padding:32px 24px;
  font-size:12px;color:var(--texto3);
  border-top:1px solid var(--rosa-claro);
  margin-top:40px;
}
.bp-footer a{color:var(--bordo);text-decoration:none;}

/* UTILITY */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
