@import url('/assets/fonts/poppins/poppins.css');

:root {
  --main-color: #b10692;
  --main-color-dark: #a93226;
  --main-color-alt: #3d405b;
}

html, body, * {
  box-sizing: border-box;
}

.carousel-scroll::-webkit-scrollbar { display: none; }
.carousel-scroll { scrollbar-width: none; }

body, html {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(51, 65, 85);
  font-size: 16px;
  line-height: 30px;
  width: 100vw;
  overflow-x: hidden;
}

body {
  background: #f7f6f2;
  margin: 0;
}

header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 0;
}

nav a {
  color: var(--main-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--main-color-alt);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem 2rem 1rem;
}

.container1140 {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
  padding-left: 1rem;
  padding-right: 1rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid #ececec;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(224,122,95,0.13);
  border-color: var(--main-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-top: 1.5em;
}

h2 {
  font-size: 28px;
  line-height: 36px;
  color: var(--main-color-alt);
  margin-bottom: 0.5em;
}

.button, .btn, button, .inverse-button, .btn-inverse {
  background: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
  border-radius: 8px;
  font-weight: 600;
  padding: 0.75em 2em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.button:hover, .btn:hover, button:hover, .inverse-button:hover, .btn-inverse:hover {
  background: #fff;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}

.inverse-button, .btn-inverse {
  background: #fff;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}

.inverse-button:hover, .btn-inverse:hover {
  background: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
}

.prose {
  color: #2d2d2d;
  font-size: 1.04rem;
}

.bg-primario {
  background: var(--main-color) !important;
  color: #fff !important;
}

.text-primario {
  color: var(--main-color) !important;
}

.border-primario {
  border-color: var(--main-color) !important;
}

/* Hamburger menu */
.hamburger-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 40;
  animation: fadeIn 0.2s;
}

.hamburger-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 16rem;
  max-width: 90vw;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0,0,0,0.1);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  animation: slideIn 0.2s;
  border-left: 1px solid #eee;
  min-height: 100dvh;
}

.hamburger-drawer a {
  color: #1a2233;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
}

.hamburger-drawer a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

/* Scroll lock */
body.menu-open {
  overflow: hidden;
}
