@charset "UTF-8";
/* Font  */
@font-face {
  font-family: "Barlow";
  src: url("../font/Barlow-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Barlow";
  src: url("../font/Barlow-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Barlow";
  src: url("../font/Barlow-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Barlow";
  src: url("../font/Barlow-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Barlow";
  src: url("../font/Barlow-Bold.ttf") format("truetype");
  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: 1600px;
}

.nav-bar-custom {
  border-radius: 13px;
  background: #f2f2f2;
  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: #51389c;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 18px;
}
.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 */
  padding: 0 200px;
}

.logoD {
  position: absolute;
  top: -50px; /* Move up to protrude */
  left: 50%;
  transform: translateX(-50%);
  width: 110px; /* 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 0; /* Remove side padding */
    background: transparent !important; /* Remove background */
    box-shadow: none !important; /* Remove shadow */
    justify-content: space-between;
  }
  .navbar-collapse {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  /* Mobile Logo */
  .logoM {
    width: 100px; /* Adjust size */
    margin: 0;
    padding: 0;
  }
  .navbar-brand.d-lg-none {
    position: static; /* Reset positioning */
    transform: none;
    margin: 0;
  }
  /* Hide Desktop Logo in Mobile Menu */
  .logo-container {
    display: none !important;
  }
  .navbar-toggler {
    margin-left: auto;
    background-color: #c5b5f7; /* Light Purple Background */
    border-radius: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
  }
  .navbar-toggler .navbar-toggler-icon {
    width: 30px;
    height: 30px;
    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='%2351389c' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    /* Dark Purple formatting %2351389c */
  }
}
@media (max-width: 767px) {
  header.menu {
    top: 30px;
  }
  .nav-bar-custom {
    min-height: 60px;
  }
  .navbar-brand.d-lg-none .logoM {
    width: 73px; /* Slightly smaller on very small screens if needed */
  }
}
html,
body {
  overflow-x: hidden;
  background-color: white;
  font-family: "Barlow", sans-serif;
}

a {
  text-decoration: none;
}

section {
  padding: 100px 15px;
}

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

h1 {
  color: #51389c;
  font-family: Barlow;
  font-size: 51px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
h1 span {
  font-style: italic;
  font-weight: 600;
}

.banner p {
  color: #686868;
  font-family: Barlow;
  font-size: 25px;
  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: 42px;
  background: #c5b5f7;
  color: #51389c;
  text-align: center;
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.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: #fff;
  text-align: center;
  font-family: Barlow;
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
h2 b {
  font-style: italic;
  font-weight: 600;
}

h4 {
  color: #51389c;
  text-align: center;
  font-family: Barlow;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

p {
  color: #fff;
  text-align: center;
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.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;
  }
}
@media screen and (max-width: 767px) {
  .hiddenD {
    display: block !important;
  }
  .hiddenM {
    display: none;
  }
  .hiddenS {
    display: block;
  }
  h1 {
    font-size: 30px;
    line-height: normal;
  }
  .banner p {
    font-size: 18px;
    line-height: normal;
  }
  h2 {
    font-size: 30px;
    line-height: normal;
  }
}
/* 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 - Be Balance */
.banner {
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 91vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  /* Background Images */
  background-image: url("../imagenes/header.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Text Styling */
}
.banner .container {
  position: relative;
  z-index: 10;
  max-width: 1520px;
}
.banner .banner-text {
  text-align: left;
}
.banner .banner-text h1 {
  margin-bottom: 35px;
  margin-top: 60px;
}
.banner .banner-text h1 span {
  display: block; /* Ensure it breaks if needed or behaves like block */
}
.banner .banner-text p {
  margin-bottom: 45px !important;
  max-width: 90%; /* Prevent it from touching the edge too much if tight */
  text-align: left;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .banner {
    height: auto;
    min-height: 100vh;
    padding: 180px 0 100px; /* Space for fixed/absolute header */
    background-image: url("../imagenes/movil/header.jpg");
    background-position: top center;
    align-items: center; /* Center vertically in the available space */
  }
  .banner .banner-text {
    text-align: center;
    /* Center button */
  }
  .banner .banner-text h1 {
    margin-bottom: 20px;
  }
  .banner .banner-text p {
    margin: 0 auto 30px;
    text-align: center;
  }
  .banner .banner-text .btn-banner {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .banner {
    padding-top: 150px;
  }
  .banner .banner-text h1 {
    margin-top: 0;
  }
}
/* Nosotros Section Styles - Be Balance */
.nosotros {
  background-image: url("../imagenes/nosotros.jpg");
  background-size: cover; /* Cover usually works, but check if 'contain' or '100% 100%' needed for specific seamlessness */
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 200px 0 400px; /* High bottom padding to allow Beneficios to overlap */
  position: relative;
  z-index: 1;
}
.nosotros h2 {
  color: #fff;
  margin-bottom: 30px;
}
.nosotros p {
  color: #fff;
  max-width: 600px;
  margin: 0 auto 20px;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .nosotros {
    padding: 80px 15px 150px; /* Adjusted padding */
  }
}
@media (max-width: 767px) {
  .nosotros {
    background-image: url("../imagenes/movil/nosotros.png");
    padding: 100px 15px 130px;
  }
  .nosotros h2 {
    font-size: 31px;
    margin-bottom: 20px;
  }
  .nosotros p {
    font-size: 16px;
  }
}
/* Beneficios Section Styles - Be Balance */
.beneficios {
  position: relative;
  z-index: 10;
  margin-top: -360px; /* Pull up to overlap Nosotros */
  padding-bottom: 100px;
}
.beneficios .container {
  max-width: 1700px;
}
.beneficios .beneficios-container {
  background: #f2f2f2;
  border-radius: 27px;
  padding: 100px 80px; /* As requested: 150px top/bottom (reduced to 100 for balance) 80px sides */
  /* Design says 150px top/bottom, 80px sides. Let's stick closer to request but valid css */
  padding: 80px 80px;
}
.beneficios .benefit-item {
  padding: 60px 30px;
}
.beneficios .benefit-item h4 {
  color: #51389c; /* Purple from general */
  margin-top: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.beneficios .benefit-item p {
  color: #686868; /* Grey from general/banner */
}
.beneficios .benefit-item img {
  max-height: 134px;
  width: auto;
}

@media (max-width: 1200px) {
  .beneficios .beneficios-container {
    padding: 80px 40px;
  }
}
@media (max-width: 991px) {
  .beneficios {
    margin-top: -200px; /* Less overlap on mobile */
    padding-left: 0;
    padding-right: 0;
  }
  .beneficios .container {
    padding-left: 0;
    padding-right: 0;
  }
  .beneficios .beneficios-container {
    background: transparent; /* Reset container for mobile if card style changes or keep it? */
    /* Request says: "no full widt". Mobile becomes swiper. 
       Usually mobile cards are individual. 
       Reference image Mobile.png shows carousel.
       Let's assume the gray background container is REMOVED or CHANGED on mobile.
       The prompt says: "en movil beneficios se combierte en un swiper slider".
       Usually this implies the big gray box is gone and we have individual cards. */
    padding: 0;
    border-radius: 0;
    background: none;
  }
  .beneficios .benefit-item {
    /* If individual cards are needed they go here, but design seems to just be icons on background?
       Actually Mobile.png shows white/gray rounded card for the carousel item?
       "Mobile.png" shows: A large purple area, then a large white card with rounded numbering? No that's Pasos.
       Let's look at the mobile prompt: "en movil beneficios se combierte en un swiper slider".
       And "4 itens que en movil se combierten en 4 card del swiper slider".
       So we likely need individual card styling for mobile. */
    background: #f2f2f2;
    border-radius: 27px;
    padding: 40px 20px;
    height: 100%;
  }
  .beneficios .swiper {
    padding: 10px;
  }
  .beneficios .swiper-pagination {
    position: relative;
    bottom: -10px !important;
    margin-top: 20px;
  }
  .beneficios .swiper-pagination .swiper-pagination-bullet {
    background: #51389c !important; /* Brand Purple */
    opacity: 0.3;
    width: 10px;
    height: 10px;
  }
  .beneficios .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #51389c !important;
  }
}
@media (max-width: 767px) {
  .beneficios {
    padding-bottom: 50px;
  }
}
/* Contacto / Form Styles - O' Dreams */
.contacto {
  background-color: #fff; /* Changed to white */
  padding: 100px 0 150px;
  position: relative;
  overflow-x: hidden;
  /* Form Column wrapper if needed from my previous _contacto.scss, 
     but keeping _form structure mostly. Adding .form-wrapper style just in case 
     or relying on existing structure. 
     The HTML uses .form-wrapper. Let's add it here if it's missing or merge.
  */
  /* HubSpot Form Customization Overrides */
}
.contacto .container {
  max-width: 1240px;
}
.contacto h2 {
  color: #51389c; /* Purple */
  margin-bottom: 30px;
  line-height: 1.2;
  text-align: left;
}
.contacto h2 b {
  font-weight: 700;
}
.contacto .contact-img {
  width: 80%;
  height: auto;
  display: block;
  /* No border-radius */
}
.contacto .form-wrapper {
  padding-left: 30px;
}
.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 {
  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;
  margin-top: 20px !important;
}
.contacto form input[type=submit]:hover,
.contacto form .hs-button:hover {
  transform: scale(1.05);
  color: #fff !important;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .contacto {
    padding: 60px 0;
    text-align: center;
  }
  .contacto .row {
    flex-direction: column;
  }
  .contacto .form-wrapper {
    padding-left: 0;
    text-align: center;
    max-width: 530px;
    margin: 0 auto;
  }
  .contacto .contact-img {
    margin-bottom: 40px;
    /* Full width enabled */
    display: none;
  }
  .contacto h2 {
    margin-bottom: 30px;
  }
  .contacto h2 br {
    display: none;
  }
  .contacto form {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .contacto {
    padding: 20px 20px 50px;
  }
  .contacto h2 {
    font-size: 28px;
  }
}
/* Datos Section Styles - Be Balance */
.datos {
  background-image: url("../imagenes/datos.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0;
  position: relative;
}
.datos .container {
  position: relative;
  z-index: 2;
}
.datos h2 {
  color: #51389c; /* Purple */
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 70px !important;
  letter-spacing: 1px;
}
.datos h2 b {
  font-weight: 700;
}
.datos .datos-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.datos .dato-item p {
  color: #686868; /* Grey text */
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
}
.datos .separator-line {
  width: 300px;
  height: 1px;
  background-color: #d1d1d1; /* Light grey line */
  margin: 20px 0;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .datos {
    background-image: url("../imagenes/movil/datos.jpg");
    padding: 80px 20px;
    /* Target the column containing text */
  }
  .datos .col-lg-6 {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    padding: 100px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
  }
  .datos h2 {
    margin-bottom: 30px !important;
    color: #51389c;
    font-size: 24px; /* Adjust size for mobile card */
  }
  .datos .separator-line {
    width: 80%;
    background-color: #51389c; /* Make lines purple to match image? Or keep grey. Image shows dark lines. Dark grey or purple. */
    opacity: 0.5;
  }
  .datos .dato-item p {
    font-size: 14px;
  }
}
/* Galeria Section Styles - Be Balance */
.galeria {
  padding: 150px 0;
  background-color: #fff;
  overflow: hidden;
}
.galeria h2 {
  color: #51389c; /* Purple */
  margin-bottom: 80px;
  line-height: 1.2;
}
.galeria h2 span {
  font-weight: 700; /* Ensure bold part if needed, or italic */
  /* User request: "Explorá el equilibrio: así son nuestros estudios" */
}
.galeria .mySwiperGaleria {
  padding-left: 6%;
}
.galeria .swiper-slide {
  width: 50%; /* 2.5 slides visible (100% / 40% = 2.5) */
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease;
  padding-right: 30px;
}
.galeria .swiper-slide img {
  width: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover; /* Re-adding gently for aspect ratio */
  display: block;
  opacity: 0.2; /* Default opacity (very faded) */
  transition: opacity 0.4s ease;
}
.galeria .swiper-slide.swiper-slide-active img {
  opacity: 1; /* Active slide fully visible */
}
.galeria .swiper-slide.swiper-slide-next img {
  opacity: 0.5; /* Next slide partially visible */
}
.galeria .swiper-slide.dos {
  max-width: 35%;
}
.galeria .swiper-scrollbar {
  background: #e0cdf7 !important; /* Light purple track */
  height: 6px !important; /* Slightly thicker */
  position: relative !important;
  margin-top: 40px !important;
  width: 100% !important;
  border-radius: 3px !important;
  opacity: 1 !important; /* Ensure visibility */
}
.galeria .swiper-scrollbar .swiper-scrollbar-drag {
  background: #51389c !important; /* Dark purple handle */
  border-radius: 3px !important;
  opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .galeria {
    padding: 100px 0;
  }
  .galeria h2 {
    margin-bottom: 40px;
    padding: 0 15px;
  }
  .galeria .swiper-slide.dos {
    max-width: 100%;
  }
  .galeria .swiper-slide {
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .galeria {
    padding: 100px 0 80px;
  }
  .galeria .swiper-slide {
    padding-right: 0;
    width: 100%;
  }
  .galeria .swiper-slide img {
    width: 100%; /* Slight margin on mobile */
    height: auto;
    max-height: none;
    margin: 0 auto;
  }
  .galeria .mySwiperGaleria {
    padding-left: 6%;
    padding-right: 6%;
  }
}
/* Diferencial Section Styles - Be Balance */
.diferencial {
  padding: 170px 0;
  background-image: url("../imagenes/Fondo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff; /* White text for accessibility on dark purple */
}
.diferencial .container {
  max-width: 1120px;
}
.diferencial h2 {
  color: #fff;
  line-height: 1.2;
  text-align: left;
}
.diferencial p {
  color: #fff;
  margin-bottom: 20px;
  text-align: left;
}
.diferencial p:last-child {
  margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .diferencial {
    padding: 80px 30px;
    text-align: left; /* Stacked layout */
    background-image: url("../imagenes/movil/fondo.png"); /* Use PNG for mobile if specified */
  }
  .diferencial h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .diferencial {
    padding: 80px 15px;
  }
}
/* Video Section Styles - Be Balance */
.video-section {
  padding: 150px 0;
  background-color: #fff;
  text-align: center;
}
.video-section h2 {
  color: #51389c; /* Purple */
  margin-bottom: 80px;
}
.video-section .video-container {
  position: relative;
  padding-bottom: 46.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 900px; /* Max width */
  margin: 0 auto;
  border-radius: 20px; /* Rounded corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.video-section .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .video-section {
    padding: 80px 15px;
  }
  .video-section h2 {
    margin-bottom: 30px;
  }
  .video-section .video-container {
    padding-bottom: 56.25%;
  }
}
/* Pasos Section Styles - Be Balance */
/* Shared Background Wrapper */
.pasos-footer-wrapper {
  background-image: url("../imagenes/footer.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.pasos {
  padding: 100px 0 50px; /* Top padding, bottom space for footer overlap if needed */
  /* Navigation Buttons */
}
.pasos .container {
  max-width: 1030px;
}
.pasos h2 {
  color: #51389c;
  margin-bottom: 30px;
  text-align: left;
  margin-top: -60px;
}
.pasos h2 i {
  font-style: italic;
  font-weight: 600;
}
.pasos .swiper-container {
  padding: 20px; /* Space for shadows/borders */
  padding-bottom: 60px; /* Space for pagination/nav */
}
.pasos .swiper-slide {
  background: #fff;
  border: 5px solid #c5b5f7; /* Lilac border */
  border-radius: 30px; /* More rounded */
  padding: 40px 50px; /* More horizontal padding */
  height: auto;
  display: flex;
  flex-direction: row; /* Horizontal layout */
  align-items: center; /* Center vertically */
  justify-content: flex-start;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  text-align: left;
  /* Number */
}
.pasos .swiper-slide .step-number {
  color: #51389c;
  text-align: right;
  font-family: Barlow;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 76.923% */
  margin-right: 30px;
}
.pasos .swiper-slide .step-content h4 {
  color: #51389c; /* Purple */
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-align: left;
}
.pasos .swiper-slide .step-content p {
  color: #51389c; /* Using purple for text as well based on image, or keep grey? Image looks purple-ish grey. Let's stick to brand color or dark grey. */
  margin-bottom: 0;
  text-align: left;
}
.pasos .pasos-nav {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center; /* Or left aligned? Image shows them potentially centered under slider or left */
}
.pasos .pasos-nav .swiper-button-prev,
.pasos .pasos-nav .swiper-button-next {
  position: static;
  width: 50px;
  height: 50px;
  margin: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
}
.pasos .pasos-nav .swiper-button-prev::after,
.pasos .pasos-nav .swiper-button-next::after {
  content: "";
}
.pasos .pasos-nav .swiper-button-prev {
  background-image: url("../imagenes/prev.png");
}
.pasos .pasos-nav .swiper-button-next {
  background-image: url("../imagenes/next.png");
}

@media (max-width: 1540px) {
  .pasos .container {
    max-width: 1030px !important;
  }
}
/* Mobile Responsiveness */
@media (max-width: 991px) {
  .pasos-footer-wrapper {
    background-image: url("../imagenes/movil/footer.jpg");
  }
  .pasos .container {
    max-width: 600px !important;
    padding: 70px 0 0;
  }
  .pasos {
    padding: 60px 0;
    text-align: center;
  }
  .pasos .row {
    flex-direction: column;
  }
  .pasos h2 {
    margin-bottom: 40px;
  }
  .pasos .swiper-slide {
    height: auto; /* Allow auto height */
    min-height: auto;
    flex-direction: row; /* Keep horizontal */
    padding: 30px;
    text-align: left; /* Keep left aligned */
    align-items: flex-start; /* Align top if text is long, or center? Image looks centered vertically or top. Let's try center first as per desktop, or flex-start if content varies. User said "diagramado" like desktop. Desktop is align-items: center. */
    align-items: center;
  }
  .pasos .swiper-slide .step-number {
    margin-right: 20px; /* Slightly less space than desktop */
    margin-bottom: 0;
    font-size: 24px; /* Adjust if needed */
  }
}
@media (max-width: 767px) {
  .pasos {
    padding: 80px 15px 10px;
  }
  .pasos h2 {
    margin-bottom: 0;
    padding: 0 30px;
  }
}
/* Footer Section Styles - Be Balance */
.footer {
  padding-bottom: 30px; /* Space from bottom */
  position: relative;
  z-index: 2;
}
.footer .container {
  margin-top: 60px;
  max-width: 1700px;
}
.footer .floating-card {
  background-image: url("../imagenes/fondoFooter.png");
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  padding: 80px 40px 30px;
  text-align: center;
  color: #fff;
  max-width: 100%;
  margin: 0 auto 40px; /* Bottom margin for copyright */
  box-shadow: 0 20px 50px rgba(81, 56, 156, 0.3); /* Purple shadow */
}
.footer .floating-card h2 {
  margin-bottom: 60px;
}
.footer .floating-card h2 span {
  font-weight: 400; /* Regular weight part if needed */
  font-style: normal;
}
.footer .floating-card p {
  color: #fff;
  text-align: center;
  font-family: Barlow;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 450px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.footer .floating-card .btn-cta {
  background-color: #c5b5f7; /* Light Lilac Button */
  color: #51389c; /* Purple Text */
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 50px;
}
.footer .floating-card .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
.footer .copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.7); /* Semi-transparent white */
  font-size: 15px !important;
  margin-top: 30px;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .footer .floating-card {
    background-image: url("../imagenes/movil/fondoFooter.png");
    padding: 60px 20px;
    border-radius: 20px;
  }
  .footer .floating-card p {
    font-size: 18px;
  }
  .footer {
    padding-bottom: 0px;
  }
  .footer .copy {
    font-size: 14px !important;
  }
  .footer .floating-card {
    padding: 100px 20px 60px;
  }
  .footer .floating-card h2 {
    margin-bottom: 40px;
  }
}/*# sourceMappingURL=styles.css.map */