/* Font  */
@font-face {
  font-family: Montserrat;
  src: url("../font/Montserrat-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Montserrat;
  src: url("../font/Montserrat-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 700;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Montserrat;
  src: url("../font/Montserrat-ExtraBold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 800;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Montserrat;
  src: url("../font/Montserrat-Black.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 900;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
/* Variables de Sass */
@keyframes pulse2 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
/* Header Styles */
header.menu {
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: 1000;
}

header.menu .container-fluid {
  max-width: 1530px; /* Adjusted for standard container width */
}

.navbar {
  padding: 15px 0;
}

.logoD {
  max-width: 200px; /* Adjusted size */
  display: block;
  margin: 10px 0;
  width: 166px;
}

.navbar-nav {
  align-items: center;
}

.navbar-expand-lg .navbar-collapse {
  justify-content: space-between;
}

.menuD {
  width: 100% !important;
  margin: 0 auto;
  text-align: center;
  display: flex !important;
  justify-content: flex-end; /* Align right */
  align-items: center;
}
.menuD .btn-black {
  background-color: #231f20;
  color: #fff;
  border: 0;
  border-radius: 30px;
  font-size: 16px;
  font-family: inherit; /* Use global font */
  font-weight: 700;
  padding: 10px 30px;
}
.menuD .btn-black:hover {
  background-color: #000;
  opacity: 0.9;
}

.nav-link {
  color: #231f20; /* Black color */
  text-align: center;
  font-family: "Jost", sans-serif; /* Assumed font based on mockups/modern style, specifically requested to use general fonts */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-left: 20px;
  padding: 0 !important;
  white-space: nowrap;
}

.nav-link:hover {
  opacity: 0.7;
  text-shadow: 0 0 0.9px currentColor; /* Simulate bold without layout shift */
}

/* 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='%23231f20' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.logoM {
  max-height: 50px;
}

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

@media (max-width: 1540px) {
  .logoD {
    max-width: 180px;
  }
}
@media (max-width: 991px) {
  .nav-link {
    color: #fff;
    font-size: 18px;
    margin: 10px 0;
  }
  .nav-link:hover {
    color: #fff;
    opacity: 0.8;
  }
  .menuD {
    display: none !important;
  }
  .logoM {
    max-height: 50px;
    width: auto;
  }
  header.menu .container-fluid {
    padding: 0 20px;
  }
  header.menu {
    padding: 10px 15px;
  }
  header.menu button.navbar-toggler {
    z-index: 20;
    position: relative;
    margin-left: auto;
  }
  .navbar-collapse {
    background-color: #231f20; /* Dark background for mobile menu */
    padding: 40px 20px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
  }
  .nav-item {
    text-align: center;
  }
  .logoD {
    display: none;
  }
}
@media (max-width: 767px) {
  header.menu .container-fluid {
    padding: 0 15px;
  }
}
/* General & Typography */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

section {
  padding: 100px 15px;
}

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

h1 {
  color: var(--negro, #231f20);
  font-family: Montserrat;
  font-size: 66px;
  font-style: normal;
  font-weight: 900;
  line-height: 88px; /* 133.333% */
}

.banner p {
  color: var(--negro, #231f20);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 150% */
}

h2 {
  color: var(--negro, #231f20);
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 44px; /* 146.667% */
}
h2 span {
  color: var(--naranja, #ed9d2c);
}

h4 {
  color: var(--negro, #231f20);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px; /* 144.444% */
}

p {
  color: var(--negro, #231f20);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}

/* Buttons */
.btn,
.btnbr,
input.hs-button.primary.large {
  color: var(--negro, #231f20);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 187.5% */
  border-radius: 16px;
  background: #fff;
}

.btn:hover,
.btnbr:hover,
input.hs-button.primary.large:hover {
  background-color: #e43b36;
  color: #fff;
  opacity: 0.7;
}

.btn img,
.btnbr img,
input.hs-button.primary.large img {
  margin: 4px 0 4px 15px;
  width: 12px;
}

/* Animations */
/* Utility Classes */
.hiddenD,
.hiddenl {
  display: none;
}

.hiddenS {
  display: none;
}

@media screen and (max-width: 992px) {
  .hiddenl {
    display: block;
  }
  .hiddenD {
    display: block;
  }
  .hiddenS {
    display: none;
  }
  h1 {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .hiddenD {
    display: block !important;
  }
  .hiddenM {
    display: none;
  }
  .hiddenS {
    display: block;
  }
  h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .banner p {
    font-size: 18px;
    line-height: 24px;
  }
  h2 {
    font-size: 24px !important;
    line-height: 36px !important;
  }
}
.banner {
  padding: 120px 0 50px; /* Top padding to account for fixed header if needed, or just spacing */
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: transparent; /* Remove old background */
}
.banner .container-fluid {
  max-width: 1730px;
}

/* Container for the background image */
.banner-bg {
  background-image: url("../imagenes/back_header.png");
  background-size: 100% 100%; /* Stretch to fill container */
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 60px; /* Inner padding for content */
  border-radius: 30px; /* Assuming rounded look from mockup */
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
}
.banner-bg .dentro {
  max-width: 1160px;
  margin: 0 auto;
}

.banner h1 {
  color: var(--negro, #231f20);
  text-align: left;
  margin-bottom: 10px;
  text-transform: none; /* Reset if previously uppercase */
}

.banner p {
  text-align: left;
  margin-bottom: 40px;
  max-width: 90%;
}

.banner-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
  width: 444px;
}

.btn-black {
  border: 0;
  font-size: 18px;
  font-weight: 700;
  padding: 8px 35px;
  transition: all 0.3s ease;
}
.btn-black:hover {
  background-color: #000;
  transform: translateY(-2px);
}

/* Mobile & Tablet Styles */
@media (max-width: 991px) {
  .banner {
    padding: 100px 0 40px;
    min-height: auto;
  }
  .banner-bg {
    background-image: url("../imagenes/movil/back_header.png");
    padding: 60px 30px;
    flex-direction: column;
    background-size: 100% 100%;
    text-align: center;
  }
  .banner .content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 40px;
  }
  .banner-img {
    max-width: 200px;
    padding-bottom: 50px;
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .banner-bg {
    padding: 40px 0px;
    border-radius: 20px;
  }
  .banner p {
    max-width: 100%;
  }
  /* Ensure image is below text as per grid order */
  .banner .image-col {
    margin-top: 20px;
  }
  .btn-black {
    border: 0;
    font-size: 16px;
    font-weight: 700;
    padding: 5px 30px;
  }
  .banner-img {
    max-width: 170px;
    padding-bottom: 50px;
    padding-top: 50px;
  }
}
.nosotros {
  background-color: #fff;
  padding: 150px 0 200px;
  position: relative;
}
.nosotros .container {
  max-width: 1250px;
}
.nosotros .cont {
  padding-left: 80px;
}

.nosotros h2 {
  margin-bottom: 30px;
  text-align: left;
}

.nosotros p {
  text-align: left; /* Explicitly align left as requested */
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--negro, #231f20);
}
.nosotros p strong {
  font-weight: 700;
}

.nosotros .nosotros-img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .nosotros {
    padding: 60px 40px;
    text-align: left;
  }
  .nosotros .cont {
    padding-left: 15px; /* Reset padding for mobile */
    padding-right: 15px;
    margin-top: 30px;
  }
  .nosotros .nosotros-img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }
  .nosotros h2 {
    font-size: 32px;
  }
  .nosotros h2 br {
    display: none; /* Let text flow naturally on mobile */
  }
}
@media (max-width: 767px) {
  .nosotros {
    padding: 80px 20px;
    /* Ensure image is visible in mobile as per user mockup usually showing both */
  }
  .nosotros img {
    display: block !important;
  }
  .nosotros h2,
  .nosotros p {
    text-align: center;
  }
}
.beneficios {
  background-color: #f3f3f3; /* Assuming light grey background from mockup or general style context */
  padding: 200px 0;
}

.beneficios .container {
  max-width: 1650px;
}

.beneficios h2 {
  margin-bottom: 60px;
  color: var(--negro, #231f20);
}

/* Card Content Styles */
.card-content {
  text-align: center;
  padding: 0 40px;
}

.beneficios img {
  height: 86px;
  width: 100.145px;
  margin-bottom: 50px;
  display: inline-block;
  box-shadow: none; /* Remove previous shadow */
  border-radius: 0;
}

.beneficios h4 {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.beneficios p {
  margin-bottom: 0;
}

/* Desktop Dividers */
@media (min-width: 992px) {
  .beneficio-card {
    border-right: 1px solid #ddd;
  }
  .beneficio-card:last-child {
    border-right: none;
  }
}
/* Swiper Mobile Styles */
.beneficios .swiper {
  width: 100%;
  padding-bottom: 50px;
}

.beneficios .swiper-slide {
  background: transparent;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.beneficios .swiper-pagination-bullet {
  background: #d3d3d3;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
}

.beneficios .swiper-pagination-bullet-active {
  background: var(--naranja, #ed9d2c); /* Active dot color */
}

@media (max-width: 1540px) {
  .beneficios {
    padding: 80px 20px;
  }
}
@media (max-width: 991px) {
  .beneficios {
    padding: 100px 40px;
  }
  .beneficios h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .beneficios h2 br {
    display: none;
  }
  .card-content {
    padding: 20px;
    /* Mockup shows just text/icon on mobile card maybe */
  }
  .beneficios .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .beneficios {
    padding: 80px 20px;
  }
  /* Adjustments for mobile slider spacing */
}
.contacto {
  background-color: #fff;
  padding: 200px 0 100px;
  overflow: visible; /* Ensure megaphone can stick out if needed */
}
.contacto .hs-input.hs-fieldtype-intl-phone {
  border-bottom: 0 !important;
  margin-bottom: 0px !important;
}

.contacto .container-fluid {
  max-width: 1580px;
  padding: 0 40px;
}

/* Boxed Background */
.contacto .form-container-box {
  background-image: url("../imagenes/back_form.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 30px;
  padding: 100px 80px 150px;
  position: relative;
  /* Megaphone Image */
}
.contacto .form-container-box .row {
  max-width: 1150px;
  margin: 0 auto;
}
.contacto .form-container-box::after {
  content: "";
  position: absolute;
  left: 4%;
  bottom: -60px;
  width: 410px;
  height: 285px;
  background-image: url(../imagenes/megafono.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 20;
}

/* Content Styles */
.contacto h2 {
  color: var(--negro, #231f20);
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 50px;
  font-weight: 900;
  text-align: left;
}

.contacto p {
  color: var(--negro, #231f20);
  text-align: left;
  font-size: 20px;
}

.contacto .form-col {
  padding: 0 20px;
}

/* HubSpot Form Customization Overrides */
.hbspt-form .hs-input {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #7d7d7d !important;
  color: #1a3a49 !important;
  font-family: inherit;
  margin-bottom: 10px !important; /* Reduced from 20px */
  padding: 5px 0 !important; /* Ensure tight padding */
  height: auto !important; /* Let content dictate height */
  box-shadow: none !important; /* Remove shadows */
  border-radius: 0 !important; /* Remove rounded corners that might look like double lines */
}

.hbspt-form .hs-input:focus {
  border-bottom-color: #000 !important;
  box-shadow: none !important;
}

.hbspt-form label {
  font-family: inherit;
  color: #231f20;
  font-size: 14px;
  margin-bottom: 2px; /* Reduced from 5px */
  display: block;
}

.hbspt-form .hs-button.primary {
  background-color: #fff !important;
  color: #231f20 !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 10px 40px !important;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px; /* Reduced from 20px */
  width: auto;
  cursor: pointer;
}

.hbspt-form .hs-button.primary:hover {
  opacity: 0.9;
  background-color: #f1f1f1 !important;
}

.hbspt-form .hs-richtext {
  margin-bottom: 10px;
}

/* Specific fieldset helper if needed for multi-column rows used by HubSpot */
.hbspt-form .fieldset {
  margin-bottom: 10px !important;
}

@media (max-width: 991px) {
  .contacto {
    padding: 50px 0;
  }
  .contacto .form-container-box .row {
    max-width: 440px;
    margin: 0 auto;
    padding: 40px 0;
  }
  .contacto .container-fluid {
    padding: 0 15px;
    max-width: 100%;
  }
  .contacto .form-container-box {
    background-image: url("../imagenes/movil/back_form.png");
    padding: 40px 20px; /* Reduced padding on mobile too */
    flex-direction: column;
  }
  .contacto .form-container-box::after {
    width: 230px;
    height: 160px;
    left: 30px;
    bottom: -60px;
  }
  .contacto .form-col {
    padding: 20px 0;
  }
  .contacto h2 {
    font-size: 30px;
    text-align: center;
  }
  .contacto h2 br {
    display: none;
  }
  .contacto p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .contacto .form-container-box {
    padding: 40px 30px;
    background-size: 100% 100%;
  }
  .contacto .form-container-box h2,
  .contacto .form-container-box p {
    text-align: left;
  }
  .contacto .container-fluid {
    padding: 0 7px;
    max-width: 100%;
  }
}
.datos {
  padding: 100px 0;
  position: relative;
  background-color: #fff;
}
.datos .container {
  max-width: 870px;
}

.datos h2 {
  color: var(--negro, #231f20);
  text-align: left;
}
.datos h2 span {
  color: var(--naranja, #ed9d2c);
}

.datos-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.datos-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 30px;
}
.datos-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background-color: var(--naranja, #ed9d2c);
  border-radius: 50%;
}
.datos-list li p {
  text-align: left;
  font-size: 18px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}
.datos-list li p strong {
  color: var(--negro, #231f20);
  font-weight: 700;
}

@media (max-width: 1540px) {
  .datos {
    padding: 80px 20px;
  }
}
@media (max-width: 991px) {
  .datos {
    padding: 120px 40px;
  }
  .datos .container {
    max-width: 600px;
  }
  .datos h2 {
    text-align: left;
    font-size: 32px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .datos {
    padding: 120px 20px 80px;
  }
  .datos h2 {
    margin-bottom: 20px;
  }
  .datos-list {
    padding: 0;
  }
  .datos-list li {
    padding-left: 30px;
  }
  .datos-list li::before {
    width: 14px;
    height: 14px;
    top: 5px;
  }
  .datos-list li p {
    font-size: 16px;
  }
}
.galeria {
  background-color: #fff;
  padding: 100px 0;
}

.galeria h2 {
  color: var(--negro, #231f20);
}
.galeria h2 span {
  color: var(--naranja, #ed9d2c);
}

.mySwiperGaleria {
  padding-bottom: 60px !important; /* Make room for pagination below */
  padding-top: 20px;
  position: relative;
  overflow: hidden; /* Ensure no overflow issues */
}

.mySwiperGaleria .swiper-slide {
  height: auto;
  width: 28%; /* Desktop width - allows ~3.5 slides visible */
  /* Remove restricted widths to allow proper flow */
}

.mySwiperGaleria .swiper-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0;
}

/* Pagination Dots */
.mySwiperGaleria .swiper-pagination {
  bottom: 0 !important; /* Anchor to bottom of container */
  position: absolute;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.mySwiperGaleria .swiper-pagination-bullet {
  background: #d3d3d3;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
}

.mySwiperGaleria .swiper-pagination-bullet-active {
  background: var(--naranja, #ed9d2c);
}

@media (max-width: 991px) {
  .galeria {
    padding: 60px 0;
  }
  .galeria h2 {
    font-size: 30px;
    padding: 0 20px;
  }
  .galeria h2 br {
    display: none;
  }
  .mySwiperGaleria {
    padding-bottom: 50px !important;
  }
  .mySwiperGaleria .swiper-slide img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .galeria {
    padding: 50px 15px;
  }
  .galeria .mb-5 {
    margin-bottom: 1rem !important;
  }
  .galeria h2 {
    font-size: 26px;
  }
}
.secreto {
  padding: 100px 0;
  position: relative;
  background-color: #fff;
  overflow: visible;
  /* Coins Image Decoration */
}
.secreto .container {
  position: relative;
}
.secreto .container::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 40%;
  transform: translateY(-50%);
  width: 150px;
  height: 300px;
  background-image: url(../imagenes/ilusMonedas.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.secreto h2 {
  color: var(--negro, #231f20);
  margin-bottom: 20px;
}
.secreto h2 span {
  color: var(--naranja, #ed9d2c);
}

.secreto p {
  text-align: center;
}
.secreto p strong {
  color: var(--negro, #231f20);
  font-weight: 700;
}

@media (max-width: 1400px) {
  .secreto .container::after {
    right: -50px;
    width: 120px;
  }
}
@media (max-width: 991px) {
  .secreto {
    padding: 100px 40px;
    max-width: 700px;
    margin: 0 auto;
  }
  .secreto .container::after {
    display: none; /* Hide decorative image on smaller screens or adjust position */
    /* If user wants it on mobile, we can position it differently, e.g. bottom right */
    /* display: block; right: 0; bottom: -40px; top: auto; transform: none; height: 150px; */
  }
  .secreto h2 {
    font-size: 30px;
  }
  .secreto h2 br {
    display: none;
  }
}
@media (max-width: 767px) {
  .secreto {
    padding: 80px 15px;
  }
  .secreto h2 {
    font-size: 26px;
  }
  .secreto p {
    font-size: 16px;
  }
}
.diferencial {
  padding: 100px 0 200px;
  background-color: #fff;
}
.diferencial .rounded-image {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow if desired, can remove */
}
.diferencial .container {
  max-width: 1250px;
}
.diferencial .cont {
  padding-left: 80px;
}

.diferencial h2 {
  color: var(--negro, #231f20);
  margin-bottom: 40px;
  text-align: left;
}
.diferencial h2 span {
  color: var(--naranja, #ed9d2c);
}

.diferencial-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.diferencial-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.diferencial-list li .num-circle {
  width: 45px;
  height: 45px;
  background-color: #f7e651; /* Lighter yellow from image reference */
  color: var(--negro, #231f20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
  margin-right: 40px;
  margin-top: 5px; /* Align with text top */
}
.diferencial-list li p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  text-align: left;
}
.diferencial-list li p strong {
  color: var(--negro, #231f20);
  font-weight: 800;
}

/* Mobile Styles */
@media (max-width: 991px) {
  .diferencial {
    padding: 60px 0;
    max-width: 700px;
    margin: 0 auto;
  }
  .diferencial .row {
    flex-direction: column-reverse; /* If image should be below? Or standard top-bottom. User didn't specify, usually image top or bottom. Standard is Image Top on mobile often. Let's keep standard structure unless requested. */
    /* Actually, if "Image Left" on desktop, standard stacking is Image Top. */
  }
  .diferencial .cont {
    padding-left: 0;
    margin-bottom: 60px;
  }
  .diferencial h2 {
    font-size: 30px;
    text-align: center;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .diferencial {
    padding: 50px 30px;
  }
  .diferencial .row {
    flex-direction: row;
  }
  .diferencial .row .mb-5 {
    padding: 0 !important;
  }
  .diferencial h2 {
    text-align: left;
    margin: 20px 0 40px !important;
  }
  .diferencial-list li {
    margin-bottom: 20px;
  }
  .diferencial-list li .num-circle {
    width: 35px;
    height: 35px;
    font-size: 16px;
    margin-right: 15px;
  }
  .diferencial-list li p {
    font-size: 15px;
  }
}
.video {
  padding: 150px 0;
  background-color: #f3f3f3;
}

.video h2 {
  color: var(--negro, #231f20);
  margin-bottom: 20px;
}
.video h2 span {
  color: var(--naranja, #ed9d2c);
}

.video .video-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #000; /* Placeholder while loading */
}

.video .video-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.video .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .video {
    padding: 100px 0;
  }
  .video h2 {
    padding: 0 15px;
    font-size: 24px;
  }
  .video h2 br {
    display: none;
  }
}
.pasos {
  background-color: #fff;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pasos .container {
  max-width: 1680px;
  background-image: url("../imagenes/back_pasos.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 780px;
  display: flex;
}
.pasos .row {
  max-width: 1150px;
  margin: 0 auto;
}

.pasos-container-box {
  /* If we want to wrap it */
}

.pasos h2 {
  color: var(--negro, #231f20); /* Or black? Image shows black text "Paso a paso..." */
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 30px;
  text-align: left;
}

.pasos .swiper {
  padding: 20px; /* Space for shadow */
  padding-bottom: 50px;
}

.pasos .step-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 100px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  min-height: 350px; /* Consistent height */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 552px;
  margin: 0 auto;
}
.pasos .step-card .step-icon {
  width: 50px;
  height: 50px;
  background-color: #eadd4b; /* Yellow circle */
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 35px;
  font-size: 20px;
}
.pasos .step-card h4 {
  color: #000;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
}
.pasos .step-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
}

.pasos .swiper-pagination-bullet {
  background: #fff; /* White dots on orange background */
  opacity: 0.5;
}

.pasos .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

@media (max-width: 991px) {
  .pasos {
    padding: 60px 0;
    overflow: hidden; /* Prevent overflow */
  }
  .pasos .row {
    max-width: 100%; /* Fix fixed width causing scroll */
    padding: 0 15px; /* Add breathing room */
    margin: 0 auto;
  }
  .pasos .container {
    max-width: 100%;
    background-image: url("../imagenes/movil/back_footer.png");
    background-size: 100% 100%; /* Stretch to fill container */
    background-position: top center;
    background-repeat: no-repeat;
    min-height: auto; /* Remove huge fixed height */
    display: block; /* Flex causing weird stretching? */
    padding-bottom: 50px; /* Space for image */
  }
  .pasos h2 {
    margin-top: 40px;
    margin-bottom: -30px;
    padding: 0 20px;
    text-align: left;
  }
  .pasos .swiper-slide {
    /* Mobile handling often needs specific widths if not 100% */
  }
  .pasos .step-card {
    max-width: 100%;
    padding: 40px 30px; /* Reduced padding for mobile */
    width: auto; /* Override fixed width from desktop */
  }
  .pasos .row {
    max-width: 100%;
    padding: 20px 5px;
    margin: 0 auto;
  }
  .pasos .step-card h4 {
    font-size: 18px;
  }
}
.site-footer {
  background-color: #fff;
  padding-top: 50px;
}
.site-footer .container {
  max-width: 1630px;
}
.site-footer .container.brx {
  max-width: 1160px;
}
.site-footer .footer-bottom {
  max-width: 1160px;
  padding: 40px 0px !important;
  margin: 0 auto;
}

.footer-cta {
  padding: 80px 0 150px;
}

.footer-title {
  color: var(--negro, #231f20);
  margin-bottom: 0;
}
.footer-title span {
  color: var(--naranja, #ed9d2c);
}

.footer-subtitle {
  color: #555;
  margin-bottom: 0;
  text-align: left;
}

.btn-franquicia {
  background-color: #231f20; /* Dark button as per design */
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border: none;
  transition: background-color 0.3s ease;
}
.btn-franquicia:hover {
  background-color: #000;
}

.footer-divider {
  border-color: #eee;
  margin: 0;
  opacity: 1;
}

.footer-logo {
  height: 60px; /* Adjust based on logo aspect ratio */
  width: auto;
}

.copyright-text {
  color: #888;
  font-size: 14px;
}

@media (max-width: 991px) {
  .footer-cta {
    padding: 100px 40px;
    max-width: 700px;
    margin: 0 auto;
  }
  .footer-title {
    font-size: 28px;
    text-align: left;
  }
  .footer-title br {
    display: none;
  }
  .footer-subtitle {
    text-align: left;
    margin-bottom: 30px;
  }
  .btn-franquicia {
    width: 100%; /* Full width button on mobile if preferred, or auto */
  }
  .footer-bottom {
    padding: 30px 0;
  }
  .site-footer .footer-bottom {
    padding: 40px 40px !important;
  }
}
@media (max-width: 767px) {
  .footer-logo {
    height: 50px;
    margin-bottom: 15px;
  }
  .footer-cta {
    padding: 60px 20px 100px;
  }
  .footer-subtitle {
    margin-bottom: 20px;
  }
  .btn-franquicia {
    background-color: #231f20;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border: none;
    transition: background-color 0.3s ease;
    padding: 7px 34px !important;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0;
    display: block;
  }
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/* Base Classes */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.reveal-up {
  transform: translate3d(0, 40px, 0);
}

.reveal-left {
  transform: translate3d(-40px, 0, 0);
}

.reveal-right {
  transform: translate3d(40px, 0, 0);
}

/* Active State */
.reveal-up.active,
.reveal-left.active,
.reveal-right.active,
.reveal-fade.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Delays */
.delay-100 {
  transition-delay: 0.1s;
}

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

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

.delay-400 {
  transition-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
}/*# sourceMappingURL=styles.css.map */