@charset "UTF-8";

/* IMPORTS */
/* RESET */
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
}

/* SECCIÓN DE TRES CARACTERÍSTICAS */
.card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.2rem;
}

.card-text {
  font-size: 1rem;
}

.card-body {
  padding: 2rem;
}

/* SECCIÓN MULTIMEDIA */
.sectionMultimedia {
  padding: 40px 0;
}

.sectionMultimedia h3 {
  color: #3b2d27;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sectionMultimedia .containerSpotify,
.sectionMultimedia .containerYoutube {
  width: 100%;
}

.sectionMultimedia iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* Estilos para el Footer */
footer {
  background-color: #7a2b3b;
  /* Color de fondo borde */
}

footer h3 {
  font-size: 22px;
  font-weight: bold;
}

footer .input-group {
  max-width: 400px;
  margin: 0 auto;
}

footer .social-media-links a {
  transition: color 0.3s;
}

footer .social-media-links a:hover {
  color: #ffc107;
}

.social-media-links i {
  font-size: 1.5rem;
}

.social-media-links {
  list-style-type: none;
}

footer .input-group input {
  padding: 10px;
  border-radius: 5px 0 0 5px;
  border: 1px solid #ddd;
}

footer .input-group button {
  border-radius: 0 5px 5px 0;
  background-color: #ffc107;
  color: white;
}

/* PAGINA PRODUCTOS */
#galeria {
  padding-top: 80px;
}

#galeria h2 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
}

#galeria p {
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
}

#galeria .col-lg-4 {
  margin: 0 !important;
  padding: 20px;
}

#galeria img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: 0.1s;
}

#galeria img:hover {
  border: 5px solid #ff5f8f;
  cursor: pointer;
}

.row {
  margin-bottom: 20px;
}

#productsList {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}

#productsList .card {
  width: 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1.5px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 2rem;
  overflow: hidden;
}

#productsList .card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 3px 12px rgba(0, 0, 0, 0.06);
}

#productsList .card .card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #f8f8f8;
}

#productsList .card .card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#productsList .card .card-body .card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #a5740c;
  margin-bottom: 0.5rem;
  font-family: "Staatliches", cursive;
}

#productsList .card .card-body .card-text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.5rem;
}

#productsList .card .card-body .priceText {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ff5f8f;
  margin-bottom: 1rem;
}

#productsList .card .card-body .goToShop {
  background: linear-gradient(90deg, #a5740c 60%, #ff5f8f 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

#productsList .card .card-body .goToShop:hover {
  background: linear-gradient(90deg, #ff5f8f 60%, #a5740c 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
  #productsList {
    gap: 1rem;
  }

  #productsList .card {
    width: 45vw;
    min-width: 220px;
  }
}

@media (max-width: 600px) {
  #productsList {
    flex-direction: column;
    align-items: center;
  }

  #productsList .card {
    width: 90vw;
    min-width: 180px;
  }
}

.badge.bg-danger {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1rem;
}

/* PAGINA PROMOCIONES */
.bodyWallpaper {
  background-image: linear-gradient(rgba(0, 0, 0, 0.692), rgba(0, 0, 0, 0.637)), url(/img/vintage8.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.wallpaperPromociones {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.container-cards-promos {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 30px;
}

.container-cards-promos img {
  height: 400px;
  padding: 5px;
  border-radius: 10px;
}

.container-cards-promos p {
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  color: #7c1c19;
  font-style: italic;
}

.container-cards-promos button {
  width: 100px;
  align-self: center;
  margin-bottom: 10px;
  animation-name: oferta;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 3s;
}

@keyframes oferta {
  0% {
    transform: scale(0);
    border: none;
  }

  25% {
    transform: scale(1.1);
    font-weight: bold;
    border: none;
  }

  50% {
    transform: scale(1.1);
    background-color: #d9ff00;
    color: black;
    font-weight: bold;
    border: none;
  }

  75% {
    transform: scale(1.1);
    font-weight: bold;
    border: none;
  }

  100% {
    transform: scale(0);
    border: none;
  }
}

.wallpaperPromociones {
  display: flex;
  padding-top: 150px;
  padding-bottom: 20px;
  padding-left: 10px;
}

.tituloPromociones h2 {
  font-size: 40px;
  color: #ffd2d2;
  font-weight: bold;
}

.tituloPromociones h3 {
  font-size: 30px;
  font-weight: bold;
  color: aliceblue;
  font-style: italic;
}

/* PAGINA NOSOTROS */
.wallpaperNosotros {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wallpaperNosotros h2 {
  padding-top: 120px;
  color: #000000;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
}

.wallpaperNosotros p {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
}

.wallpaperNosotros .imagenesNosotros {
  width: 100%;
  height: 500px;
  display: flex;
  margin-left: 300px;
}

.wallpaperNosotros .imagenesNosotros img {
  margin-left: 50px;
  margin-bottom: 50px;
}

/* FORMULARIO DE CONTACTO */
.form-contact {
  padding-top: 100px;
}

.contact-section {
  padding-top: 100px;
}

/* ── SOCIAL HUB (reemplaza formulario de contacto) ── */
.socials-hub {
  padding: 0 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.socials-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c4986b;
  margin-bottom: 0.75rem;
}

.socials-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  color: #1a1614;
  margin-bottom: 0.85rem;
}

.socials-title em {
  font-style: italic;
  color: #e63946;
}

.socials-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #6a5f58;
  max-width: 50ch;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.socials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.social-card {
  display: block;
  text-decoration: none;
  border-radius: 18px;
  padding: 1.35rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(10, 5, 3, 0.22);
  text-decoration: none;
}

.social-card-inner {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.social-card-icon {
  font-size: 1.9rem;
  flex-shrink: 0;
  line-height: 1;
  color: #fff;
}

.social-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  flex: 1;
  min-width: 0;
}

.social-card-platform {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
}

.social-card-handle {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

.social-card-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 0.75rem;
  transition: letter-spacing 0.22s ease, color 0.22s ease;
}

.social-card:hover .social-card-cta {
  letter-spacing: 0.14em;
  color: #fff;
}

.social-card--instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 55%, #fcb045 100%);
}

.social-card--facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0a5aba 100%);
}

.social-card--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.social-card--tiktok {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
  .socials-hub {
    padding: 2rem 0 1.5rem;
  }
  .socials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .socials-hub {
    padding-left: 0;
  }
}

/* PAGINA CATALOGO */
.container-gridsys section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container-gridsys h2 {
  padding-top: 120px;
  font-weight: bold;
  color: #7c1c19;
}

.buttonCatalogo {
  width: 70px;
  height: 30px;
  border: none;
  border-radius: 2px;
  background-color: burlywood;
  bottom: 75px;
  left: 25px;
  transition: all 0.3s;
  font-weight: bold;
}

.buttonCatalogo:hover {
  background-color: #9e3f3b;
  color: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: 2px 2px 10px #ffffff;
}

.px-1 {
  padding-left: 10px;
  padding-right: 10px;
}

.mx-1 {
  margin-left: 10px;
  margin-right: 10px;
}

.px-2 {
  padding-left: 20px;
  padding-right: 20px;
}

.mx-2 {
  margin-left: 20px;
  margin-right: 20px;
}

.px-3 {
  padding-left: 30px;
  padding-right: 30px;
}

.mx-3 {
  margin-left: 30px;
  margin-right: 30px;
}

.px-4 {
  padding-left: 40px;
  padding-right: 40px;
}

.mx-4 {
  margin-left: 40px;
  margin-right: 40px;
}

.px-5 {
  padding-left: 50px;
  padding-right: 50px;
}

.mx-5 {
  margin-left: 50px;
  margin-right: 50px;
}

.px-6 {
  padding-left: 60px;
  padding-right: 60px;
}

.mx-6 {
  margin-left: 60px;
  margin-right: 60px;
}

.px-7 {
  padding-left: 70px;
  padding-right: 70px;
}

.mx-7 {
  margin-left: 70px;
  margin-right: 70px;
}

.px-8 {
  padding-left: 80px;
  padding-right: 80px;
}

.mx-8 {
  margin-left: 80px;
  margin-right: 80px;
}

.px-9 {
  padding-left: 90px;
  padding-right: 90px;
}

.mx-9 {
  margin-left: 90px;
  margin-right: 90px;
}

.px-10 {
  padding-left: 100px;
  padding-right: 100px;
}

.mx-10 {
  margin-left: 100px;
  margin-right: 100px;
}

.py-1 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.my-1 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.py-2 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.my-2 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.py-3 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.my-3 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.py-4 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.my-4 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.py-5 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.my-5 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.objeto-de-color-naranja {
  background-color: #ffac7c;
}

.objeto-de-color-rosa {
  background-color: #ff5f8f;
}

.objeto-de-color-bordo {
  background-color: #a5740c;
}

#catalogo-galeria img {
  transition: transform 0.2s, box-shadow 0.2s;
}

#catalogo-galeria img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
  .carouselPrincipalContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .carousel {
    align-self: center;
  }

  .carousel-control-next-icon {
    z-index: 1;
  }

  .container-content-catalogo button {
    position: relative;
    left: 110px;
  }

  .sectionCaracter {
    flex-direction: column;
  }

  .sectionCaracter .caracteristica {
    padding-top: 20px;
  }

  .sectionMultimedia {
    flex-direction: column;
    align-items: center;
  }

  /* RESPONSIVE PRODUCTOS */
  /* RESPONSIVE PROMOCIONES */
}

@media (max-width: 768px) and (max-width: 568px) {
  .sectionMultimedia iframe {
    width: 350px;
    height: 250px;
  }

  nav {
    width: 100%;
  }

  nav .container-fluid img {
    position: relative;
    left: 140%;
    bottom: 30px;
  }

  .container-content {
    display: block;
    width: 100%;
  }

  .container-content img {
    width: 270px;
    height: 100%;
  }

  .container-content button {
    position: relative;
    top: -100px;
    left: 100px;
  }

  .sectionCaracter {
    margin-top: -280px;
  }

  /* PAGINA NOSOTROS */
  .wallpaperNosotros {
    position: relative;
    top: 50px;
  }

  /* PAGINA CONTACTANOS */
  .title_contactanos {
    padding-top: 100px;
  }

  /* PAGINA CATALOGO */
  .container-gridsys {
    padding-top: 50px;
  }
}

@media (max-width: 768px) {
  #galeria {
    padding-top: 120px;
  }

  footer {
    width: 100%;
  }

  .wallpaperPromociones {
    display: flex;
    text-align: center;
    position: relative;
    top: 15px;
  }

  .container-cards-promos {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .footer-container {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 391px) {

  /* RESPONSIVE INDEX */
  nav {
    width: 100%;
  }

  nav .container-fluid img {
    position: relative;
    left: 100px;
    bottom: 30px;
  }

  nav .navbar-collapse {
    position: relative;
    bottom: 45px;
  }

  .carouselPrincipalContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .carousel img {
    width: 100% !important;
  }

  .container-content {
    position: relative;
  }

  .container-content img {
    display: none;
  }

  .container-content button {
    background-color: rgb(200, 255, 0);
    width: 70px;
    height: 30px;
    position: fixed;
    top: 350px;
    left: 0;
    color: black;
    font-size: 12px;
    font-weight: bold;
    border: none;
  }

  .sectionCaracter {
    margin-top: 0;
  }

  .sectionMultimedia {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .sectionMultimedia iframe {
    width: 100%;
    height: auto;
  }

  /* RESPONSIVE PROMOCIONES */
  .wallpaperPromociones {
    display: flex;
    text-align: center;
    position: relative;
    top: 15px;
  }

  .container-cards-promos {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* PAGINA NOSOTROS */
  .wallpaperNosotros {
    position: relative;
    top: 50px;
  }

  .footer-container {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .container-gridsys {
    padding-top: 200px;
  }

  .container-gridsys h2 {
    display: none;
  }
}

/* =========================================================
   FOOTER — estilos globales (compartidos en todas las páginas)
   ========================================================= */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 2.5rem;
  background: linear-gradient(140deg, #1e0c14 0%, #4a1a28 45%, #180810 100%);
  color: #fff4ee;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/aestethic.jpg') center/cover no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

.footer-brand-card,
.footer-news-card,
.footer-link-block {
  border: none;
  background: transparent;
  backdrop-filter: none;
}
.footer-brand-card,
.footer-news-card { border-radius: 0; padding: 0; }
.footer-link-block {
  border-radius: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.8rem;
  transition: none;
  height: 100%;
}
.footer-link-block:hover { transform: none; }

.footer-eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c4986b;
  margin-bottom: 0.8rem;
}

.footer-brand-card {
  padding-right: 3rem;
  padding-bottom: 0.5rem;
}

.footer-brand-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.footer-brand-card p,
.footer-link-block p,
.site-footer-bottom p {
  color: rgba(255,244,238,0.75);
  line-height: 1.7;
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: rgba(255,255,255,0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.82rem;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.footer-socials a:hover {
  background: rgba(196,152,107,0.15);
  border-color: #c4986b;
  color: #c4986b;
}

.footer-community-card {
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  padding: 0 0 0 2.5rem;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.footer-community-card h4 {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.footer-community-card p { color: rgba(255,244,238,0.7); font-size: 0.88rem; line-height: 1.7; }

.footer-mini-points {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.footer-mini-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  border-radius: 0;
  padding: 0;
  color: rgba(255,244,238,0.6);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}
.footer-mini-points i { color: #c4986b; font-size: 0.72rem; }

.footer-link-block h5, .footer-link-block h4 {
  color: rgba(255,255,255,0.95);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-link-block a {
  display: inline-block;
  color: rgba(255,244,238,0.75);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
  position: relative;
  transition: color 0.22s ease, transform 0.22s ease;
}
.footer-link-block a:hover { color: #c4986b; transform: translateX(4px); }

.footer-link-block--contact p {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}
.footer-link-block--contact i { color: #c4986b; margin-top: 0.18rem; }

.footer-links-row {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-top: 3rem;
}

.site-footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer-bottom p { font-size: 0.82rem; color: rgba(255,244,238,0.55); }

.footer-bottom-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: rgba(255,244,238,0.65);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.22s ease;
}
.footer-bottom-links a:hover { color: #c4986b; }

@media (max-width: 991.98px) {
  .footer-brand-card {
    padding-right: 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-community-card {
    border-left: none;
    border-top: none;
    padding: 0;
    padding-top: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .site-footer { padding: 3.5rem 0 2rem; }
  .footer-link-block { padding-top: 1.4rem; }
}
}