@charset "UTF-8";
/*BASE*/
.b-principal {
  background-color: #594f3a;
}

.b-principal {
  background-color: #908367;
}

@font-face {
  font-family: "Delius";
  src: url(../fonts/PlayfairDisplay-VariableFont_wght.ttf);
}
/* Estilos para el Navbar */
.navbar {
  padding: 1.5rem 0;
  transition: all 0.5s ease-in-out;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  z-index: 9999;
}

.navbar .navbar-brand img {
  height: 40px;
  filter: brightness(0.8) grayscale(100%) sepia(20%);
  transition: all 0.5s ease-in-out;
}

/* Ajustes para la lista de enlaces */
.navbar-nav {
  display: flex !important; /* Mantiene los elementos en una fila */
  align-items: center !important; /* Centra verticalmente */
  list-style: none !important;
  padding-left: 0 !important;
  flex-direction: row !important;
  margin-left: auto !important; /* Empuja el menú a la derecha */
}

.navbar-nav .nav-item {
  margin-right: 1.5rem;
  position: relative;
}

.navbar-nav .nav-link {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #495057;
  font-weight: 300;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Efecto de subrayado que crece al hacer hover */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #6c757d;
  transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #6c757d;
}

/* Ocultar el toggler por completo */
/* Estilos adicionales para mejorar el navbar responsivo */
#elegantNavbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

#elegantNavbar .navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background: transparent;
}

/* Mejorar la apariencia del menú colapsado en móvil */
@media (max-width: 991.98px) {
  #elegantNavbar .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    margin-top: 1rem;
    border-radius: 8px;
    padding: 1rem;
  }
  .navbar-nav {
    display: block !important;
  }
  #elegantNavbar .nav-item {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  #elegantNavbar .nav-item:last-child {
    border-bottom: none;
  }
  #elegantNavbar .nav-link {
    padding: 0.8rem 1rem !important;
    transition: all 0.3s ease;
  }
  #elegantNavbar .nav-link:hover {
    background: rgba(184, 134, 11, 0.2);
    border-radius: 4px;
  }
}
/* Animación suave para el colapso */
#navbarNav {
  transition: all 0.3s ease-in-out;
}

:root {
  --primary: #B8860B;
  --primary-dark: #9A7209;
  --secondary: #F8F5F0;
  --accent: #E6D7C3;
  --text-dark: #2C2C2C;
  --text-light: #666666;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.hero-section {
  background: linear-gradient(rgba(184, 134, 11, 0.9), rgba(184, 134, 11, 0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><rect fill="%23f8f9fa" width="1000" height="600"/><circle fill="%23B8860B" opacity="0.1" cx="200" cy="150" r="100"/><circle fill="%23B8860B" opacity="0.1" cx="800" cy="450" r="150"/></svg>') center/cover;
  color: white;
  padding: 4rem 0;
  margin-bottom: 2rem;
  text-align: center;
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
  font-size: 1.3rem;
  opacity: 0.95;
}

#calculadora {
  padding: 60px 0;
  position: relative;
}

.box-presupuesto, .box-desglose {
  height: auto;
  display: flex;
  align-items: center;
}

.sidebar-card {
  width: 100%;
  position: sticky;
  top: 2rem;
  background: linear-gradient(135deg, var(--secondary), white);
  border-left: 4px solid var(--primary);
}

.progress {
  height: 8px;
  border-radius: 4px;
  background-color: var(--secondary);
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 4px;
  transition: width 0.6s ease;
}

.card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.step {
  display: none;
  animation: fadeIn 0.5s ease;
  padding: 20px;
  background: white;
  border-radius: 16px;
  margin-bottom: 2rem;
}

.step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.box-title-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-counter {
  background: var(--primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.form-control, .form-select {
  border-radius: 12px;
  border: 2px solid #e9ecef;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.15);
}

.clickable-card {
  background: white;
  border-radius: 16px;
  padding: 0;
  margin-bottom: 0;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.clickable-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(184, 134, 11, 0.25);
}

.clickable-card input[type=radio] {
  display: none;
}

.clickable-card input[type=radio]:checked + .card-content {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.05), rgba(184, 134, 11, 0.1));
}

.clickable-card input[type=radio]:checked + .card-content::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
}

.card-content {
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.carpa-image-container {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  cursor: zoom-in;
}

.carpa-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.clickable-card:hover .carpa-image {
  transform: scale(1.1);
}

.zoom-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  font-size: 14px;
}

.clickable-card:hover .zoom-icon {
  opacity: 1;
}

.carpa-info {
  padding: 1.25rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.carpa-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.carpa-description {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}

.carpa-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
}

/* Lightbox mejorado y centrado */
.lightboxP {
  display: none;
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  padding: 40px 20px;
  overflow-y: auto;
}
.lightboxP .lightboxP-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  animation: zoomIn 0.3s ease;
}
.lightboxP .lightboxP-image {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: block;
}
.lightboxP .lightboxP-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
  z-index: 10000;
}
.lightboxP .lightboxP-close:hover {
  background: var(--primary-dark);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 30px rgba(184, 134, 11, 0.6);
}
.lightboxP .lightboxP-caption {
  margin-top: 25px;
  text-align: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  padding: 0 20px;
}

.lightboxP.active {
  display: block;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .lightbox {
    padding: 20px 10px;
  }
  .lightbox-content {
    min-height: calc(100vh - 40px);
  }
  .lightbox-image {
    max-height: 70vh;
  }
  .lightbox-close {
    width: 45px;
    height: 45px;
    font-size: 28px;
    top: 15px;
    right: 15px;
  }
  .lightbox-caption {
    font-size: 1.2rem;
    margin-top: 20px;
  }
}
#galeria {
  padding: 120px 0;
  background-color: #f8f8f8;
}
#galeria .section-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}
#galeria .subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}
#galeria .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
}
#galeria .gallery-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#galeria .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
#galeria .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
#galeria .gallery-item:hover .overlay {
  opacity: 1;
}
#galeria .gallery-item:hover img {
  transform: scale(1.05);
}
#galeria .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#galeria .overlay i {
  color: #fff;
  font-size: 2.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Playfair Display", serif;
  overflow-x: hidden;
  background-color: #ffffff;
}

#blur {
  font-family: "Playfair Display", serif;
}
#blur .scroll-section {
  height: 500vh;
  position: relative;
}

.background-blur-fixed {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: filter 1s ease-in-out; /* Eliminamos la transición de background-image */
  background-image: url("../img/f4.png");
}

.sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0 5%;
}
.sticky-container .content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  max-width: 1400px;
}
.sticky-container .text-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  padding: 20px;
}
.sticky-container .text-container .word {
  position: absolute;
  top: 50%;
  left: 60%;
  width: 96%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 300;
  color: white;
  opacity: 0;
  pointer-events: none;
  line-height: 1.4;
  max-width: 600px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  clip-path: inset(0 100% 0 0);
  letter-spacing: 3.5px;
}
.sticky-container .text-container .word.visible {
  opacity: 1;
  pointer-events: auto;
}
.sticky-container .image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  padding: 40px;
}
.sticky-container .image-container .content-image {
  position: absolute;
  width: clamp(250px, 40vw, 450px);
  height: clamp(250px, 40vw, 450px);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  filter: grayscale(1) blur(5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
.sticky-container .image-container .content-image.visible {
  opacity: 1;
  transform: scale(1);
  filter: grayscale(0) blur(0);
  pointer-events: auto;
}

.scroll-indicator {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: none;
  flex-direction: column;
  gap: 15px;
}
.scroll-indicator .scroll-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.scroll-indicator .scroll-dot.active {
  background: white;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .sticky-container {
    padding: 0 3%;
  }
  .sticky-container .content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .sticky-container .text-container, .sticky-container .image-container {
    flex: none;
    width: 100%;
    height: 50%;
  }
  .sticky-container .word {
    font-size: clamp(20px, 6vw, 32px);
    max-width: 90%;
  }
  .sticky-container .image-container .content-image {
    width: 250px;
    height: 250px;
    position: relative;
  }
  .scroll-indicator {
    right: 15px;
    flex-direction: row;
    bottom: 20px;
    top: unset;
    transform: none;
  }
}
:root {
  --primary: #B8860B;
  --primary-dark: #9A7209;
  --secondary: #F8F5F0;
  --accent: #E6D7C3;
  --text-dark: #2C2C2C;
  --text-light: #666666;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.hero-section {
  background: linear-gradient(rgba(184, 134, 11, 0.9), rgba(184, 134, 11, 0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><rect fill="%23f8f9fa" width="1000" height="600"/><circle fill="%23B8860B" opacity="0.1" cx="200" cy="150" r="100"/><circle fill="%23B8860B" opacity="0.1" cx="800" cy="450" r="150"/></svg>') center/cover;
  color: white;
  padding: 4rem 0;
  margin-bottom: 2rem;
  text-align: center;
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
  font-size: 1.3rem;
  opacity: 0.95;
}

#calculadora {
  padding: 60px 0;
  position: relative;
}

.box-presupuesto, .box-desglose {
  height: auto;
  display: flex;
  align-items: center;
}

.sidebar-card {
  width: 100%;
  position: sticky;
  top: 2rem;
  background: linear-gradient(135deg, var(--secondary), white);
  border-left: 4px solid var(--primary);
}

.progress {
  height: 8px;
  border-radius: 4px;
  background-color: var(--secondary);
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 4px;
  transition: width 0.6s ease;
}

.card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.step {
  display: none;
  animation: fadeIn 0.5s ease;
  padding: 20px;
  background: white;
  border-radius: 16px;
  margin-bottom: 2rem;
}

.step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.box-title-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-counter {
  background: var(--primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.form-control, .form-select {
  border-radius: 12px;
  border: 2px solid #e9ecef;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.15);
}

.clickable-card {
  background: white;
  border-radius: 16px;
  padding: 0;
  margin-bottom: 0;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.clickable-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(184, 134, 11, 0.25);
}

.clickable-card input[type=radio] {
  display: none;
}

.clickable-card input[type=radio]:checked + .card-content {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.05), rgba(184, 134, 11, 0.1));
}

.clickable-card input[type=radio]:checked + .card-content::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
}

.card-content {
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.carpa-image-container {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  cursor: zoom-in;
}

.carpa-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.clickable-card:hover .carpa-image {
  transform: scale(1.1);
}

.zoom-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  font-size: 14px;
}

.clickable-card:hover .zoom-icon {
  opacity: 1;
}

.carpa-info {
  padding: 1.25rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.carpa-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.carpa-description {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}

.carpa-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
}

/* Lightbox mejorado y centrado */
.lightboxP {
  display: none;
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  padding: 40px 20px;
  overflow-y: auto;
}
.lightboxP .lightboxP-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  animation: zoomIn 0.3s ease;
}
.lightboxP .lightboxP-image {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: block;
}
.lightboxP .lightboxP-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
  z-index: 10000;
}
.lightboxP .lightboxP-close:hover {
  background: var(--primary-dark);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 30px rgba(184, 134, 11, 0.6);
}
.lightboxP .lightboxP-caption {
  margin-top: 25px;
  text-align: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  padding: 0 20px;
}

.lightboxP.active {
  display: block;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .lightbox {
    padding: 20px 10px;
  }
  .lightbox-content {
    min-height: calc(100vh - 40px);
  }
  .lightbox-image {
    max-height: 70vh;
  }
  .lightbox-close {
    width: 45px;
    height: 45px;
    font-size: 28px;
    top: 15px;
    right: 15px;
  }
  .lightbox-caption {
    font-size: 1.2rem;
    margin-top: 20px;
  }
}
#paquetes {
  padding: 120px 0;
  background-color: #f8f9fa;
}
#paquetes .section-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}
#paquetes .minisubtitle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}
#paquetes .pricing-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
  padding: 2.5rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#paquetes .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
#paquetes .pricing-card .card-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
  text-align: center;
}
#paquetes .pricing-card .card-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #7b819a;
}
#paquetes .pricing-card .card-body {
  padding-top: 1.5rem;
  text-align: center;
}
#paquetes .pricing-card .card-body .price {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 500;
  color: #2c2c2c;
}
#paquetes .pricing-card .card-body .small-text {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: -10px;
  margin-bottom: 1.5rem;
}
#paquetes .pricing-card .card-body .features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
#paquetes .pricing-card .card-body .features-list li {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #2c2c2c;
}
#paquetes .pricing-card .card-body .features-list li i {
  color: #7b819a;
  margin-right: 10px;
}
#paquetes .highlighted {
  border: 2px solid #7b819a;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
#paquetes .highlighted .ribbon {
  position: absolute;
  top: 20px;
  right: -20px;
  background: #7b819a;
  color: #fff;
  padding: 0.25rem 2rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#paquetes .btn-primary-outline {
  background-color: transparent;
  border: 2px solid #7b819a;
  color: #7b819a;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  transition: all 0.3s ease;
}
#paquetes .btn-primary-outline:hover {
  background-color: #7b819a;
  color: #fff;
}

#galeria {
  padding: 120px 0;
  background-color: #f8f8f8;
}
#galeria .section-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}
#galeria .subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}
#galeria .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
}
#galeria .gallery-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#galeria .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
#galeria .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
#galeria .gallery-item:hover .overlay {
  opacity: 1;
}
#galeria .gallery-item:hover img {
  transform: scale(1.05);
}
#galeria .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#galeria .overlay i {
  color: #fff;
  font-size: 2.5rem;
}

/* whatsapp */
@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}
#whats {
  z-index: 999;
}
#whats .pulse {
  animation: pulse 1.2s 4s ease 4;
}
#whats .nav-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-end;
  width: auto;
  height: auto;
  position: fixed;
  z-index: 10000000000000000000000000000000000000000000000000000000000000000000000000000000;
  bottom: 0px;
  right: 0px;
  padding: 5px;
  margin: 0px;
}
#whats .whatsapp-button {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  z-index: 10000000000000000000000000000000000000000000000000000000000000000000000000000000;
  transition: 0.3s;
  margin: 10px;
  padding: 7px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  background-color: #25d366;
  box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  display: flex;
  align-items: center;
  justify-content: center;
}
#whats .whatsapp-button:focus {
  outline: none;
}
#whats .whatsapp-button:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 25px;
  background: red;
  position: absolute;
  right: 10px;
  top: 15px;
  z-index: 0;
}
#whats .whatsapp-button i {
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}
#whats .circle-anime {
  display: flex;
  position: absolute;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  transition: 0.3s;
  background-color: #77bb4a;
  animation: pulse 1.2s 4s ease 4;
}
#whats .title {
  background: rgb(9, 94, 84);
  color: white;
  padding: 25px;
  width: 100%;
  margin: 0 !important;
  line-height: 2px;
  border-radius: 10px 10px 0 0;
}
#whats .title small {
  font-weight: 200;
}
#whats .title small:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 25px;
  background: #2bd32b;
  position: absolute;
  left: 84px;
  top: 42px;
  z-index: 0;
}
#whats .popup-whatsapp {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  bottom: 85px;
  right: 25px;
  transition: 0.5s;
  border-radius: 10px;
  background-color: #f1f1f1;
  box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  animation: slideInRight 0.6s 0s both;
  border: 1px solid #f1f1f1;
  z-index: 1000000000000000000000000000000000000000000000000000000000;
}
#whats .closePopup {
  position: absolute;
  right: 15px;
  top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  /*margin: 0px 0px 15px 0px;*/
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer !important;
  background-color: #f1f1f1;
  color: #2f4e6f;
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  cursor: auto;
}
#whats .closePopup:hover {
  background-color: #f1f1f1;
  transition: 0.3s;
  cursor: auto;
}
#whats .is-active-whatsapp-popup {
  display: flex;
  animation: slideInRight 0.6s 0s both;
  cursor: auto;
}
@media (max-width: 360px) {
  #whats .nav-bottom {
    width: 320px;
  }
}
@media (max-width: 680px) {
  #whats .popup-whatsapp p {
    font-size: 0.9em;
  }
}
#whats .popup-whatsapp > div {
  margin: 5px;
}
#whats .popup-whatsapp > .content-whatsapp.-top {
  display: -webkit-inline-box;
  flex-direction: column;
  cursor: auto;
  background: linear-gradient(rgba(230, 221, 212, 0.9), rgba(230, 221, 212, 0.9)), url(../img/whatsapp.webp);
  margin: 0;
  padding: 15px;
}
#whats .popup-whatsapp > .content-whatsapp.-top p {
  width: 215px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1em;
  margin-right: 16px;
  margin-top: 3px;
  background: #fff;
  color: #2f4e6f;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 0 15px 15px;
  cursor: auto;
}
#whats .popup-whatsapp > .content-whatsapp.-top p:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-right: 7px solid #fff;
  border-bottom: 12px solid transparent;
  position: absolute;
  left: 8px;
  top: 90px;
  cursor: auto;
}
#whats .popup-whatsapp > .content-whatsapp.-bottom {
  display: flex;
  flex-direction: row;
}
#whats .popup-whatsapp > .content-whatsapp.-bottom .button-send {
  padding: 2px 15px;
  border-radius: 25px;
  background: white;
  width: 250px;
  text-align: center;
  text-decoration: none;
  color: #000;
}
#whats .closePopup {
  position: absolute;
  right: 15px;
  top: 20px;
  display: flex;
  justify-content: center;
}

/* End whatsapp */
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

body {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  position: relative;
  font-family: "Delius" !important;
}

html {
  scroll-behavior: smooth;
}

textarea {
  resize: none !important;
}

a {
  text-decoration: none !important;
}
a:hover {
  text-decoration: none !important;
}

.no-padding {
  padding: 0 !important;
}

.b-left {
  border-left: 1px solid #727272;
}

.mt-negative {
  margin-top: -50px !important;
}

.subtitl {
  margin: 15px 0 25px;
  font-size: 70px;
  line-height: 45px;
  text-align: center;
  color: "Delius";
  font-weight: 100;
  display: grid;
}
.subtitl span {
  color: black;
  font-size: 49px;
  font-weight: 100;
}

.subtitlw {
  margin: 15px 0 25px;
  font-size: 70px;
  line-height: 55px;
  text-align: center;
  color: #fff;
  font-weight: 100;
  display: grid;
}
.subtitlw span {
  color: white;
  font-size: 49px;
  font-weight: 100;
}

.elegant-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  border: 2px solid #6c757d;
  border-radius: 0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.elegant-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #908367;
  transition: left 0.4s ease;
  z-index: -1;
}
.elegant-cta:hover {
  color: white;
}
.elegant-cta:hover::before {
  left: 0;
}

.elegant-cta-w {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: #ececec;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  border: 2px solid #f3f3f3;
  border-radius: 0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.elegant-cta-w::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #e2e2e2;
  transition: left 0.4s ease;
  z-index: -1;
}
.elegant-cta-w:hover {
  color: rgb(146, 146, 146);
}
.elegant-cta-w:hover::before {
  left: 0;
}

#story {
  background-color: #f3f0ec;
  color: #795e50;
  position: relative;
  padding: 100px 0 80px;
}
#story::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #f3f0ec;
  border-top-left-radius: 50% 100px;
  border-top-right-radius: 50% 100px;
  z-index: 5;
}
#story .box-icon {
  width: 100%;
  height: 60px;
  margin: 0 auto;
  display: flex;
}
#story .box-icon img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#story .vertical-hr {
  width: 1px;
  height: 150px;
  background-color: #795e50;
  text-align: center;
  display: flex;
  align-items: center;
  margin: 70px auto;
}
#story .section-title-alt {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 2px;
  color: #795e50;
}
#story .section-title-alt .highlight-text {
  font-weight: 500;
  color: #795e50;
}
#story .story-text-content .lead {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  color: #666;
}
#story .story-text-content .box-img-izq {
  width: 77%;
  margin: 0 auto;
  height: 70vh;
  display: flex;
}
#story .story-text-content .box-img-izq img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#story .story-text-content .box-firma {
  width: 180px;
  height: 250px;
  text-align: center;
  display: flex;
}
#story .story-text-content .box-firma img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#story .story-text-content .box-img-der {
  width: 100%;
  display: flex;
}
#story .story-text-content .box-img-der img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#story .story-text-content .for-your-day h4 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #444;
}
#story .story-text-content .for-your-day .highlight-text-alt {
  font-weight: 500;
}
#story .story-image-grid {
  position: relative;
  height: 100%;
}
#story .story-image-grid .image-box {
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#story .story-image-grid .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#story .story-image-grid .image-1 {
  position: relative;
  width: 80%;
  z-index: 2;
}
#story .story-image-grid .image-2 {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 80%;
  transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 768px) {
  #story .story-image-grid .image-1, #story .story-image-grid .image-2 {
    position: relative;
    width: 100%;
    left: auto;
    top: auto;
    transform: none;
    margin-bottom: 20px;
  }
}

#services {
  padding: 120px 0;
  background-color: #f6f6f6;
  color: #444;
}
#services .section-title-alt {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 2px;
  color: #444;
}
#services .service-item {
  text-align: center;
  position: relative;
}
#services .service-item .service-arch {
  position: relative;
  height: 500px;
  background-color: #f9f7f4;
  border-radius: 120px 120px 0 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
}
#services .service-item .service-arch img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 120px 120px 0 0;
}
#services .service-item .service-title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 30px;
  margin-top: 15px;
  color: #ffffff;
  position: absolute;
  bottom: 20px;
  width: 100%;
}
#services .service-media {
  position: relative;
  height: 500px;
  background-color: #f9f7f4;
  border-radius: 120px 120px 0 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f6f6;
  box-shadow: 20px 20px 60px #d1d1d1, -20px -20px 60px #ffffff;
}
#services .service-media .service-media-content {
  padding: 20px;
}
#services .service-media .service-media-content .service-icon {
  font-size: 3rem;
  color: #444;
}
#services .service-media .service-media-content .service-title-media {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #444;
}
#services .service-media .service-media-content .service-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}
#services .service-media .service-media-content .btn-dark-outline {
  background: transparent;
  border: 2px solid #444;
  color: #444;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  transition: all 0.3s ease;
}
#services .service-media .service-media-content .btn-dark-outline:hover {
  background-color: #444;
  color: #fff;
}
@media (min-width: 992px) {
  #services .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #services .services-grid .service-item:nth-child(2), #services .services-grid .service-item:nth-child(5) {
    grid-row: span 2;
    height: 100%;
  }
}

#latest-weddings {
  background-color: #f3f0ec;
  padding: 120px 0;
}
#latest-weddings .latest-weddings-carousel-container {
  position: relative;
  overflow: hidden;
  height: 600px;
}
#latest-weddings .latest-weddings-carousel-container .carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}
#latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide {
  display: none;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide.active {
  display: grid;
}
#latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .main-image-wrapper {
  grid-row: 1/span 2;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .main-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .side-content-wrapper {
  display: flex;
  flex-direction: column;
}
#latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .side-content-wrapper .gallery-info {
  padding: 20px 0;
}
#latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .side-content-wrapper .gallery-info .gallery-tag {
  font-family: "Playfair Display", serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #888;
}
#latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .side-content-wrapper .gallery-info .gallery-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: #444;
  margin-top: 5px;
}
#latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .side-content-wrapper .mini-image {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .side-content-wrapper .mini-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .side-content-wrapper .mini-image-top {
  height: 230px;
  width: 80%;
  margin-bottom: 20px;
}
#latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .side-content-wrapper .mini-image-top img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .side-content-wrapper .mini-image-bottom {
  height: 230px;
  width: 80%;
}
#latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .side-content-wrapper .mini-image-bottom img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#latest-weddings .gallery-footer-info {
  font-family: "Playfair Display", serif;
  color: #666;
}
#latest-weddings .gallery-footer-info p {
  font-weight: 500;
  margin-bottom: 0;
}
#latest-weddings .gallery-footer-info span {
  font-size: 0.9rem;
  font-style: italic;
}
#latest-weddings .gallery-footer-info .gallery-controls i {
  font-size: 1.5rem;
  cursor: pointer;
  color: #777;
  transition: color 0.3s ease;
}
#latest-weddings .gallery-footer-info .gallery-controls i:hover {
  color: #444;
}
@media (max-width: 991.98px) {
  #latest-weddings .latest-weddings-carousel-container {
    height: 800px;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-slide {
    grid-template-columns: 1fr;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-slide .main-image-wrapper {
    grid-row: auto;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-slide .side-content-wrapper {
    flex-direction: column-reverse;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-slide .side-content-wrapper .gallery-info {
    text-align: center;
    margin-top: 20px;
  }
}

#pricing-packages {
  padding: 120px 0;
  background-color: #f3f0ec;
  color: #444;
}
#pricing-packages .section-title-alt {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 2px;
  color: #444;
}
#pricing-packages .box-img {
  display: flex;
  height: 30vh;
}
#pricing-packages .box-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#pricing-packages .packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
#pricing-packages .packages-grid .package-card {
  text-align: center;
  background-color: #fff;
  border-radius: 120px 120px 0px 0px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px 20px;
}
#pricing-packages .packages-grid .package-card .package-header {
  font-family: "Playfair Display", serif;
}
#pricing-packages .packages-grid .package-card .package-header .package-tier {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #888;
}
#pricing-packages .packages-grid .package-card .package-header .package-name {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 5px;
}
#pricing-packages .packages-grid .package-card .package-body {
  margin-top: 30px;
}
#pricing-packages .packages-grid .package-card .package-body .package-features {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  line-height: 2;
  color: #666;
}
#pricing-packages .packages-grid .package-card .package-body .package-features li {
  border-bottom: 1px solid #eee;
  padding: 5px 0;
}
#pricing-packages .packages-grid .package-card .package-body .package-features li:last-child {
  border-bottom: none;
}
#pricing-packages .packages-grid .package-card .package-body .package-price {
  margin-top: 30px;
}
#pricing-packages .packages-grid .package-card .package-body .package-price p {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 5px;
}
#pricing-packages .packages-grid .package-card .package-body .package-price h4 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #444;
}
#pricing-packages .packages-grid .package-card .package-body .btn-dark-outline {
  background: transparent;
  border: 2px solid #444;
  color: #444;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  transition: all 0.3s ease;
}
#pricing-packages .packages-grid .package-card .package-body .btn-dark-outline:hover {
  background-color: #444;
  color: #fff;
}
#pricing-packages .packages-grid .package-gold {
  background-color: #5c4b4b;
  color: #fff;
}
#pricing-packages .packages-grid .package-gold .package-header, #pricing-packages .packages-grid .package-gold .package-name, #pricing-packages .packages-grid .package-gold .package-body h4 {
  color: #fff;
}
#pricing-packages .packages-grid .package-gold .package-features, #pricing-packages .packages-grid .package-gold .package-price p {
  color: rgba(255, 255, 255, 0.7);
}
#pricing-packages .packages-grid .package-gold .package-features li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#pricing-packages .packages-grid .package-gold .btn-light-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  transition: all 0.3s ease;
}
#pricing-packages .packages-grid .package-gold .btn-light-outline:hover {
  background-color: #fff;
  color: #5c4b4b;
}

#pricing-packages2 {
  padding: 120px 0;
  background-color: #f3f0ec;
  color: #444;
}
#pricing-packages2 .section-title-alt {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 2px;
  color: #444;
}
#pricing-packages2 .box-img {
  display: flex;
  height: 30vh;
}
#pricing-packages2 .box-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#pricing-packages2 .packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
#pricing-packages2 .packages-grid .package-card {
  text-align: center;
  background-color: #fff;
  border-radius: 120px 120px 0px 0px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px 20px;
}
#pricing-packages2 .packages-grid .package-card .package-header {
  font-family: "Playfair Display", serif;
}
#pricing-packages2 .packages-grid .package-card .package-header .package-tier {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #888;
}
#pricing-packages2 .packages-grid .package-card .package-header .package-name {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 5px;
}
#pricing-packages2 .packages-grid .package-card .package-body {
  margin-top: 30px;
}
#pricing-packages2 .packages-grid .package-card .package-body .package-features {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  line-height: 2;
  color: #666;
}
#pricing-packages2 .packages-grid .package-card .package-body .package-features li {
  border-bottom: 1px solid #eee;
  padding: 5px 0;
}
#pricing-packages2 .packages-grid .package-card .package-body .package-features li:last-child {
  border-bottom: none;
}
#pricing-packages2 .packages-grid .package-card .package-body .package-price {
  margin-top: 30px;
}
#pricing-packages2 .packages-grid .package-card .package-body .package-price p {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 5px;
}
#pricing-packages2 .packages-grid .package-card .package-body .package-price h4 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #444;
}
#pricing-packages2 .packages-grid .package-card .package-body .btn-dark-outline {
  background: transparent;
  border: 2px solid #444;
  color: #444;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  transition: all 0.3s ease;
}
#pricing-packages2 .packages-grid .package-card .package-body .btn-dark-outline:hover {
  background-color: #444;
  color: #fff;
}
#pricing-packages2 .packages-grid .package-gold {
  background-color: #5c4b4b;
  color: #fff;
}
#pricing-packages2 .packages-grid .package-gold .package-header, #pricing-packages2 .packages-grid .package-gold .package-name, #pricing-packages2 .packages-grid .package-gold .package-body h4 {
  color: #fff;
}
#pricing-packages2 .packages-grid .package-gold .package-features, #pricing-packages2 .packages-grid .package-gold .package-price p {
  color: rgba(255, 255, 255, 0.7);
}
#pricing-packages2 .packages-grid .package-gold .package-features li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#pricing-packages2 .packages-grid .package-gold .btn-light-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  transition: all 0.3s ease;
}
#pricing-packages2 .packages-grid .package-gold .btn-light-outline:hover {
  background-color: #fff;
  color: #5c4b4b;
}

.b-special {
  background-color: #bead96 !important;
}

#features {
  padding: 120px 0;
  background-color: #f3f0ec;
}
#features .elegant-info-card {
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  position: relative;
  top: -50px;
}
#features .elegant-info-card .card-title-alt {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #444;
  margin-bottom: 1rem;
}
#features .elegant-info-card .card-text-alt {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  font-weight: 300;
}
#features .elegant-info-card .read-more {
  font-size: 0.9rem;
  color: #444;
  font-weight: 500;
  text-decoration: underline;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
#features .elegant-info-card .read-more:hover {
  color: #7b819a;
}
#features .elegant-img-container {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#features .elegant-img-container img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  #features .elegant-info-card {
    top: 0;
    margin-top: 2rem;
  }
  #features .row:nth-child(2) {
    flex-direction: column;
  }
}

#nosotros {
  background: #c4bbb1;
  color: #fff;
  min-height: 100vh;
}
#nosotros .row {
  min-height: 100vh;
}
#nosotros .box-text {
  padding: 40px 80px !important;
}
#nosotros .elegant-img-container {
  height: 100vh;
  overflow: hidden;
}
#nosotros .elegant-img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#nosotros .section-title, #nosotros .subtitle, #nosotros .text {
  color: white;
}
#nosotros .features-list {
  list-style: none;
  padding: 0;
}
#nosotros .features-list .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
#nosotros .features-list .feature-item .icon {
  font-size: 1.5rem;
  color: #fff;
  margin-right: 15px;
}
#nosotros .features-list .feature-item .text {
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 300;
}
#nosotros .features-list .feature-item .text b {
  font-weight: 500;
}
@media (max-width: 991.98px) {
  #nosotros .row {
    min-height: auto;
  }
  #nosotros .box-text {
    padding: 60px 20px;
  }
  #nosotros .elegant-img-container {
    height: 50vh;
  }
}

.box-text {
  padding: 80px !important;
}

.elegant-img-container {
  height: 100%;
  overflow: hidden;
}
.elegant-img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section-title, .subtitle, .text {
  color: #495057;
}

.features-list {
  list-style: none;
  padding: 0;
}
.features-list .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.features-list .feature-item .icon {
  font-size: 1.5rem;
  color: #495057;
  margin-right: 15px;
}
.features-list .feature-item .text {
  font-size: 1rem;
  color: #495057;
  line-height: 1.5;
  font-weight: 300;
}
.features-list .feature-item .text b {
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .box-text {
    padding: 60px 20px;
  }
  .elegant-img-container {
    height: 50vh;
  }
}
.box-text {
  padding: 80px !important;
}

.elegant-img-container {
  height: 100%;
  overflow: hidden;
}
.elegant-img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section-title, .subtitle, .text {
  color: #495057;
}

.features-list {
  list-style: none;
  padding: 0;
}
.features-list .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.features-list .feature-item .icon {
  font-size: 1.5rem;
  color: #495057;
  margin-right: 15px;
}
.features-list .feature-item .text {
  font-size: 1rem;
  color: #495057;
  line-height: 1.5;
  font-weight: 300;
}
.features-list .feature-item .text b {
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .box-text {
    padding: 60px 20px;
  }
  .elegant-img-container {
    height: 50vh;
  }
}
.box-text {
  padding: 80px !important;
}

.elegant-img-container {
  height: 100%;
  overflow: hidden;
}
.elegant-img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section-title, .subtitle, .text {
  color: #495057;
}

.features-list {
  list-style: none;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.feature-item .icon {
  font-size: 1.5rem;
  color: #495057;
  margin-right: 15px;
}
.feature-item .text {
  font-size: 1rem;
  color: #495057;
  line-height: 1.5;
  font-weight: 300;
}
.feature-item .text b {
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .box-text {
    padding: 60px 20px;
  }
  .elegant-img-container {
    height: 50vh;
  }
}
.box-text {
  padding: 80px !important;
}

.elegant-img-container {
  height: 100%;
  overflow: hidden;
}
.elegant-img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section-title, .subtitle, .text {
  color: #495057;
}

.features-list {
  list-style: none;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.feature-item .icon {
  font-size: 1.5rem;
  color: #495057;
  margin-right: 15px;
}
.feature-item .text {
  font-size: 1rem;
  color: #495057;
  line-height: 1.5;
  font-weight: 300;
}
.feature-item .text b {
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .box-text {
    padding: 60px 20px;
  }
  .elegant-img-container {
    height: 50vh;
  }
}
.box-text {
  padding-left: 50px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 2rem;
}

.subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.feature-item .icon {
  font-size: 1.5rem;
  color: #6c757d;
  margin-right: 15px;
}

.feature-item .text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
}

.elegant-img-container {
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 70vh;
  display: flex;
}
.elegant-img-container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.elegant-img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s ease-in-out;
}

.elegant-img-container:hover img {
  transform: scale(1.1);
}

/* Modo responsivo */
@media (max-width: 768px) {
  .box-text {
    padding-left: 0;
    margin-top: 3rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
}
#info {
  background: #c4bbb1;
  color: #fff;
}
#info .row {
  min-height: 100vh;
}
#info .box-text {
  padding: 80px !important;
}
#info .elegant-img-container {
  height: 100vh;
  overflow: hidden;
}
#info .elegant-img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#info .section-title, #info .subtitle, #info .text {
  color: white;
}
#info .features-list {
  list-style: none;
  padding: 0;
}
#info .features-list .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
#info .features-list .feature-item .icon {
  font-size: 1.5rem;
  color: #fff;
  margin-right: 15px;
}
#info .features-list .feature-item .text {
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 300;
}
#info .features-list .feature-item .text b {
  font-weight: 500;
}
@media (max-width: 991.98px) {
  #info .row {
    min-height: auto;
  }
  #info .box-text {
    padding: 60px 20px;
  }
  #info .elegant-img-container {
    height: 50vh;
  }
}

#menus {
  padding: 120px 0;
  background-color: #ffffff;
}
#menus .section-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}
#menus .subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}
#menus .features-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}
#menus .features-list .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
#menus .features-list .feature-item .icon {
  font-size: 1.5rem;
  color: #6c757d;
  margin-right: 15px;
  line-height: 1.2;
}
#menus .features-list .feature-item .text {
  font-size: 1rem;
  color: #2c2c2c;
  line-height: 1.5;
  font-weight: 300;
}
#menus .features-list .feature-item .text strong {
  font-weight: 500;
}
#menus .image-box {
  text-align: center;
  height: 100vh;
  display: flex;
}
#menus .image-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}
#menus .image-box img:hover {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  #menus .image-box {
    margin-bottom: 2rem;
  }
}

#nodo {
  padding: 100px 0 0;
  background: #f8f8f8;
}
#nodo .box-img {
  display: flex;
  width: 100%;
  height: 85vh;
  padding: 45px 0;
}
#nodo .box-img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#personalizacion {
  padding: 120px 0;
  background-color: #fff;
}
#personalizacion .section-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}
#personalizacion .subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}
#personalizacion .option-card {
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
}
#personalizacion .option-card img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s ease;
}
#personalizacion .option-card .card-body {
  padding: 2rem 1.5rem;
}
#personalizacion .option-card .card-body h5 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #7b819a;
}
#personalizacion .option-card .card-body p {
  color: #6c757d;
  font-weight: 300;
}
#personalizacion .option-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
#personalizacion .option-card:hover img {
  transform: scale(1.05);
}
#personalizacion .btn-primary-outline {
  background-color: transparent;
  border: 2px solid #7b819a;
  color: #7b819a;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  transition: all 0.3s ease;
}
#personalizacion .btn-primary-outline:hover {
  background-color: #7b819a;
  color: #fff;
}

#video-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Ocupa el 100% de la altura de la ventana */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#video-section .video-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#video-section .video-background-wrapper video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
#video-section .video-overlay-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Capa semitransparente para mejor legibilidad */
  padding: 3rem 2rem;
  border-radius: 10px;
}
#video-section .video-overlay-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
}
#video-section .video-overlay-content p {
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.5rem);
}
#video-section .btn-white-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  transition: all 0.3s ease;
}
#video-section .btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

#testimonios {
  padding: 120px 0;
  background-color: #f8f8f8;
}
#testimonios .section-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}
#testimonios .subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}
#testimonios .testimonial-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#testimonios .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
#testimonios .testimonial-card .testimonial-photo {
  flex: 0 0 40%;
}
#testimonios .testimonial-card .testimonial-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#testimonios .testimonial-card .testimonial-content {
  flex: 1;
  padding: 2rem;
  position: relative;
}
#testimonios .testimonial-card .testimonial-content .quote-icon {
  font-size: 2rem;
  color: #e9ecef;
  position: absolute;
  top: 15px;
  left: 20px;
}
#testimonios .testimonial-card .testimonial-content .quote-text {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #495057;
  font-style: italic;
  padding-top: 1.5rem;
}
#testimonios .testimonial-card .testimonial-content .author-info {
  margin-top: 1.5rem;
}
#testimonios .testimonial-card .testimonial-content .author-info .author-name {
  font-weight: bold;
  color: #2c2c2c;
  font-size: 1rem;
}
#testimonios .testimonial-card .testimonial-content .author-info .rating {
  color: gold;
  margin-left: 10px;
}
#testimonios .testimonial-card .testimonial-content .author-info .rating i {
  font-size: 0.9rem;
}
#testimonios .btn-primary-outline {
  background-color: transparent;
  border: 2px solid #7b819a;
  color: #7b819a;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  transition: all 0.3s ease;
}
#testimonios .btn-primary-outline:hover {
  background-color: #7b819a;
  color: #fff;
}
@media (max-width: 992px) {
  #testimonios .testimonial-card {
    flex-direction: column;
  }
  #testimonios .testimonial-card .testimonial-photo {
    flex: none;
    height: 250px;
  }
}

#precios {
  padding: 120px 0;
  background-color: #fff;
}
#precios .section-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}
#precios .subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}
#precios .info-card {
  background-color: #f8f9fa;
  border-radius: 15px;
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#precios .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
#precios .info-card .card-icon {
  font-size: 2rem;
  color: #7b819a;
  margin-right: 1.5rem;
}
#precios .info-card .card-content {
  flex: 1;
}
#precios .info-card .card-content .card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #2c2c2c;
}
#precios .info-card .card-content .card-text {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
}
#precios .info-card .card-content .small-text {
  font-size: 0.9rem;
  color: #495057;
}
#precios .btn-primary-outline {
  background-color: transparent;
  border: 2px solid #7b819a;
  color: #7b819a;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  transition: all 0.3s ease;
}
#precios .btn-primary-outline:hover {
  background-color: #7b819a;
  color: #fff;
}

#faq {
  padding: 120px 0;
  background-color: #f8f8f8;
}
#faq .section-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}
#faq .subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}
#faq .accordion-item {
  border: none;
  border-bottom: 1px solid #dee2e6;
  background-color: transparent;
}
#faq .accordion-item .accordion-button {
  background-color: #fff;
  color: #2c2c2c;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 1.5rem 1.25rem;
  transition: all 0.3s ease;
}
#faq .accordion-item .accordion-button:hover {
  background-color: #f1f1f1;
}
#faq .accordion-item .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
#faq .accordion-item .accordion-body {
  background-color: #fff;
  color: #495057;
  font-weight: 300;
  font-size: 1rem;
  padding: 1.25rem;
  line-height: 1.6;
}
#faq .btn-primary-outline {
  background-color: transparent;
  border: 2px solid #7b819a;
  color: #7b819a;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  transition: all 0.3s ease;
}
#faq .btn-primary-outline:hover {
  background-color: #7b819a;
  color: #fff;
}

#contacto {
  padding: 120px 0;
  background-color: #f8f8f8;
}
#contacto .section-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}
#contacto .subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}
#contacto .contact-info-card, #contacto .contact-form-card {
  background-color: #fff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
#contacto .contact-info-card .contact-item h5 {
  color: #7b819a;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
}
#contacto .contact-info-card .contact-item p {
  color: #6c757d;
  font-weight: 300;
}
#contacto .contact-form-card .form-control {
  border-radius: 5px;
  padding: 1rem;
  border: 1px solid #dee2e6;
  transition: all 0.3s ease;
  font-weight: 300;
}
#contacto .contact-form-card .form-control:focus {
  border-color: #7b819a;
  box-shadow: 0 0 0 0.25rem rgba(123, 129, 154, 0.25);
}
#contacto .contact-form-card textarea.form-control {
  resize: vertical;
}
#contacto .btn-primary-outline {
  background-color: transparent;
  border: 2px solid #7b819a;
  color: #7b819a;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  transition: all 0.3s ease;
}
#contacto .btn-primary-outline:hover {
  background-color: #7b819a;
  color: #fff;
}
@media (max-width: 992px) {
  #contacto .contact-info-card {
    margin-top: 2rem;
  }
}

#sin-estres {
  padding: 120px 0;
  background-color: #f8f8f8;
}
#sin-estres .section-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}
#sin-estres .subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}
#sin-estres .stress-free-step {
  background-color: #fff;
  border-radius: 15px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
#sin-estres .stress-free-step:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
#sin-estres .stress-free-step .step-icon {
  font-size: 2.5rem;
  color: #7b819a;
  margin-bottom: 1.5rem;
}
#sin-estres .stress-free-step .step-title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  color: #2c2c2c;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
#sin-estres .stress-free-step .step-description {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 300;
  line-height: 1.6;
}
#sin-estres .btn-primary-outline {
  background-color: transparent;
  border: 2px solid #7b819a;
  color: #7b819a;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  transition: all 0.3s ease;
}
#sin-estres .btn-primary-outline:hover {
  background-color: #7b819a;
  color: #fff;
}

.footer-area {
  background-color: #1a1a1a;
  color: #c9c9c9;
  padding: 80px 0 0;
}
.footer-area .footer-content {
  margin-bottom: 50px;
}
.footer-area .footer-content .footer-widget .footer-logo {
  width: 70%;
  display: flex;
}
.footer-area .footer-content .footer-widget .footer-logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-area .footer-content .footer-widget .widget-title {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 25px;
}
.footer-area .footer-content .footer-widget p {
  font-weight: 300;
  font-size: 1rem;
}
.footer-area .footer-content .footer-widget .footer-links li {
  margin-bottom: 10px;
}
.footer-area .footer-content .footer-widget .footer-links li a {
  color: #c9c9c9;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
.footer-area .footer-content .footer-widget .footer-links li a:hover {
  color: #fff;
  padding-left: 5px;
}
.footer-area .footer-content .footer-widget .social-icons a {
  color: #fff;
  font-size: 1.25rem;
  margin-right: 15px;
  transition: all 0.3s ease;
}
.footer-area .footer-content .footer-widget .social-icons a:hover {
  color: #7b819a;
}
.footer-area .footer-content .footer-widget .legal-links a {
  color: #c9c9c9;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-area .footer-content .footer-widget .legal-links a:hover {
  color: #fff;
}
.footer-area .footer-bottom-area {
  border-top: 1px solid #333;
  padding: 25px 0;
}
.footer-area .footer-bottom-area .copy-text {
  color: #777;
  font-size: 0.85rem;
}

.btn-primary {
  background-color: #594f3a;
  border-color: #594f3a;
}

.btn-secondary {
  background-color: #908367;
  border-color: #908367;
  color: #333;
}

#principal {
  padding: 160px 0 300px;
  min-height: 100vh;
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  overflow: hidden;
  perspective: 1000px;
}
#principal .box-logo {
  display: flex;
  width: 100%;
  height: 14vh;
  margin-bottom: 30px;
}
#principal .box-logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.elegant-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(108, 117, 125, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(173, 181, 189, 0.08) 0%, transparent 50%), linear-gradient(135deg, transparent 0%, rgba(248, 249, 250, 0.3) 100%);
  z-index: 1;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transform-style: preserve-3d;
}

.floating-circle {
  position: absolute;
  border: 1px solid rgba(108, 117, 125, 0.5);
  border-radius: 50%;
  opacity: 0;
}

.wave-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.wave {
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(173, 181, 189, 0.05) 50%, transparent 70%);
  border-radius: 50%;
}

.wave-1 {
  top: -50%;
  left: -50%;
  animation-duration: 20s;
}

.wave-2 {
  top: -60%;
  right: -50%;
  animation-duration: 25s;
  animation-delay: -5s;
}

.wave-3 {
  bottom: -50%;
  left: -60%;
  animation-duration: 30s;
  animation-delay: -10s;
}

.geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.shape {
  position: absolute;
  opacity: 0.2;
  transform-style: preserve-3d;
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
}

.diamond {
  width: 20px;
  height: 20px;
  background: rgba(108, 117, 125, 0.15);
  transform: rotate(45deg);
}

.line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 117, 125, 0.3), transparent);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 3;
  width: 100%;
  transform-style: preserve-3d;
}

.principal-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 6rem;
  align-items: center;
  min-height: calc(100vh - 160px);
}

.content {
  transform-style: preserve-3d;
}

.luxury-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: linear-gradient(45deg, #594f3a, #908367);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 30px;
  margin-bottom: 2rem;
}

.main-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #2c2c2c;
}

.main-title .highlight {
  font-weight: 400;
  color: #594f3a;
  position: relative;
  font-style: italic;
}

.main-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6c757d, #adb5bd);
  transition: width 0.8s ease;
}

.subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: #495057;
  max-width: 90%;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(108, 117, 125, 0.1);
  display: inline-flex;
}
.feature-item .feature-icon {
  font-size: 15px;
  color: #6c757d;
  margin-right: 15px;
}
.feature-item .feature-text {
  font-size: 1rem;
  color: #495057;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.price-section {
  text-align: center;
}

.price-container {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(108, 117, 125, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.price-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #594f3a, #908367, #594f3a);
}

.price-label {
  font-size: 0.9rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.price-amount {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.price-currency {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

.price-features {
  text-align: left;
}

.price-feature {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(108, 117, 125, 0.1);
  font-size: 0.95rem;
  color: #495057;
  position: relative;
  padding-left: 1.5rem;
}

.price-feature::before {
  content: "◦";
  position: absolute;
  left: 0;
  color: #6c757d;
  font-size: 1.2rem;
  top: 0.6rem;
}

.price-feature:last-child {
  border-bottom: none;
}

.vertical-text {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 8px;
  color: rgba(108, 117, 125, 0.2);
  text-transform: uppercase;
  opacity: 0;
}

@media (max-width: 768px) {
  .principal-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .vertical-text {
    display: none;
  }
  .main-title {
    font-size: 3rem;
  }
  .price-amount {
    font-size: 2.5rem;
  }
  #latest-weddings {
    background-color: #f3f0ec;
    padding: 120px 0;
    /* Medidas responsivas */
  }
  #latest-weddings .latest-weddings-carousel-container {
    position: relative;
    overflow: hidden;
    height: 600px;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide {
    display: none;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide.active {
    display: grid;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .main-image-wrapper {
    grid-row: 1/span 2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .main-image-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .side-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .side-content-wrapper .gallery-info {
    padding: 20px 0;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .side-content-wrapper .gallery-info .gallery-tag {
    font-family: "Playfair Display", serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #888;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .side-content-wrapper .gallery-info .gallery-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    color: #444;
    margin-top: 5px;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .side-content-wrapper .mini-image {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .side-content-wrapper .mini-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .side-content-wrapper .mini-image-top {
    height: 200px;
    margin-bottom: 20px;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-track .carousel-slide .side-content-wrapper .mini-image-bottom {
    height: 250px;
  }
  #latest-weddings .gallery-footer-info {
    font-family: "Playfair Display", serif;
    color: #666;
  }
  #latest-weddings .gallery-footer-info p {
    font-weight: 500;
    margin-bottom: 0;
  }
  #latest-weddings .gallery-footer-info span {
    font-size: 0.9rem;
    font-style: italic;
  }
  #latest-weddings .gallery-footer-info .gallery-controls i {
    font-size: 1.5rem;
    cursor: pointer;
    color: #777;
    transition: color 0.3s ease;
  }
  #latest-weddings .gallery-footer-info .gallery-controls i:hover {
    color: #444;
  }
}
@media (max-width: 768px) and (max-width: 991.98px) {
  #latest-weddings .latest-weddings-carousel-container {
    height: auto;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-slide {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-slide .main-image-wrapper {
    grid-row: auto;
    height: 350px;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-slide .main-image-wrapper img {
    height: 100%;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-slide .side-content-wrapper {
    flex-direction: column;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-slide .side-content-wrapper .gallery-info {
    text-align: center;
    margin-top: 1rem;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-slide .side-content-wrapper .gallery-info .gallery-title {
    font-size: 2rem;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-slide .side-content-wrapper .mini-image-top {
    display: none;
  }
  #latest-weddings .latest-weddings-carousel-container .carousel-slide .side-content-wrapper .mini-image-bottom {
    display: none;
  }
  #latest-weddings .gallery-footer-info {
    text-align: center;
    flex-direction: column;
  }
  #latest-weddings .gallery-footer-info .couple-info {
    margin-bottom: 1rem;
  }
}
/* ============================================
   MEJORAS RESPONSIVAS CRÍTICAS
   ============================================ */
* {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.container, .container-fluid {
  max-width: 100%;
  overflow-x: hidden;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

/* ============================================
   CALCULADORA - MEJORAS RESPONSIVAS COMPLETAS
   ============================================ */
#calculadora {
  overflow-x: hidden;
}
#calculadora .container {
  padding: 0 15px;
}

.step[data-step="4"] .carpa-price {
  display: none !important;
}
.step[data-step="4"] .carpa-info {
  padding: 0.75rem !important;
  min-height: auto !important;
}
.step[data-step="4"] .carpa-image-container {
  margin-bottom: 0 !important;
}

.step[data-step="5"] .carpa-price {
  display: none !important;
}
.step[data-step="5"] .carpa-info {
  padding: 0.75rem !important;
  min-height: auto !important;
}

/* ============================================
   TABLET - 992px to 767px
   ============================================ */
@media (max-width: 991.98px) {
  #calculadora {
    padding: 40px 0;
  }
  #calculadora .col-lg-3.order-lg-1 {
    order: 3;
    margin-top: 2rem;
  }
  #calculadora .col-lg-7.order-lg-2 {
    order: 2;
    padding: 0 15px;
  }
  #calculadora .col-lg-2.order-lg-3 {
    order: 1;
    margin-bottom: 1.5rem;
  }
  #calculadora .sidebar-card {
    position: static;
    padding: 1.5rem 1rem;
  }
  #calculadora .step {
    padding: 20px 15px;
    margin-bottom: 1rem;
  }
  #calculadora .row.g-3, #calculadora .row.g-4 {
    margin: 0 -8px;
  }
  #calculadora .row.g-3 .col-sm-3, #calculadora .row.g-3 .col-sm-4, #calculadora .row.g-4 .col-sm-3, #calculadora .row.g-4 .col-sm-4 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 8px;
    margin-bottom: 16px;
  }
  #calculadora .clickable-card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  #calculadora .clickable-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  #calculadora .clickable-card .carpa-image-container {
    height: 160px;
  }
  #calculadora .clickable-card .carpa-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0.75rem;
  }
  #calculadora .clickable-card .carpa-title {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }
  #calculadora .clickable-card .carpa-description {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  #calculadora .clickable-card .carpa-price {
    font-size: 1.1rem;
    margin-top: auto;
  }
}
/* ============================================
   MOBILE - 767px to 575px
   ============================================ */
@media (max-width: 767.98px) {
  #calculadora {
    padding: 30px 0;
  }
  #calculadora .hero-section {
    padding: 2rem 1rem;
    margin-bottom: 1.5rem;
  }
  #calculadora .hero-section h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  #calculadora .container {
    padding: 0 10px;
  }
  #calculadora .row.g-3, #calculadora .row.g-4 {
    margin: 0 -6px;
  }
  #calculadora .row.g-3 [class*=col-], #calculadora .row.g-4 [class*=col-] {
    padding: 0 6px;
    margin-bottom: 12px;
  }
  #calculadora .row.g-3 .col-sm-3, #calculadora .row.g-3 .col-sm-4, #calculadora .row.g-3 .col-md-6, #calculadora .row.g-3 .col-lg-3, #calculadora .row.g-4 .col-sm-3, #calculadora .row.g-4 .col-sm-4, #calculadora .row.g-4 .col-md-6, #calculadora .row.g-4 .col-lg-3 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  #calculadora .clickable-card {
    border-radius: 12px;
    margin-bottom: 0;
  }
  #calculadora .clickable-card .card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  #calculadora .clickable-card .carpa-image-container {
    height: 140px;
    flex-shrink: 0;
  }
  #calculadora .clickable-card .carpa-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #calculadora .clickable-card .carpa-info {
    padding: 0.875rem 0.625rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #calculadora .clickable-card .carpa-title {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
    font-weight: 600;
  }
  #calculadora .clickable-card .carpa-description {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #calculadora .clickable-card .carpa-price {
    font-size: 1rem;
    margin-top: auto;
    font-weight: 700;
  }
  #calculadora .clickable-card .carpa-price small {
    font-size: 0.7rem;
    display: block;
    margin-top: 2px;
  }
  #calculadora .box-title-step {
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }
  #calculadora .box-title-step .step-counter {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    flex-shrink: 0;
  }
  #calculadora .box-title-step h3 {
    font-size: 1.2rem;
    line-height: 1.3;
    flex: 1;
  }
  #calculadora .form-control, #calculadora .form-select {
    padding: 0.875rem 1rem;
    font-size: 16px;
    border-radius: 10px;
  }
  #calculadora textarea.form-control {
    min-height: 120px;
  }
  #calculadora .form-check {
    padding: 0.75rem 0;
  }
  #calculadora .form-check .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
  }
  #calculadora .form-check .form-check-label {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  #calculadora .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 10px;
    min-height: 48px;
  }
  #calculadora .d-flex.justify-content-between {
    gap: 10px;
  }
  #calculadora .d-flex.justify-content-between .btn {
    flex: 1;
    min-width: 0;
  }
  #calculadora .d-flex.justify-content-between .btn-secondary {
    flex: 0 0 auto;
    min-width: 100px;
  }
  #calculadora .d-flex.justify-content-between .btn-primary {
    flex: 1;
  }
  #calculadora .box-presupuesto {
    position: sticky;
    top: 60px;
    z-index: 100;
    background: white;
    margin: 0 -10px 1rem;
    padding: 1rem 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }
  #calculadora .box-presupuesto .card {
    margin: 0;
    box-shadow: none;
    border: 1px solid #e9ecef;
  }
  #calculadora .box-presupuesto .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  #calculadora .box-presupuesto #total-presupuesto {
    font-size: 1.5rem;
    font-weight: 700;
  }
  #calculadora .box-presupuesto .budget-meter {
    margin-top: 0.75rem;
  }
  #calculadora .box-desglose .card {
    padding: 1rem;
  }
  #calculadora .box-desglose .card-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  #calculadora .box-desglose #desglose-resumen {
    font-size: 0.825rem;
    max-height: 350px;
    overflow-y: auto;
  }
  #calculadora .box-desglose #desglose-resumen .list-group-item {
    padding: 0.625rem 0.5rem;
    border-left: none;
    border-right: none;
  }
  #calculadora .progress {
    height: 6px;
    margin-bottom: 1.5rem;
    border-radius: 3px;
  }
  #calculadora .alert {
    font-size: 0.875rem;
    padding: 0.875rem;
    border-radius: 8px;
    margin: 1rem 0;
  }
}
/* ============================================
   MOBILE PEQUEÑO - Menos de 575px
   ============================================ */
/* ============================================
   LIGHTBOX RESPONSIVO
   ============================================ */
@media (max-width: 767.98px) {
  .lightboxP {
    padding: 15px 10px;
  }
  .lightboxP .lightboxP-content {
    min-height: calc(100vh - 30px);
  }
  .lightboxP .lightboxP-image {
    max-height: 70vh;
    border-radius: 8px;
  }
  .lightboxP .lightboxP-close {
    width: 42px;
    height: 42px;
    font-size: 26px;
    top: 10px;
    right: 10px;
  }
  .lightboxP .lightboxP-caption {
    font-size: 1.1rem;
    margin-top: 15px;
    padding: 0 10px;
  }
}
/* ============================================
   UTILIDADES TOUCH-FRIENDLY
   ============================================ */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .clickable-card,
  .form-check-input,
  .nav-link,
  a[role=button] {
    min-height: 44px;
    min-width: 44px;
  }
  .clickable-card {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
  }
  .btn:active,
  .clickable-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
}
/* ============================================
   PREVENIR ZOOM EN iOS
   ============================================ */
@media (max-width: 767.98px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=number],
  input[type=date],
  textarea,
  select {
    font-size: 16px !important;
  }
}
/* ============================================
   WHATSAPP BUTTON RESPONSIVO
   ============================================ */
@media (max-width: 767.98px) {
  #whats .whatsapp-button {
    width: 56px;
    height: 56px;
    margin: 15px;
  }
  #whats .whatsapp-button i {
    font-size: 30px;
  }
  #whats .popup-whatsapp {
    right: 10px;
    bottom: 80px;
    width: calc(100vw - 20px);
    max-width: 340px;
  }
  #whats .circle-anime {
    width: 56px;
    height: 56px;
    top: 15px;
    right: 15px;
  }
}
/* ============================================
   ESTILOS ADICIONALES PARA MEJOR UX
   ============================================ */
.clickable-card,
.btn,
.sidebar-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (max-width: 767.98px) {
  body {
    font-size: 15px;
    line-height: 1.6;
  }
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
  }
  p {
    margin-bottom: 1rem;
  }
}
/* ============================================
   FIX PARA COLUMNAS EN MODO LANDSCAPE MOBILE
   ============================================ */
/* ============================================
   OPTIMIZACIONES DE RENDIMIENTO
   ============================================ */
.clickable-card,
.btn,
.progress-bar {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}/*# sourceMappingURL=styles.css.map */