/* Font  */
@font-face {
  font-family: Fredoka;
  src: url("../font/Fredoka-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Fredoka;
  src: url("../font/Fredoka-Medium.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 500;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Fredoka;
  src: url("../font/Fredoka-SemiBold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 600;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Fredoka;
  src: url("../font/Fredoka-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 600;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Caviar Dreams";
  src: url("../font/CaviarDreams_Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 700;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
/* Variables de Sass */
@keyframes pulse2 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
/* Header Styles - O' Dreams */
header.menu {
  position: absolute; /* Floating over the banner background */
  width: 100%;
  z-index: 1000;
  top: 60px; /* Space from top */
}
header.menu .container-fluid {
  max-width: 1700px;
}

.nav-bar-custom {
  background: var(--Blanco, #fff);
  border-radius: 20px;
  padding: 10px 40px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05); /* Optional subtle shadow */
  position: relative; /* For logo positioning */
}

/* Links */
.navbar-nav {
  width: 100%;
}

.nav-link {
  color: var(--Negro, #000) !important; /* Assuming black text for links */
  font-family: "Caviar Dreams", sans-serif; /* Or Montserrat if specified, checking generic */
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.nav-link:hover {
  color: var(--Rosa-oscuro, #cf5a9a) !important;
}

/* Logo styling */
.logo-container {
  position: relative;
  display: flex;
  justify-content: center;
  width: 180px; /* Space reserved in flow */
}

.logoD {
  position: absolute;
  top: -60px; /* Move up to protrude */
  left: 50%;
  transform: translateX(-50%);
  width: 225px; /* Adjust size as needed */
  max-width: none;
  z-index: 1001;
}

/* Mobile Toggler */
.navbar-toggler {
  border: none;
  outline: none;
  padding: 0;
}
.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23cf5a9a' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  header.menu {
    top: 20px;
  }
  header.menu .container-fluid {
    padding: 0 15px;
  }
  .nav-bar-custom {
    padding: 10px 20px;
    justify-content: space-between; /* Toggler left/right as needed */
  }
  .navbar-collapse {
    background: #fff;
    border-radius: 20px;
    padding: 60px;
    margin-top: 15px;
  }
  /* Mobile Logo */
  .logoM {
    /* If we want the logo to protrude on mobile too, or be inside */
    width: 120px;
  }
  /* Hide Desktop Logo logic on mobile if separate, but here we used d-lg-none for logoM */
  .logo-container {
    display: none;
  }
  /* Center mobile logo if needed, but structure has toggler + brand */
  .navbar-brand.d-lg-none {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px; /* Protrude mobile logo */
  }
  .logoM {
    width: 140px;
  }
  .navbar-toggler {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  header.menu {
    top: 30px;
  }
  .nav-bar-custom {
    min-height: 60px;
  }
  .navbar-brand.d-lg-none {
    top: -25px;
  }
  .logoM {
    width: 120px;
  }
}
html,
body {
  overflow-x: hidden;
  background-color: white;
  font-family: "Jost", sans-serif;
}

a {
  text-decoration: none;
}

section {
  padding: 100px 15px;
}

img {
  max-width: 100%;
  width: 100%;
}

h1 {
  color: var(--oscuro, #660934);
  text-align: center;
  font-family: Fredoka;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 68px; /* 106.25% */
}
h1 span {
  color: var(--Rosa-oscuro, #cf5a9a);
  text-transform: uppercase;
}

.banner p {
  color: var(--Negro, #000);
  text-align: center;
  font-family: Fredoka;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.btn,
.btnbr,
input.hs-button.primary.large {
  padding: 15px 40px;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 10px auto;
  border: 0;
  border-radius: 70px;
  background: var(--Amarillo, #fce781);
  color: var(--Negro, #000);
  text-align: center;
  font-family: Fredoka;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.8px;
}
.btn:hover,
.btnbr:hover,
input.hs-button.primary.large:hover {
  background-color: #000;
  color: #fff;
  opacity: 0.7;
}
.btn img,
.btnbr img,
input.hs-button.primary.large img {
  margin: 4px 0 4px 15px;
  width: 12px;
}

h2 {
  color: var(--oscuro, #660934);
  font-family: Fredoka;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
}
h2 b {
  font-weight: 600;
}

h4 {
  color: var(--Rosa-oscuro, #cf5a9a);
  text-align: center;
  font-family: "Caviar Dreams";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 90.909% */
  text-transform: uppercase;
}

p {
  color: var(--Negro, #000);
  font-family: Fredoka;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 122.222% */
}

.hiddenD,
.hiddenl {
  display: none;
}

.hiddenS {
  display: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.ondasH {
  background-color: var(--Rosa-claro, #f6bcd7);
}

@media screen and (max-width: 1540px) {
  .container {
    max-width: 1450px !important;
  }
}
@media screen and (max-width: 992px) {
  .hiddenl {
    display: block;
  }
  .hiddenD {
    display: block;
  }
  .hiddenS {
    display: none;
  }
  h1 {
    font-size: 48px;
    line-height: 50px;
  }
  h2 {
    font-size: 48px;
    line-height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .hiddenD {
    display: block !important;
  }
  .hiddenM {
    display: none;
  }
  .hiddenS {
    display: block;
  }
  h1 {
    font-size: 43px;
    line-height: 45px;
  }
  h2 {
    font-size: 40px;
    line-height: 42px;
  }
  h2 br {
    display: none;
  }
}
/* Scroll Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition-delay: 0.5s;
  will-change: opacity, transform;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays if needed */
.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

/* Banner Styles - O' Dreams */
.banner {
  padding: 360px 0 200px; /* Top padding to account for header space */
  position: relative;
  overflow: hidden;
  min-height: 800px; /* Ensure tall banner */
  display: flex;
  align-items: center;
  /* Background Images */
  background-image: url("../imagenes/Fondoheader.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  /* Text Styling */
  /* .btn-banner styling is handled by global button styles in _general.scss */
}
.banner .container {
  position: relative;
  z-index: 10;
}
.banner h1 {
  /* Styles inherited from _general but can override here */
  margin-bottom: 20px;
}
.banner p {
  max-width: 550px;
  margin: 0 auto 30px; /* Center paragraph */
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .banner {
    padding: 150px 0 80px; /* Less padding on tablet */
    background-position: center;
    min-height: 600px;
  }
}
@media (max-width: 767px) {
  .banner {
    background-image: url("../imagenes/movil/Fondoheader.png");
    background-size: cover;
    background-position: center top;
    padding: 350px 15px 20px; /* Adjust for mobile header/logo space */
    min-height: 100vh; /* Full screen feel on mobile */
    align-items: center; /* Center vertically */
    text-align: center;
  }
  .banner h1 br {
    display: block; /* Keep structure */
  }
  .banner p {
    font-size: 16px;
    line-height: normal;
  }
}
/* Nosotros Section Styles - O' Dreams */
.nosotros {
  background-color: var(--Rosa-claro, #f6bcd7);
  padding: 120px 0;
}
.nosotros .container {
  max-width: 1450px;
}
.nosotros h2 {
  margin-bottom: 40px;
}
.nosotros .nosotros-img {
  display: block;
  margin: 0;
  max-width: 100%;
  width: 500px;
  /* Add specific styling if image needs it, e.g. padding or alignment */
}
.nosotros .dots-img {
  width: 107.915px !important; /* Force override of global img width: 100% */
  height: auto; /* Maintain aspect ratio */
  display: block;
  margin-top: 20px;
  max-width: 100%; /* Ensure it's not stretched beyond its container */
}

.ondasH.ondasH2 {
  margin-bottom: -4px;
}

.ondasH.ondasH3 {
  margin-bottom: -4px;
  background-color: white !important;
}

.ondasH.ondasH4 {
  margin-top: -4px;
  background-color: white !important;
}

@media (max-width: 991px) {
  .nosotros {
    padding: 60px 30px;
  }
  .nosotros h2 {
    margin-bottom: 30px;
    text-align: left; /* Generally better on mobile headers */
  }
  .nosotros p {
    text-align: justify; /* Or left, depending on preference. Ref image has centered look or justified */
  }
  .nosotros .row {
    /* Flex direction handles order if needed, currently image first is fine */
  }
  .nosotros .nosotros-img {
    max-width: 80%; /* Reduce a bit on mobile if too huge */
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .nosotros {
    padding: 100px 15px; /* Adjust padding */
  }
  .nosotros .nosotros-img {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
/* Beneficios Section Styles - O' Dreams */
.beneficios {
  padding: 100px 0 80px;
  background-color: #fff;
  /* Swiper Pagination Customization */
}
.beneficios .container {
  max-width: 960px;
}
.beneficios h2 {
  color: var(--oscuro, #660934);
  margin-bottom: 50px;
}
.beneficios h2 b {
  font-weight: 600;
}
.beneficios img.dotted-separator {
  max-width: 400px;
}
.beneficios .benefit-card {
  padding: 0 40px; /* Internal spacing for text */
}
.beneficios .benefit-card .icon-benefit {
  max-height: 110px;
  width: auto;
}
.beneficios .benefit-card h4 {
  color: var(--Rosa-oscuro, #cf5a9a);
  margin: 0 0 15px;
  /* Font styles inherited from general */
}
.beneficios .benefit-card p {
  background-position: center;
  z-index: 10;
  /* Remove border/bg if the image itself is the circle. Ref says logo amarillo used is plus1.png */
}
.beneficios .swiper-pagination-bullet {
  background: transparent;
  border: 2px solid #660934;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
}
.beneficios .swiper-pagination-bullet-active {
  background: #660934;
  opacity: 1;
}

@media (max-width: 991px) {
  .beneficios {
    padding: 80px 0;
  }
  .beneficios h2 {
    margin-bottom: 50px;
    padding: 0 15px;
  }
  .beneficios .benefit-card {
    padding: 20px 20px 10px;
    min-height: 320px;
    border-radius: 50px;
    width: 100%;
  }
  .beneficios hr.dotted-separator {
    display: none !important;
  }
  .beneficios .swiper-slide {
    padding: 40px 10px 20px; /* Padding for top icon overlap */
    height: auto;
  }
  .beneficios .swiper-pagination {
    position: relative;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .beneficios {
    padding: 50px 15px 100px;
  }
  .beneficios h2 {
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 0;
  }
  .beneficios p {
    font-size: 16px;
  }
  .beneficios .row.justify-content-center.mb-5 {
    margin-bottom: 0 !important;
  }
  .beneficios .benefit-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
  }
}
/* Contacto / Form Styles - O' Dreams */
.contacto {
  background-color: #ed98c1;
  padding: 100px 0 30px;
  position: relative;
  overflow-x: hidden;
  /* HubSpot Form Customization Overrides */
}
.contacto h2 {
  color: #000;
  margin-bottom: 30px;
  font-size: 56px;
  line-height: 58px;
}
.contacto h2 b {
  color: var(--oscuro, #660934);
  font-weight: 700;
}
.contacto .contact-img {
  width: 100%;
  display: block;
}
.contacto form {
  /* Submit Button */
}
.contacto form .hs-form-field {
  margin-bottom: 2px;
}
.contacto form label {
  font-size: 14px;
  color: #000;
  margin-bottom: 5px;
  font-weight: 500;
  display: block;
}
.contacto form .hs-input {
  width: 100%;
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid #000 !important;
  border-radius: 0 !important;
  padding: 10px 0 !important;
  color: #000 !important;
  box-shadow: none !important;
  font-family: inherit;
}
.contacto form .hs-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contacto form .hs-input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contacto form .hs-input:focus {
  border-bottom: 2px solid var(--oscuro, #660934) !important;
  outline: none;
}
.contacto form .hs-fieldtype-intl-phone.hs-input {
  border-bottom: 1px solid #000 !important;
}
.contacto form .hs-fieldtype-intl-phone.hs-input {
  border-bottom: 0 !important;
}
.contacto form .hs-fieldtype-intl-phone.hs-input select {
  position: relative !important;
  top: 6px !important;
}
.contacto form input[type=submit],
.contacto form .hs-button {
  background-color: var(--Amarillo, #fce781) !important;
  color: #000 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 15px 40px !important;
  border-radius: 50px !important;
  border: none !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  cursor: pointer;
  transition: transform 0.2s;
  display: inline-block;
}
.contacto form input[type=submit]:hover,
.contacto form .hs-button:hover {
  transform: scale(1.05);
  background-color: #ffe66d !important;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .contacto {
    padding: 60px 0;
    text-align: center;
  }
  .contacto .form-wrapper {
    max-width: 530px;
    margin: 0 auto;
  }
  .contacto .contact-img {
    margin-bottom: 0px;
    max-width: 100%;
  }
  .contacto h2 {
    text-align: left;
    margin-bottom: 40px;
  }
  .contacto form {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .contacto {
    padding: 60px 20px;
  }
  .contacto h2 {
    color: #000;
    margin-bottom: 30px;
    font-size: 40px;
    line-height: 44px;
  }
}
/* Datos Section Styles - O' Dreams */
.datos {
  padding: 100px 0;
  background-color: #fff;
}
.datos .container {
  max-width: 1450px;
}
.datos h2 {
  color: var(--oscuro, #660934);
  font-weight: 400; /* Regular weight for 'en cifras' */
  margin-bottom: 60px;
  text-align: left;
}
.datos h2 b {
  font-weight: 600; /* Bold for O' Dreams */
}
.datos .contbr {
  padding-left: 10%;
}
.datos .dato-card {
  border: 2px dotted var(--Rosa-oscuro, #cf5a9a);
  border-radius: 30px;
  padding: 70px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: center;
  transition: transform 0.3s ease;
}
.datos .dato-card:hover {
  transform: translateY(-5px);
}
.datos .dato-card .icon-dato {
  max-height: 70px; /* Adjust based on actual icon size */
  width: auto;
  margin-bottom: 25px !important;
}
.datos .dato-card p {
  font-size: 20px;
  color: #000;
  line-height: 24px;
  margin: 0;
  text-align: left;
}
.datos .dato-card p b {
  font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .datos {
    padding: 60px 30px;
  }
  .datos h2 {
    margin-bottom: 40px;
    font-size: 32px;
  }
  .datos .dato-card {
    margin-bottom: 20px;
    height: auto;
    padding: 30px 20px;
    min-height: 250px;
  }
  .datos .dato-card p br {
    display: none;
  }
}
@media (max-width: 767px) {
  .datos {
    padding: 100px 20px;
  }
  .datos h2 {
    margin-bottom: 0;
  }
  .datos .dato-card {
    min-height: 230px;
  }
  .datos .contbr {
    padding-left: 0;
  }
}
/* Galeria Section Styles - O' Dreams */
.galeria {
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden; /* Hide overflow from slider */
}
.galeria h2 {
  color: var(--oscuro, #660934);
  font-weight: 500;
  margin-bottom: 50px;
}
.galeria .swiper-wrapper {
  align-items: center;
}
.galeria .swiper-slide {
  width: auto; /* Allow images to define width */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  padding-right: 30px; /* Spacing between slides */
}
.galeria .swiper-slide img {
  height: 100%; /* Fill height */
  width: auto; /* Maintain aspect ratio */
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.galeria .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 40px;
}
.galeria .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #eecadf;
  opacity: 1;
  margin: 0 6px;
}
.galeria .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--oscuro, #660934);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .galeria {
    padding: 50px 15px;
  }
  .galeria h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .galeria {
    padding: 50px 15px 100px;
  }
  .galeria .swiper-slide {
    width: 100%;
    padding-right: 0;
  }
  .galeria .swiper-slide img {
    width: 100% !important;
    height: auto !important;
  }
}
/* Diferencial Section Styles - O' Dreams */
.diferencial {
  padding: 100px 0;
  background-color: var(--Rosa-claro, #ffe2ef); /* Light pink background */
}
.diferencial .container {
  max-width: 1450px;
}
.diferencial .contbr {
  padding-left: 10%;
}
.diferencial h2 {
  color: var(--oscuro, #660934);
  margin-bottom: 20px;
  font-weight: 400;
}
.diferencial h2 b {
  font-weight: 700;
}
.diferencial p {
  color: #000;
}
.diferencial p b {
  font-weight: 700;
}
.diferencial .diferencial-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: #000;
}
.diferencial .diferencial-list li img {
  width: 20px;
  height: auto;
  margin-right: 15px;
}
.diferencial .diferencial-img {
  max-width: 100%;
  height: auto;
  /* Optional: Add a slight floating animation if desired */
  animation: floatImg 6s ease-in-out infinite;
}

@keyframes floatImg {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* Mobile Responsiveness */
@media (max-width: 991px) {
  .diferencial {
    padding: 60px 0;
    text-align: center;
  }
  .diferencial .contbr {
    padding-left: 0;
    padding-right: 0;
    max-width: 600px;
  }
  .diferencial .row {
    flex-direction: column;
  }
  .diferencial .diferencial-img {
    margin-bottom: 40px;
    max-width: 80%;
  }
  .diferencial h2 {
    text-align: left;
  }
  .diferencial p,
  .diferencial .diferencial-list {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .diferencial .contbr {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* Pasos Section Styles - O' Dreams */
.pasos {
  padding: 100px 0;
  position: relative;
  background-image: url("../imagenes/fondoPasos.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffe2ef;
}
.pasos .container {
  max-width: 1450px;
}
.pasos h2 {
  color: var(--oscuro, #660934);
  margin-bottom: 20px;
}
.pasos .pasos-nav {
  gap: 30px;
}
.pasos .dots-decoration span {
  font-size: 40px;
  color: #ec7dbd; /* Pinkish dots */
  margin-right: 15px;
  line-height: 0;
  font-weight: 700;
}
.pasos .paso-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  display: flex;
  align-items: flex-start;
  /* Box shadow optional, image looks clean flat or subtle shadow */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  min-height: 250px; /* Ensure consistency */
}
.pasos .paso-card .step-number {
  font-family: "Caviar Dreams", sans-serif;
  font-size: 50px;
  color: #fdcce5; /* Light pink number */
  font-weight: 700;
  line-height: 0.8;
  margin-right: 30px;
  min-width: 60px; /* Prevent text wrap interference */
}
.pasos .paso-card .step-content h4 {
  color: var(--Rosa-oscuro, #cf5a9a);
  font-family: "Caviar Dreams";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 20px;
}
.pasos .paso-card .step-content p {
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.pasos .pasos-prev,
.pasos .pasos-next {
  cursor: pointer;
  transition: transform 0.2s;
}
.pasos .pasos-prev:hover,
.pasos .pasos-next:hover {
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .pasos {
    padding: 100px 60px 200px;
    text-align: center;
  }
  .pasos .container {
    max-width: 630px !important;
    margin: 0 auto;
  }
  .pasos h2 {
    text-align: left;
    margin-bottom: 40px;
  }
  .pasos .dots-decoration,
  .pasos p {
    text-align: left;
  }
}
/* Mobile Responsiveness */
@media (max-width: 767px) {
  .pasos {
    background-image: url("../imagenes/movil/fondoPasos.png");
    padding: 80px 0;
    text-align: left;
  }
  .pasos h2 {
    margin-bottom: 30px;
    text-align: left !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .pasos .dots-decoration {
    text-align: left;
    margin-bottom: 0 !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .pasos .pasos-nav {
    justify-content: center !important;
  }
  .pasos .paso-card {
    padding: 40px 20px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .pasos .paso-card .step-number {
    margin-right: 0;
    margin-bottom: 20px;
    font-size: 60px;
  }
  .pasos .paso-card {
    border-radius: 20px;
    padding: 50px 15px 41px;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-height: 250px;
    flex-direction: row !important;
    align-content: flex-start;
    align-items: flex-start !important;
    gap: 15px;
  }
  .pasos .paso-card .step-number {
    font-size: 40px;
  }
}
/* Footer Section Styles - O' Dreams */
.footer {
  background-color: #fff;
  position: relative;
}
.footer .footer-nubes {
  background-color: #ffe2ef;
  line-height: 0;
  width: 100%;
  margin-bottom: -1px; /* Avoid gap */
}
.footer .footer-nubes img {
  width: 100%;
  height: auto;
}
.footer .footer-content {
  background-color: #fff; /* Ensure continuity */
  margin-top: -150px;
}
.footer .footer-content .logo-footer {
  max-width: 390px;
  height: auto;
  margin-top: -160px;
  margin-bottom: 80px !important;
}
.footer .footer-content h2 {
  color: var(--oscuro, #660934);
}
.footer .footer-content p {
  color: #000;
}
.footer .footer-content .btn-footer {
  background-color: var(--Amarillo, #fce781);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 40px;
  border-radius: 50px;
  border: none;
  letter-spacing: 1px;
  transition: transform 0.2s, background-color 0.2s;
}
.footer .footer-content .btn-footer:hover {
  transform: scale(1.05);
  background-color: #ffe66d;
  text-decoration: none;
  color: #000;
}
.footer .footer-content .copyright {
  margin-top: 40px;
  color: #000;
  font-size: 16px;
}
.footer .footer-content .copyright b {
  font-weight: 800;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .footer .footer-content {
    margin-top: 0;
  }
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer .footer-content {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 80px;
  }
  .footer .footer-content h2 {
    font-size: 32px;
    line-height: 36px;
  }
  .footer .footer-content p br {
    display: none;
  }
  .footer .footer-content .logo-footer {
    max-width: 250px;
  }
}/*# sourceMappingURL=styles.css.map */