@font-face {
  font-family: 'Gilroy';
  src: url('Assets/fonts/Gilroy-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy';
  src: url('Assets/fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy';
  src: url('Assets/fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy';
  src: url('Assets/fonts/Gilroy-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0;
  font-family: 'Gilroy', sans-serif;
}

body, html {
  width: 100%;
  height: 100%;
 /* background: linear-gradient(90deg, #2d1e13 50%, #bca17e 100%);*/
  position: relative;
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  padding: 0rem;
}

.pages{
  position:fixed;
  background: linear-gradient(-8deg, #e3c7a6 -18%, #856a48 109%);
  height: 120px;
}

.header-left, .header-right {
  width: 50%;
  display: flex;
  align-items: center;
}

.header-left {
  justify-content: center;
  position: relative;
}

.logo-box {
  background: #2d1e13;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  position: relative;
  box-shadow: 0 4px 16px rgba(44, 30, 19, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.5rem 1.5rem 2.5rem;
  margin-top: -20px;
}

.logo-pages{
  margin-top: 10px;
}

.logo-box::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 2px dashed #bca17e;
  pointer-events: none;
  z-index: 1;
}

.logo {
  height: 80px;
  width: auto;
  display: block;
  position: relative;
  z-index: 2;
  margin-top: 10px;
}

.logo-subtext {
  color: #fff;
  font-size: 2.4rem;
  margin-top: 0.3rem;
  letter-spacing: 0.03em;
  font-weight: 300;
  text-align: center;
  z-index: 2;
  position: relative;
}

.logo-subtext2 {
    color: #fff;
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    font-weight: 200;
    text-align: center;
    z-index: 2;
    position: relative;
    margin-top: 0px;
    padding-bottom: 5px;
  }

.header-right {
  justify-content: flex-start;
  padding-left: 10rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  transition: color 0.4s ease, font-weight 0.4s ease;
  padding-bottom: 8px;
  position: relative;
  display: inline-block;
}

.main-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  border-top: 1px dashed rgba(45,30,19,0.9);
  transition: width 0.6s ease;
  bottom: 0;
}

.main-nav a:hover, .main-nav a.active {
  color: rgba(45,30,19,0.9);
  font-weight: 800;
}

.main-nav a:hover::before, .main-nav a.active::before {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(45, 30, 19, 0.9);
  border-radius: 0 0 10px 10px;
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
  width: 200px;
  margin-top: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) translateX(-50%);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.dropdown:hover .dropdown-menu {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(-50%);
}

.dropdown-menu a {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-align: center;
  display: block;
  color: #fff;
}

.dropdown-menu a:hover {
  color: #fff;
  font-weight: 500;
}

.carousel {
  display: flex;
  width: 100vw;
  height: 100vh;
}

.carousel-left, .carousel-right {
  width: 50vw;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-left {
  background: #1a120b;
  overflow: hidden;
}

.carousel-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  z-index: 1;
  filter: brightness(0.8) contrast(1.1);
  transition: transform 0.7s cubic-bezier(.77,0,.18,1);
}

.carousel-title {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  will-change: transform, opacity;
}

.carousel-title h1 {
  font-size: 4rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  margin-left: 40px;
  margin-right: 40px;
}

.carousel-title p {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.carousel-right {
  background: linear-gradient(-8deg, #e3c7a6 28%, #856a48 109%);
  flex-direction: column;
  justify-content: center;
}

.carousel-text {
  text-align: center;
  max-width: 350px;
}

.product-image {
  width: 100%;
  max-width: 250px;
  border-radius: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.carousel-text p {
  color: #4b3a2f;
  font-size: 2.5rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.shop-btn {
  background: #fff;
  color: #bca17e;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.shop-btn:hover {
  background: #bca17e;
  color: #fff;
}

#carousel-title,
#carousel-description,
#carousel-btn {
  will-change: transform, opacity;
}

#carousel-title {
  transition: transform 0.7s cubic-bezier(.77,0,.18,1), opacity 0.7s;
}

#carousel-description {
  transition: transform 0.7s cubic-bezier(.77,0,.18,1), opacity 0.7s;
}

#carousel-btn {
  transition: transform 0.7s cubic-bezier(.77,0,.18,1), opacity 0.7s;
}

.carousel-image {
  transition: transform 0.7s cubic-bezier(.77,0,.18,1);
}

.user-dropdown {
  position: relative;
}

.user-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.5rem;
  color: #fff;
  border-radius: 50%;
  transition: background 0.2s;
  font-size: 1.2rem;
}

.user-icon:hover, .user-dropdown:focus-within .user-icon {
  background: #e3c7a6;
  color: #2d1e13;
}

.user-dropdown-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 120%;
  right: 0;
  min-width: 270px;
  background: rgba(45,30,19,0.98);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  padding: 1.2rem 1.2rem 1.5rem 1.2rem;
  z-index: 200;
  gap: 0.7rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(10px);
}

.user-dropdown:hover .user-dropdown-menu,
.user-dropdown:focus-within .user-dropdown-menu {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.user-dropdown-text {
  color: #fff;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 300;
  line-height: 1.3;
}

.user-input {
  width: 100%;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #bca17e;
  background: #fff;
  color: #2d1e13;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  outline: none;
  font-family: 'Gilroy', sans-serif;
}

.user-login-btn {
  width: 100%;
  padding: 0.5rem 0;
  border-radius: 8px;
  border: none;
  background: #bca17e;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.2rem;
  transition: background 0.2s;
  font-family: 'Gilroy', sans-serif;
}

.user-login-btn:hover {
  background: #e3c7a6;
  color: #2d1e13;
}

.lineas {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2.5rem;
  margin: 8rem 0 8rem 0;
}

.linea-card {
  position: relative;
  width: 430px;
  height: 540px;
  border-radius: 2rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.linea-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

.linea-overlay {
  width: 100%;
  padding: 2.2rem 2rem 1.5rem 2rem;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.linea-overlay h2 {
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
  color: #222;
  letter-spacing: 0.01em;
}

.linea-overlay p {
  font-size: 0.85rem;
  color: #bca17e;
  letter-spacing: 0.09em;
  margin-bottom: 2.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.linea-btn {
  font-size: 1.1rem;
  color: #222;
  text-decoration: none;
  border-bottom: 2px solid #222;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  font-weight: 500;
  display: inline-block;
  margin-top: auto;
}

.linea-btn:hover {
  color: #bca17e;
  border-color: #bca17e;
}

.linea-link {
  position: absolute;
  left: 2rem;
  bottom: 1.5rem;
  font-size: 1.1rem;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  background: none;
  padding-bottom: 4px;
  transition: color 0.4s, font-weight 0.4s;
  z-index: 2;
  display: inline-block;
}

.linea-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  border-top: 1.5px dashed #2d1e13;
  transition: width 0.6s;
}

.linea-link:hover {
  color: #2d1e13;
}

.linea-link:hover::before {
  width: 100%;
}

.nosotros {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1400px;
  margin: 3rem auto 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background: none;
}

.nosotros-img {
  flex: 1 1 50%;
  min-width: 420px;
  background: url('Assets/images/nosotros/c-0001.jpg');
  background-size: 100% auto, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-blend-mode: multiply;
  filter: brightness(0.93) contrast(1.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nosotros-info {
  flex: 1 1 50%;
  background: #f8f8f8;
  padding: 6.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}

.nosotros-info h2 {
  font-size: 2.7rem;
  font-weight: 500;
  margin-bottom: 2.2rem;
  color: #181818;
  letter-spacing: 0.01em;
}

.nosotros-info p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 400;
}

.nosotros-btn {
  display: inline-flex;
  align-items: center;
  background: #181818;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 2rem;
  padding: 0.8rem 2.2rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: background 0.2s, color 0.2s;
  gap: 0.7rem;
  width: 180px;
}

.nosotros-btn:hover {
  background: #bca17e;
  color: #181818;
}

.nosotros-btn .arrow {
  font-size: 1.2em;
  margin-left: 0.5em;
}

.corporativo {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1400px;
  margin: 8rem auto 8rem auto;
  border-radius: 14px;
  overflow: hidden;
  background: none;
}

.corporativo-info {
  flex: 1 1 50%;
  background: #f8f8f8;
  padding: 6.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

.corporativo-info h2 {
  font-size: 2.7rem;
  font-weight: 500;
  margin-bottom: 2.2rem;
  color: #181818;
  letter-spacing: 0.01em;
}

.corporativo-info p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 400;
}

.corporativo-img {
  flex: 1 1 50%;
  min-width: 420px;
  background: url('Assets/images/corporativo/corporativo.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}

.footer {
  width: 100%;
  background: linear-gradient(-8deg, #e3c7a6 28%, #856a48 109%);
  margin-top: 3rem;
  border-top: 1px solid #eee;
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1600px;
  margin: 0 auto;
  padding: 2.5rem 0 1.5rem 0;
  gap: 2rem;
}

.footer-col {
  flex: 1 1 0;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-left: 7rem;
}

.footer-title {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  color: #181818;
}

.footer-address {
  font-size: 1rem;
  color: #222;
  margin-bottom: 0.2rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 1rem;
  color: #181818;
  font-weight: 600;
  margin-bottom: 0.7rem;
  margin-top: 20px;
}

.footer-label {
  font-weight: 600;
}

.footer-icon {
  font-size: 1.1rem;
  margin-right: 0.3rem;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #222;
  margin-top: 10px;
}

.footer-contact a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #bca17e;
}

.footer-col.info a {
  color: #181818;
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  transition: color 0.2s;
}

.footer-col.info a:hover {
  color: #bca17e;
}

.footer-col.suscribe {
  align-items: flex-start;
}

.footer-sub {
  font-size: 0.98rem;
  color: #222;
  margin-bottom: 1.1rem;
}

.footer-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 370px;
  background: #fff;
  border: 1.5px solid #181818;
  border-radius: 2rem;
  padding: 0.2rem 0.2rem 0.2rem 1.2rem;
  margin-top: 0.2rem;
}

.footer-form input[type="email"] {
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  color: #222;
  flex: 1 1 auto;
  padding: 0.7rem 0;
  font-family: 'Gilroy', sans-serif;
}

.footer-form input[type="email"]::placeholder {
  color: #aaa;
  font-weight: 400;
}

.footer-send {
  background: #181818;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-left: 0.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.footer-send:hover {
  background: #bca17e;
  color: #181818;
}

.footer-bottom {
  border-top: 1px solid #eee;
  text-align: left;
  padding: 1.2rem 0 0.5rem 0;
  color: #131313;
  font-size: 1rem;
  max-width: 1600px;
  margin: 0rem 7rem;
}

.footer-up {
  position: fixed;
  right: 2.5rem;
  bottom: 2.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #181818;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  cursor: pointer;
  z-index: 300;
  transition: background 0.2s, color 0.2s;
}

.footer-up:hover {
  background: #bca17e;
  color: #181818;
}

/* =====================
   HERO TITLES (Reutilizable)
   ===================== */
.hero-title {
  width: 100%;
  background: none;
  padding: 160px 0 36px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  box-shadow: none;
  margin-bottom: 10px;
}
.hero-title h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #2d1e13;
  letter-spacing: 0.04em;
  margin: 2rem 0 0 0;
  padding: 0 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInTitle 1.1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}
@keyframes fadeInTitle {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 700px) {
  .hero-title {
    padding: 120px 0 18px 0;
  }
  .hero-title h1 {
    font-size: 2rem;
    padding: 0 6px;
  }
}

/* =====================
   NOSOTROS SECTION
   ===================== */
.nosotros-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0px auto;
  align-items: flex-start;
  justify-content: center;
}
.nosotros-col {
  flex: 1 1 350px;
  min-width: 320px;
}
.nosotros-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nosotros-img-rounded {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.nosotros-info-col {
  min-width: 340px;
}
.nosotros-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.nosotros-tabs {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 18px;
}
.nosotros-tab {
  background: none;
  border: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 8px 12px 12px 12px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s;
}
.nosotros-tab.active {
  border-bottom: 3px solid #bfa14a;
  color: #bfa14a;
}
.nosotros-tab-content {
  min-height: 120px;
  font-size: 1.1rem;
  margin-top: 18px;
  opacity: 1;
  transition: opacity 0.5s;
}
.fade-in {
  opacity: 1 !important;
  animation: fadeInTab 0.5s;
}
@keyframes fadeInTab {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 900px) {
  .nosotros-section {
    flex-direction: column;
    gap: 24px;
  }
  .nosotros-info-col {
    padding: 20px 12px 16px 12px;
  }
}

/* =====================
   ARTESANOS SECTION
   ===================== */
.artesanos-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  align-items: flex-start;
  justify-content: center;
}
.artesanos-col {
  flex: 1 1 350px;
  min-width: 320px;
}
.artesanos-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.artesanos-img-rounded {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.artesanos-info-col {
  background: #fff;
  border-radius: 16px;
  padding: 32px 32px 24px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  min-width: 340px;
  display: flex;
  align-items: center;
}
.artesanos-content {
  width: 100%;
}
.artesano-nombre {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2d1e13;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.artesano-resena {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
  text-align: justify;
}
@media (max-width: 900px) {
  .artesanos-section {
    flex-direction: column;
    gap: 24px;
  }
  .artesanos-info-col {
    padding: 20px 12px 16px 12px;
  }
  .artesano-nombre {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
  .artesano-resena {
    font-size: 1rem;
  }
}

/* =====================
   PRODUCTOS PRINCIPAL
   ===================== */
.lineas-botones {
  display: flex;
  gap: 18px;
  margin: 24px 0 0 0;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.linea-btn {
  padding: 12px 28px;
  border-radius: 8px;
  background: #f5f5f5;
  color: #2d1e13;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid #bfa14a00;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.linea-btn.selected, .linea-btn:focus {
  background: #bfa14a;
  color: #fff;
  border: 2px solid #bfa14a;
}
.linea-btn:hover {
  background: #e7d7a7;
  color: #2d1e13;
}

/* =====================
   CORPORATIVO SECTION
   ===================== */
.corporativo-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  align-items: flex-start;
  justify-content: center;
}
.corporativo-col {
  flex: 1 1 350px;
  min-width: 320px;
}
.corporativo-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.corporativo-img-rounded {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.corporativo-info-col {
  background: #fff;
  border-radius: 16px;
  padding: 32px 32px 24px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  min-width: 340px;
  display: flex;
  align-items: center;
}
.corporativo-content {
  width: 100%;
}
.corporativo-titulo {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2d1e13;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.corporativo-descripcion {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
  text-align: justify;
}

/* Sección de contacto corporativo */
.contacto-corporativo-section {
  background: #f8f9fa;
  padding: 60px 20px;
  margin-top: 60px;
}
.contacto-corporativo-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.contacto-corporativo-titulo {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d1e13;
  text-align: center;
  margin-bottom: 10px;
}
.contacto-corporativo-subtitulo {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}
.contacto-corporativo-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-row {
  display: flex;
  gap: 20px;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-label {
  font-weight: 600;
  color: #2d1e13;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.form-input, .form-textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
  font-family: inherit;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: #bfa14a;
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.contacto-corporativo-btn {
  background: #bfa14a;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
  align-self: center;
}
.contacto-corporativo-btn:hover {
  background: #a89040;
}

/* Pop-up de confirmación */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}
.popup-content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  margin: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  animation: popupSlideIn 0.3s ease-out;
}
@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.popup-icon {
  margin-bottom: 20px;
}
.checkmark {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}
.checkmark-circle {
  stroke: #bfa14a;
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark-check {
  stroke: #bfa14a;
  stroke-width: 2;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
.popup-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d1e13;
  margin-bottom: 10px;
}
.popup-message {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 25px;
}
.popup-close-btn {
  background: #bfa14a;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}
.popup-close-btn:hover {
  background: #a89040;
}

@media (max-width: 900px) {
  .corporativo-section {
    flex-direction: column;
    gap: 24px;
  }
  .corporativo-info-col {
    padding: 20px 12px 16px 12px;
  }
  .corporativo-titulo {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
  .corporativo-descripcion {
    font-size: 1rem;
  }
  .contacto-corporativo-container {
    padding: 30px 20px;
  }
  .contacto-corporativo-titulo {
    font-size: 2rem;
  }
  .form-row {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .contacto-corporativo-section {
    padding: 40px 10px;
  }
}

/* --- MENÚ MÓVIL --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3001;
  margin-left: 1.5rem;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #181818;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .hamburger {
    display: flex;
    position: fixed;
    top: 1.2rem;
    right: 1.2rem;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border-radius: 50%;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 24px rgba(0,0,0,0.10);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(.77,0,.18,1);
  padding: 0;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.2rem 1.2rem 0.5rem 1.2rem;
}
.close-mobile-menu {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #181818;
  cursor: pointer;
}
.mobile-menu-list {
  list-style: none;
  padding: 0 1.2rem;
  margin: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.mobile-menu-list > li {
  border-bottom: 1px solid #eee;
  padding: 0.7rem 0;
  position: relative;
}
.mobile-menu-list > li:last-child {
  border-bottom: none;
}
.mobile-menu-list > li > a {
  color: #181818;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  display: block;
  padding: 0.2rem 0;
}
.mobile-menu-list > li > a.active {
  font-weight: 700;
}
.mobile-submenu-toggle {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #181818;
  position: absolute;
  right: 0;
  top: 0.7rem;
  cursor: pointer;
}
.mobile-submenu {
  list-style: none;
  padding-left: 1.2rem;
  margin: 1.5rem 0 0 0;
  display: none;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu-list > li.open .mobile-submenu {
  display: flex;
}
.mobile-submenu li a {
  color: #888;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  padding: 0.2rem 0;
  display: block;
}
.mobile-menu-bottom {
  padding: 1.5rem 1.2rem;
  display: flex;
  justify-content: flex-start;
}
.mobile-login-btn {
  background: #ededed;
  color: #181818;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.mobile-login-btn .footer-icon {
  margin-right: 0.5rem;
}

.mobile-login-dropdown {
  display: none;
  position: absolute;
  left: 0;
  bottom: 60px;
  width: 100%;
  background-color: rgba(45, 30, 19, 0.9);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  padding: 1.2rem 1.2rem 1.5rem 1.2rem;
  z-index: 2100;
  gap: 0.7rem;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid #bca17e;
}
.mobile-login-dropdown.active {
  display: flex;
} 

/* Grid para productos */
#productos-lista {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  margin-bottom: 32px;
  justify-items: center;
  margin-left: 8rem;
  margin-right: 8rem;
}

@media (max-width: 1000px) {
  #productos-lista {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  #productos-lista {
    grid-template-columns: 1fr;
  }
}
.producto-item {
  width: 100%;
  max-width: 420px;
} 

/* === Tarjeta de producto tipo catálogo moderno === */
.producto-tarjeta {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(44,30,19,0.08);
  border: 1.5px solid #eee;
  max-width: 340px;
  width: 100%;
  margin: 18px auto;
  display: flex;
  flex-direction: column;
  align-items: center;

  transition: box-shadow 0.2s, transform 0.2s;
}
.producto-tarjeta:hover {
  box-shadow: 0 8px 32px rgba(44,30,19,0.13);
  transform: translateY(-4px) scale(1.02);
}
.producto-tarjeta-imgbox {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.producto-tarjeta-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.producto-tarjeta-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 0px 0px 22px 18px;
}
.producto-tarjeta-nombre {
  font-size: 1.18rem;
  font-weight: 700;
  color: #2d1e13;
  margin-bottom: 2px;
  margin-top: 2px;
}
.producto-tarjeta-precio {
  font-size: 1.08rem;
  color: #bfa14a;
  font-weight: 700;
  margin-bottom: 8px;
}
.producto-tarjeta-colores {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  align-items: center;
}
.color-circulo {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #d1d1d1;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: border 0.2s, box-shadow 0.2s;
}
.color-circulo.seleccionado {
  border: 2.5px solid #2d1e13;
  box-shadow: 0 0 0 2px #bfa14a33;
}
@media (max-width: 700px) {
  .producto-tarjeta {
    max-width: 98vw;
    padding: 10px 6px 16px 6px;
  }
  .producto-tarjeta-img {
    max-width: 90vw;
  }
} 

/* =====================
   PRODUCTO DETALLE
   ===================== */
.producto-detalle-main {
  padding-top: 120px;
  min-height: calc(100vh - 120px);
  background: #f8f9fa;
}

/* Botón volver al listado */
.producto-volver-container {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 20px 20px 0 20px;
}

.producto-volver-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #2d1e13;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.producto-volver-btn:hover {
  background: rgba(191, 161, 74, 0.1);
}

.producto-volver-icon {
  font-size: 1.2rem;
  font-weight: bold;
}

.producto-volver-text {
  font-family: 'Gilroy', sans-serif;
}

.producto-detalle-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Galería de imágenes */
.producto-galeria {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.producto-galeria-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.producto-imagen-principal {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.producto-imagen-grande {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.producto-imagen-grande:hover {
  transform: scale(1.05);
}

.producto-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 400px;
  overflow-y: auto;
  flex-shrink: 0;
}

.producto-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.producto-thumbnail:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.producto-thumbnail.seleccionado {
  border-color: #bfa14a;
  box-shadow: 0 0 0 2px #bfa14a33;
}

.producto-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Información del producto */
.producto-info {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: fit-content;
}

.producto-titulo {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d1e13;
  margin-bottom: 20px;
  line-height: 1.2;
}

.producto-descripcion {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.producto-seccion {
  margin-bottom: 30px;
}

.producto-seccion h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d1e13;
  margin-bottom: 15px;
}

/* Colores */
.producto-colores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.producto-color-circulo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #d1d1d1;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.producto-color-circulo:hover {
  transform: scale(1.1);
  border-color: #bfa14a;
}

/* Dimensiones */
.producto-dimensiones {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.producto-dimension-btn {
  padding: 10px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  color: #2d1e13;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 60px;
  text-align: center;
}

.producto-dimension-btn:hover {
  border-color: #bfa14a;
  background: #f8f8f8;
}

.producto-dimension-btn.seleccionado {
  background: #bfa14a;
  color: #fff;
  border-color: #bfa14a;
}

/* Precio */
.producto-precio {
  margin-top: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #bfa14a;
}

.producto-precio-valor {
  display: flex;
  align-items: center;
  gap: 10px;
}

.producto-precio-etiqueta {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d1e13;
}

.producto-precio-cantidad {
  font-size: 1.5rem;
  font-weight: 700;
  color: #bfa14a;
}

/* Botón de WhatsApp */
.producto-whatsapp-btn {
  width: 100%;
  padding: 16px 24px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.producto-whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
  font-size: 1.4rem;
}

.whatsapp-text {
  font-family: 'Gilroy', sans-serif;
}

/* Responsive */
@media (max-width: 900px) {
  .producto-detalle-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px 15px;
  }
  
  .producto-info {
    padding: 30px 25px;
  }
  
  .producto-titulo {
    font-size: 2rem;
  }
  
  .producto-galeria-content {
    flex-direction: column;
  }
  
  .producto-thumbnails {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }
  
  .producto-thumbnail {
    flex-shrink: 0;
  }
}

@media (max-width: 600px) {
  .producto-detalle-main {
    padding-top: 100px;
  }
  
  .producto-detalle-container {
    padding: 15px 10px;
  }
  
  .producto-info {
    padding: 20px 15px;
  }
  
  .producto-titulo {
    font-size: 1.8rem;
  }
  
  .producto-descripcion {
    font-size: 1rem;
  }
  
  .producto-dimensiones {
    gap: 8px;
  }
  
  .producto-dimension-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .producto-whatsapp-btn {
    padding: 14px 20px;
    font-size: 1.1rem;
  }
} 