/* =========================================================
   MAHUA · STYLE.CSS ORGANIZADO
   Carpintería artesanal · Saladillo
========================================================= */

/* =========================================================
   01 · VARIABLES
========================================================= */

:root {
  --font-title: "Playfair Display", serif;
  --font-text: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;

  --bg: #fffaf6;
  --surface: #ffffff;
  --soft: #fbf2ea;

  --brand: #8a4b22;
  --brand-dark: #763e1c;

  --text: #2b2b2b;
  --muted: #292725;

  --border: rgba(138, 75, 34, 0.12);
  --shadow-soft: 0 10px 30px rgba(60, 32, 10, 0.05);
  --shadow-premium: 0 18px 40px rgba(60, 32, 10, 0.08);

  --radius: 24px;
}

/* =========================================================
   02 · BASE
========================================================= */

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: var(--font-text);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
}

.container {
  max-width: 1380px;
  margin: 5px auto;
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
}

section {
  scroll-margin-top: 92px;
}

.section-pad {
  padding: 64px 0;
}

.section-soft {
  background-color: var(--soft);
}

.section-head {
  margin-bottom: 1rem;
}

.section-line {
  display: inline-block;
  width: 64px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: rgba(138, 75, 34, 0.22);
}

/* =========================================================
   03 · ACCESIBILIDAD
========================================================= */

.skip-link {
  position: absolute;
  top: -50px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
}

.skip-link:focus {
  top: 1rem;
  left: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--border);
  border-radius: 12px;
  z-index: 1000;
}

/* =========================================================
   04 · TIPOGRAFÍA
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  color: var(--brand);
  letter-spacing: 0.3px;
}

h1 {
  font-weight: 800;
}

h2 {
  font-weight: 700;
}

h3 {
  font-weight: 400;
}

p,
.nav-link,
.btn,
.chip,
footer {
  font-family: var(--font-text);
}

.section-title,
.display-title {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--brand);
}

.section-subtitle {
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--muted);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--brand);
  font-size: clamp(0.72rem, 1vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.text-muted {
  color: var(--muted) !important;
}

.text-brand {
  color: var(--brand);
}

/* =========================================================
   05 · NAVBAR
========================================================= */

.navbar-mahua {
  background: linear-gradient(
    180deg,
    rgba(255, 248, 242, 0.96) 0%,
    rgba(248, 239, 231, 0.92) 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(138, 75, 34, 0.1);
  box-shadow: 0 4px 20px rgba(60, 32, 10, 0.05);
  padding-top: 15px;
  padding-bottom: 15px;
  transition:
    background 0.35s ease,
    padding 0.35s ease,
    box-shadow 0.35s ease;
}

.navbar-mahua.scrolled {
  background: linear-gradient(
    180deg,
    rgba(255, 250, 246, 0.98) 0%,
    rgba(245, 235, 225, 0.95) 100%
  );
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand-logo {
  height: 50px;
  width: auto;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.navbar-brand:hover .brand-logo {
  transform: scale(1.04);
  opacity: 0.95;
}

.navbar-collapse {
  transition: all 0.3s ease;
}

.navbar-mahua .nav-link {
  position: relative;
  color: #7a4b2c;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 0.55rem 0.85rem;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.navbar-mahua .nav-link:hover,
.navbar-mahua .nav-link:focus,
.navbar-mahua .nav-link.active {
  color: var(--brand);
  transform: translateY(-1px);
}

.navbar-mahua .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 4px;
  width: 0;
  height: 2px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--brand), #c48b5a);
  transition: width 0.35s ease;
}

.navbar-mahua .nav-link:hover::after,
.navbar-mahua .nav-link:focus::after,
.navbar-mahua .nav-link.active::after {
  width: calc(100% - 28px);
}

.navbar-toggler {
  border: 1px solid rgba(138, 75, 34, 0.22);
  border-radius: 12px;
  padding: 0.45rem 0.65rem;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.navbar-toggler:hover {
  background: rgba(138, 75, 34, 0.04);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(138, 75, 34, 0.18);
}

/* =========================================================
   06 · BOTONES
========================================================= */

.btn-mahua,
.btn-whatsapp,
.btn-outline-light-mahua,
.btn-outline-mahua {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.68rem 1.25rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-mahua::before,
.btn-whatsapp::before,
.btn-outline-light-mahua::before,
.btn-outline-mahua::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.btn-mahua,
.btn-whatsapp {
  color: #fff;
  border: 1px solid rgba(138, 75, 34, 0.72);
  background: linear-gradient(135deg, #b77442 0%, #98572c 48%, #7a431f 100%);
  box-shadow:
    0 8px 18px rgba(138, 75, 34, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn-mahua:hover,
.btn-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
  border-color: rgba(122, 67, 31, 0.9);
  background: linear-gradient(135deg, #c27c49 0%, #98572c 48%, #6f3c1c 100%);
  box-shadow:
    0 12px 24px rgba(138, 75, 34, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.btn-outline-light-mahua,
.btn-outline-mahua {
  color: var(--brand-dark);
  border: 1px solid rgba(138, 75, 34, 0.16);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(255, 248, 242, 0.72)
  );
  box-shadow:
    0 8px 18px rgba(60, 32, 10, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.btn-outline-light-mahua:hover,
.btn-outline-mahua:hover {
  color: var(--brand);
  transform: translateY(-2px);
  border-color: rgba(138, 75, 34, 0.28);
  background: linear-gradient(180deg, #fff, #fff6ec);
  box-shadow:
    0 12px 24px rgba(60, 32, 10, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.navbar-mahua .btn-whatsapp {
  padding: 0.55rem 1.15rem;
  font-size: 0.9rem;
}

.hero-cover .btn-whatsapp,
.hero-cover .btn-outline-light-mahua {
  min-width: 175px;
}

.btn-about-action {
  min-width: 200px;
}

.btn i {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
}

/* =========================================================
   07 · HERO
========================================================= */

.hero-cover {
  position: relative;
  min-height: 72vh;
  padding-top: 150px;
  padding-bottom: 105px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background-image: url("../img/fondo.webp");
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
}

.hero-cover::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(255, 250, 246, 0.78) 0%,
    rgba(255, 250, 246, 0.66) 48%,
    rgba(255, 250, 246, 0.54) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  margin-bottom: 0.9rem;
  color: #6d3f23;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.hero-brand {
  margin-bottom: 0.75rem;
  color: var(--brand);
  font-family: var(--font-title);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-location {
  margin-bottom: 1.2rem;
  color: #7a4b2c;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.hero-title {
  max-width: 760px;
  margin: 0 auto 1.1rem;
  color: #5e3218;
  font-family: var(--font-title);
  font-size: clamp(1.65rem, 3.4vw, 2.65rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.2px;
}

.hero-tagline {
  max-width: 720px;
  margin: 0 auto 2rem;
  color: #3d342d;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 400;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-service-area {
  margin-top: 1.35rem;
  color: #5f4a3b;
  font-size: 0.95rem;
  font-weight: 500;
}
/* =========================================================
   08 · CHIPS
========================================================= */

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border: 1px solid rgba(138, 75, 34, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.2;
}

.chips-head {
  margin-bottom: 6px;
}

/* =========================================================
   09 · IMÁGENES / MARCOS
========================================================= */

.img-frame {
  width: 100%;
  max-width: 420px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-premium);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.img-frame:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(60, 32, 10, 0.1);
}

.img-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.img-frame:hover img {
  transform: scale(1.02);
}

.img-caption {
  padding: 1rem 1.15rem;
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  background: linear-gradient(
    180deg,
    rgba(255, 250, 246, 0.94) 0%,
    rgba(248, 240, 232, 0.98) 100%
  );
}

/* =========================================================
   10 · LISTAS
========================================================= */

.bullets,
.steps {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.bullets li,
.steps li {
  margin-bottom: 0.75rem;
  color: #3b3b3b;
  line-height: 1.7;
}

.bullets li:last-child,
.steps li:last-child {
  margin-bottom: 0;
}

/* =========================================================
   11 · QUIÉNES SOMOS
========================================================= */

.about-card {
  height: 100%;
  padding: 1.6rem;
  border: 1px solid rgba(138, 75, 34, 0.1);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 248, 242, 0.94) 100%
  );
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.07);
}

.about-h3 {
  margin-bottom: 1rem;
  color: var(--brand);
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
}

/* =========================================================
   12 · PRODUCTOS / CATÁLOGO PREMIUM
========================================================= */

.product-card {
  overflow: hidden;
  border: none;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(60, 32, 10, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(60, 32, 10, 0.14);
}

.product-media {
  padding: 0.75rem;
  background: #f7f1eb;
}

.product-img{
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
    border-radius:18px;
}

.product-img-door {
  object-fit: contain;
  object-position: center;
  background: #f7f1eb;
  padding: 0.6rem;
}

.product-card .card-body {
    padding:1.4rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.product-kicker{
    font-size:.68rem;
    letter-spacing:2px;
    color:#9b663d;
    text-transform:uppercase;
    margin-bottom:.7rem;
}
.product-kicker,
.product-text,
.product-price {
  display: none;
}

.product-img {
  height: 360px;
  object-fit: cover;
}

.product-img-door {
  object-fit: contain;
  background: #f7f1eb;
  padding: 0.6rem;
}
.product-card .card-title{
    font-family:var(--font-title);
    font-size:1.35rem;
    font-weight:500;
    line-height:1.2;
    color:var(--brand);
     margin-top:.4rem;
    margin-bottom:1rem;
}
.product-card .btn-mahua{
    width:auto;
    min-width:140px;
    margin:auto;
   padding:.68rem 1.3rem;
    border-radius:40px;
    font-size:.88rem;
    font-weight:600;
}
/* =========================================================
   13 · MODAL PRODUCTO
========================================================= */

.mahua-modal-content {
  overflow: hidden;
  border: none;
  border-radius: 32px;
  background: linear-gradient(180deg, #fffdfa 0%, #f9f3ed 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.14);
}

.mahua-modal-header,
.mahua-modal-body {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.mahua-modal-header {
  border-bottom: 1px solid rgba(138, 75, 34, 0.08);
}

.modal-kicker {
  margin: 0 0 0.45rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.modal-title {
  color: var(--brand-dark);
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  line-height: 1.1;
}

.modal-product-gallery {
  height: 100%;
  min-height: clamp(420px, 48vw, 620px);
  padding: 1rem;
  overflow: hidden;
  border-radius: 26px;
  background: #f7f2ec;
}

.modal-product-gallery .carousel-inner,
.modal-product-gallery .carousel-item {
  height: 100%;
}

.modal-product-image {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  display: block;
}

.modal-info-card,
.modal-text-card {
  height: 100%;
  padding: clamp(1.1rem, 2vw, 1.4rem);
  border: 1px solid rgba(138, 75, 34, 0.1);
  border-radius: 24px;
  background: rgba(255, 250, 246, 0.56);
}

.modal-description {
  margin-bottom: 1rem;
  color: #5f5a55;
  line-height: 1.85;
}

.modal-measures {
  margin-bottom: 1.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(138, 75, 34, 0.1);
}

.modal-subtitle {
  margin-bottom: 0.75rem;
  color: var(--brand);
  font-size: clamp(1.45rem, 2vw, 1.8rem);
}

.modal-list {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.9;
}

.modal-price-box,
.modal-price-title,
.modal-price-list {
  display: none;
}

.modal-actions {
  justify-content: center;
  align-items: center;
}

.modal-btn {
  min-width: 210px;
  min-height: 54px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.modal-actions .btn-whatsapp {
  box-shadow: 0 12px 26px rgba(138, 75, 34, 0.2);
}

.modal-actions .btn-whatsapp:hover,
.modal-actions .btn-outline-mahua:hover {
  transform: translateY(-2px);
}

.modal-actions .btn-outline-mahua {
  border: 1px solid rgba(138, 75, 34, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand);
}

.modal-actions .btn-outline-mahua:hover {
  border-color: rgba(138, 75, 34, 0.35);
  background: #fff;
  color: var(--brand-dark);
}

/* =========================================================
   14 · CARRUSELES
========================================================= */

.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(138, 75, 34, 0.82);
  background-size: 18px;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--brand-dark);
  transform: scale(1.08);
}

/* =========================================================
   15 · PROCESO
========================================================= */

#proceso,
.proceso-section {
  position: relative;
  padding-block: clamp(3.5rem, 6vw, 5rem);
  background: linear-gradient(180deg, #f7f1eb 0%, #efe5da 100%);
}

#proceso .container {
  width: 100%;
  max-width: 1100px;
}

#proceso .section-head {
  margin-bottom: 2.2rem;
}

.process-card {
  position: relative;
  min-height: 245px;
  padding: clamp(1.4rem, 2.5vw, 1.8rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(138, 75, 34, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 248, 242, 0.92) 100%
  );
  box-shadow: 0 14px 32px rgba(60, 32, 10, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(138, 75, 34, 0.045),
    transparent 42%
  );
  pointer-events: none;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(60, 32, 10, 0.12);
}

.process-number {
  position: absolute;
  top: 16px;
  right: 20px;
  color: rgba(138, 75, 34, 0.13);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 700;
  line-height: 1;
}

.process-icon {
  width: clamp(58px, 7vw, 70px);
  height: clamp(58px, 7vw, 70px);
  margin-inline: auto;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--brand) 0%, #b56b39 100%);
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 1.8rem);
  box-shadow: 0 12px 24px rgba(138, 75, 34, 0.2);
}

.process-title {
  margin-bottom: 0.7rem;
  color: var(--brand-dark);
  font-size: clamp(1.2rem, 2vw, 1.35rem);
  font-weight: 700;
}

.process-text {
  margin: 0;
  color: #5f5a55;
  font-size: clamp(0.92rem, 1vw, 0.98rem);
  line-height: 1.7;
}

/* =========================================================
   16 · GALERÍA
========================================================= */

.gallery-section {
  background: linear-gradient(180deg, #f7f1eb 0%, #efe5da 100%);
}

.gallery-premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.gallery-item {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(60, 32, 10, 0.1);
}

.gallery-item-lg {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 660px;
}

.gallery-item-wide {
  grid-column: span 2;
  min-height: 320px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.8rem;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

.gallery-overlay span {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.gallery-mobile-card {
  padding: 1rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(60, 32, 10, 0.12);
}

.gallery-mobile-card .carousel-inner {
  border-radius: 26px;
  overflow: hidden;
}

.gallery-mobile-img {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
}

#galeriaMobile .carousel-control-prev-icon,
#galeriaMobile .carousel-control-next-icon {
  padding: 1.3rem;
  border-radius: 50%;
  background-color: rgba(138, 75, 34, 0.9);
}

/* =========================================================
   17 · CONTACTO
========================================================= */

.contact-section {
  overflow: hidden;
  background: linear-gradient(180deg, #f6efe8 0%, #efe4d7 100%);
}

.contact-head {
  position: relative;
}

.contact-logo-wrap {
  margin-bottom: 1.4rem;
}

.contact-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  opacity: 0.98;
  filter: drop-shadow(0 12px 24px rgba(138, 75, 34, 0.12));
}

.contact-card {
  height: 100%;
  padding: 2.4rem;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(138, 75, 34, 0.1);
  box-shadow: 0 22px 55px rgba(60, 32, 10, 0.1);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(138, 75, 34, 0.08);
}

.contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, #b56b39 100%);
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 12px 24px rgba(138, 75, 34, 0.22);
}

.contact-label {
  margin-bottom: 0.35rem;
  color: var(--brand-dark);
  font-size: 1rem;
  font-weight: 700;
}

.contact-text {
  color: #6d655e;
  line-height: 1.8;
}

.contact-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  color: var(--brand-dark);
}

.contact-note {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(138, 75, 34, 0.08),
    rgba(181, 107, 57, 0.06)
  );
  border: 1px solid rgba(138, 75, 34, 0.08);
}

.contact-note-title {
  margin-bottom: 0.75rem;
  color: var(--brand-dark);
  font-weight: 700;
}

.contact-map iframe {
  filter: grayscale(12%) contrast(1.05) saturate(0.92);
}

.btn-map-premium {
  border-radius: 18px;
  padding: 0.95rem 1.4rem;
  font-weight: 600;
  border: 1px solid rgba(138, 75, 34, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-dark);
}

.btn-map-premium:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* =========================================================
   18 · FOOTER
========================================================= */

.footer-mahua {
  background: linear-gradient(180deg, #3a2115 0%, #24140d 100%);
  color: #f8efe6;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.footer-name {
  color: #fff4e8;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-claim {
  color: #d8a35f;
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
}

.footer-text {
  color: rgba(255, 244, 232, 0.72);
  line-height: 1.8;
}

.footer-title {
  margin-bottom: 1rem;
  color: #fff4e8;
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
}

.footer-social {
  margin-top: 1rem;
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff4e8;
  font-size: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #d8a35f;
  color: #24140d;
  transform: translateY(-4px);
}

.mylosoul-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mylosoul-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.mylosoul-text {
  color: #fff4e8;
  font-weight: 700;
}

.footer-mini {
  color: rgba(255, 244, 232, 0.6);
  font-size: 0.92rem;
}

.footer-hr {
  border-color: rgba(255, 255, 255, 0.12);
}

.footer-copy {
  color: rgba(255, 244, 232, 0.62);
  font-size: 0.9rem;
}
/* =========================================================
   BOTÓN WHATSAPP FLOTANTE - MAHUA
========================================================= */

body .whatsapp-float,
html body a.whatsapp-float {
  position: fixed !important;
  right: 28px !important;
  bottom: 28px !important;
  left: auto !important;
  top: auto !important;

  width: 64px !important;
  height: 64px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: linear-gradient(
    135deg,
    #8a4b22 0%,
    #a86432 50%,
    #c88b52 100%
  ) !important;

  color: #ffffff !important;

  border-radius: 50% !important;
  text-decoration: none !important;

  border: 2px solid rgba(255, 255, 255, 0.15) !important;

  font-size: 2rem !important;
  line-height: 1 !important;

  z-index: 2147483647 !important;

  box-shadow:
    0 14px 32px rgba(67, 30, 12, 0.35),
    0 6px 16px rgba(0, 0, 0, 0.18) !important;

  transition: all 0.3s ease !important;
}

body .whatsapp-float:hover,
html body a.whatsapp-float:hover {
  color: #ffffff !important;

  transform: translateY(-4px) scale(1.05);

  box-shadow:
    0 20px 40px rgba(67, 30, 12, 0.45),
    0 8px 20px rgba(0, 0, 0, 0.22) !important;
}

body .whatsapp-float i,
html body a.whatsapp-float i {
  font-size: 2rem !important;
  line-height: 1 !important;
}