@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/*FUENTES*/

* .dm-sans {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
}

html {
  /*FORMATEA*/
  box-sizing: border-box;
  /*font-size: 62.5%;
     10 PX = 1rem **/
  /*RESTABLECER EL TAMA;O REM DE LETRA*/
}

:root {
    --noir: #0c0a0b;
    --champagne: #d4b896;
    --wine: #8d3f3f;
    --ivory: #f6f4f3;
    --noir2: #1a1617;
}

body {
    background-color: var(--noir);
    color: var(--ivory);
}

/*GOLBALES*/
p {
  margin: 0 !important;
}

a {
  text-decoration: none !important;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.t-a1 {
  color: #f6f4f3;
}

.t-a2 {
  color: #d4d2e3;
}

.t-a3 {
  color: #775f58;
}

.t-a4 {
  color: #8d3f3f;
}

/*BORDES COLORES*/

.b-complete-a1 {
  border: 2px solid #f6f4f3;
}

.b-complete-a2 {
  border: 2px solid #d4d2e3;
}

.b-complete-a3 {
  border: 2px solid #775f58;
}

.b-complete-a4 {
  border: 2px solid #8d3f3f;
}

.bg-a1 {
  background-color: #f6f4f3;
}

.bg-a2 {
  background-color: #d4d2e3;
}

.bg-a3 {
  background-color: #775f58;
}

.bg-a4 {
  background-color: #8d3f3f;
}

.border-personalizado {
  border-radius: 100px;
}

.border-personalizado-img {
  border-radius: 50px;
}

.border-personalizado-40 {
  border-radius: 40px;
}

/*BOTONES*/
.w-boton {
  width: 150px;
}

.movil {
  display: none;
}

.desktop {
  display: block;
}

@media only screen and (max-width: 991px) {
  .movil {
    display: block;
  }

  .desktop {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .margin-header {
    margin: 0px;
    margin-bottom: 100px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-content: flex-end !important;
  }
}

.m-personalizado {
  margin-top: 150px;
  margin-bottom: 150px;
}

/* CARDS & SHADOWS */
.shadow-soft {
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

/* PRICING CARDS */
.pricing-card {
  border: none;
  border-radius: 20px;
  background: #fff;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  padding: 2rem 1rem;
  border-radius: 20px 20px 0 0;
  background-color: #f8f9fa;
  /* Fallback */
}

.pricing-header.popular {
  background-color: #8d3f3f;
  color: #fff;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #8d3f3f;
}

.pricing-header.popular .pricing-price,
.pricing-header.popular p {
  color: #fff;
}

.pricing-features {
  padding: 1.5rem;
  flex-grow: 1;
}

.pricing-features ul {
  text-align: left;
  padding-left: 0;
}

.pricing-features li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
  color: #555;
}

.pricing-features li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #8d3f3f;
  font-size: 1.25em;
  line-height: 1;
}

.pricing-footer {
  padding: 1.5rem;
  margin-top: auto;
}

/* HERO SECTION IMPROVEMENTS */
.hero-text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* GENERAL UTILITIES */
.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(141, 63, 63, 0.1);
  color: #8d3f3f;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}


/* FLOATING CART BUTTON */
.btn-cart-float {
  position: fixed;
  bottom: 100px;
  left: 30px;
  background-color: #8d3f3f;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 24px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-cart-float:hover {
  background-color: #775f58;
  transform: scale(1.1);
  color: #fff;
}

/* FLOATING WHATSAPP BUTTON */
.btn-whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #fff;
}

/* ELEGANCE UTILITIES */
.letter-spacing-2 {
  letter-spacing: 2px;
}

.hover-scale {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.opacity-90 {
  opacity: 0.9;
}

.text-shadow-hero {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}