@font-face {
  font-family: Poppins;
  src: url("../font/Poppins-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Poppins;
  src: url("../font/Poppins-Italic.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 400;
  font-style: italic;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Poppins;
  src: url("../font/Poppins-SemiBold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 600;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Poppins;
  src: url("../font/Poppins-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 700;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Poppins;
  src: url("../font/Poppins-BoldItalic.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 800;
  font-style: italic;
  text-rendering: optimizeLegibility;
}
/* Variables de Sass */
@keyframes pulse2 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
/* Header Styles */
header.menu {
  background-color: #fff; /* White background as per mockup */
  position: relative;
  width: 100%;
  z-index: 1000;
}

header.menu .container-fluid {
  max-width: 1740px;
  padding: 0 15px;
}

.navbar {
  padding: 0 15px;
}
.navbar a.nav-link.btn-contact {
  margin-left: 120px;
}

.logoD {
  max-width: 256px;
  display: block;
}

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

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

.menuD {
  width: auto !important;
  margin-left: auto;
}
.menuD .menu-pill-container {
  display: flex;
  align-items: center;
  background-color: transparent; /* Removed pill background */
  border-radius: 0;
  padding: 0;
}
.menuD .nav-link {
  color: #000; /* Dark text */
  font-family: "Poppins", sans-serif;
  font-size: 14px; /* Slightly smaller for elegance */
  font-weight: 400;
  letter-spacing: 0;
  padding: 5px 20px !important;
}
.menuD .nav-link:hover {
  color: #bc0000; /* Red hover */
  opacity: 1;
}
.menuD .btn-contact {
  background-color: transparent;
  color: #000 !important;
  border: 1px solid #000;
  border-radius: 30px;
  padding: 8px 30px !important;
  font-weight: 500;
  margin-left: 10px;
  display: inline-block;
  text-transform: capitalize;
}
.menuD .btn-contact:hover {
  background-color: #bc0000;
  border-color: #bc0000;
  color: #fff !important;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(228, 59, 54, 0.3);
}

/* Mobile Toggler */
.navbar-toggler {
  border: none;
  outline: none;
  padding: 0;
}

.logoM {
  max-height: 50px;
}

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

@media (max-width: 1540px) {
  .logoD {
    max-width: 160px;
  }
}
@media (max-width: 991px) {
  .menuD {
    display: none !important;
  }
  .logoM {
    max-height: 80px;
    width: auto;
  }
  header.menu {
    position: fixed; /* Fixed on mobile for better UX? Or keep absolute? Mockup shows standard header. */
  }
  header.menu button.navbar-toggler {
    z-index: 20;
    position: relative;
    margin-left: auto;
    border-radius: 0;
    background: transparent !important;
    padding: 10px;
    color: #000;
    /* Burger Icon Black */
  }
  header.menu button.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='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  .navbar-collapse {
    background-color: #fff; /* White menu on mobile */
    padding: 20px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  /* Close Button Style */
  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #000; /* Black close button */
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    z-index: 1001;
    outline: none;
  }
  .close-menu:focus {
    outline: none;
  }
  .navbar-nav.d-lg-none {
    text-align: center;
  }
  .navbar-nav.d-lg-none .nav-link {
    color: #22246b; /* Blue text on mobile menu */
    font-size: 24px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 15px;
  }
  .logoD {
    display: none;
  }
}
@media (max-width: 767px) {
  header.menu .container-fluid {
    padding: 0 15px;
  }
  .navbar-nav.d-lg-none .nav-link {
    font-size: 20px;
  }
  .logoM {
    max-height: 70px;
    width: auto;
  }
  .navbar {
    padding: 0;
    border-bottom: 1px solid #000;
  }
}
/* General & Typography */
html,
body {
  width: 100%;
  overflow-x: hidden;
  background-color: white;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

section {
  padding: 100px 15px;
}

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

h1 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: 74px;
}

h2 {
  color: #22246b;
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  color: #22246b;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}

h6 {
  color: #bc0000;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
}

p {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

/* Buttons */
.btn,
.btnbr {
  border-radius: 83px;
  background: #fff;
  color: #22246b;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border: none;
  transition: all 0.3s ease;
}

.btn:hover,
.btnbr:hover {
  background-color: #bc0000;
  color: #fff;
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(228, 59, 54, 0.3);
}

.btn img,
.btnbr img {
  margin: 4px 0 4px 15px;
  width: 12px;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.1s;
}

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

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

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

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

.hiddenS {
  display: none;
}

@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: 40px;
    line-height: 44px;
  }
  .banner p {
    font-size: 18px;
    line-height: 24px;
  }
  p {
    font-size: 16px;
  }
  h2 {
    font-size: 26px;
    line-height: 32px;
  }
  h2 br {
    display: none;
  }
  h6 {
    font-size: 16px;
    line-height: 20px;
  }
  h4 {
    font-size: 18px;
    line-height: 22px;
  }
  .btn,
  .btnbr {
    font-size: 16px;
  }
}
.banner {
  padding: 250px 0 250px;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url(../imagenes/ImagenHeader.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  margin-bottom: 0;
}
.banner a.btn.btnbr {
  margin: 0;
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 12px 31px;
}

.banner .container-fluid {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1450px;
}

.banner h1 {
  text-align: left; /* Desktop Default */
  text-transform: none; /* As per mockup */
  margin-bottom: 20px;
}
.banner h1 strong {
  font-weight: 700;
  display: block;
}

.banner p {
  margin-bottom: 40px;
  text-align: left; /* Desktop Default */
  max-width: 80%;
  color: #fff;
}

/* Button styles inherited from _general.scss */
.banner .banner-img-container {
  display: none;
}

@media (max-width: 991px) {
  .banner {
    padding-top: 200px;
    padding-bottom: 200px;
    min-height: 1200px;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    background-image: url(../imagenes/movil/ImagenHeader.jpg);
    background-position: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .banner h1 {
    text-align: left;
  }
  .banner p {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .banner {
    padding-top: 160px;
    padding-left: 15px;
    padding-right: 15px;
    background-position: center;
    background-size: cover;
    min-height: 1100px;
  }
  .banner p {
    max-width: 100%;
  }
}
.nosotros {
  background-color: #fff;
  padding: 150px 0 100px;
  position: relative;
  overflow-x: hidden;
}
.nosotros .nosotros-text-col {
  padding-left: 250px;
  padding-right: 50px;
}
@media (max-width: 1200px) {
  .nosotros .nosotros-text-col {
    padding-left: 50px;
  }
}
.nosotros .content-wrapper {
  max-width: 600px;
}

.nosotros h2 {
  margin-bottom: 30px;
  text-align: left;
}
.nosotros h2 strong {
  font-weight: 700;
  color: #22246b; /* Dark Blue */
}

.nosotros h6 {
  text-align: left;
  padding-left: 0;
  margin-left: 0;
}

.nosotros p {
  text-align: left;
  margin-bottom: 20px;
  color: #4e4d4d;
}

.nosotros-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 500px;
  display: block;
}

@media screen and (max-width: 1540px) {
  .nosotros .nosotros-text-col {
    padding-left: 100px;
  }
}
@media (max-width: 991px) {
  .nosotros {
    padding: 100px 30px;
  }
  .nosotros .nosotros-text-col {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 40px;
  }
  .nosotros .content-wrapper {
    max-width: 100%;
  }
  .nosotros .nosotros-img {
    min-height: 200px;
    max-width: 90%;
    margin: 0 -20px 0 auto;
  }
}
@media (max-width: 767px) {
  .nosotros {
    padding: 100px 20px 50px;
  }
  .nosotros .nosotros-img {
    min-height: 200px;
    max-width: 97%;
    margin: 0 -20px 0 auto;
  }
}
.beneficios {
  background-color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.beneficios .container {
  max-width: 1700px;
}
.beneficios h2 {
  color: var(--Azul-1, #22246b);
  text-align: center;
  margin-bottom: 50px;
}
.beneficios .badge-container h6 {
  /* Inherits global styles but centered */
  text-align: center;
}

.beneficio-card {
  background: #fff;
  /* No shadow/border for clean look or add minimal if desired */
  padding: 20px;
  height: 100%;
  text-align: center;
}
.beneficio-card .icon-mb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.beneficio-card .icon-mb img {
  max-height: 100%;
  width: auto;
}
.beneficio-card h4 {
  color: var(--Azul-1, #22246b);
  margin-bottom: 15px;
}
.beneficio-card p {
  line-height: 1.5;
  color: #000;
  margin-bottom: 0;
}

/* Pagination dots style */
.swiper-pagination-bullet-active {
  background-color: var(--Azul-1, #22246b) !important;
}

@media (max-width: 991px) {
  .beneficios {
    padding: 60px 0;
  }
  .beneficios .swiper.mySwiperBeneficios {
    padding-bottom: 60px;
  }
}
.contacto {
  background-image: url(../imagenes/FondoContacto.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  position: relative;
  /* Clean overrides */
}
.contacto fieldset.form-columns-2,
.contacto fieldset.form-columns-1 {
  max-width: 800px !important;
  margin: 0 auto !important;
}
.contacto fieldset.form-columns-1 .hs-input {
  width: 100% !important;
}
.contacto input#phone-016429ed-6ef8-44fa-9174-13868c19001c,
.contacto select#phone_ext-016429ed-6ef8-44fa-9174-13868c19001c {
  border: 0 !important;
  padding-bottom: 0;
  margin-bottom: 0px !important;
  width: 50% !important;
}

/* Typography Overrides */
.contacto h2 {
  color: #fff;
}
.contacto h2 strong {
  font-weight: 700;
  display: inline;
}

.contacto .logo-contacto {
  margin-bottom: 20px;
}

/* Form inputs & styling */
.contacto .form-wrapper {
  padding: 0;
  max-width: 800px; /* Constrain width */
  margin: 0 auto; /* Center block */
}

.hbspt-form .hs-input {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #fff !important; /* White underline */
  color: #fff !important;
  font-family: "Poppins", sans-serif !important;
  padding: 10px 0 !important;
  margin-bottom: 20px !important;
  font-size: 16px !important;
  width: 100%;
}
.hbspt-form .hs-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}
.hbspt-form .hs-input::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

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

/* Labels */
.hbspt-form label {
  font-family: "Poppins", sans-serif;
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

/* Submit Button */
.hbspt-form .hs-button.primary {
  background-color: #fff !important;
  color: var(--Azul-1, #22246b) !important; /* Blue text */
  border: none !important;
  border-radius: 30px !important;
  padding: 15px 60px !important;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 30px;
  width: auto;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hbspt-form .hs-button.primary:hover {
  background-color: #bc0000 !important;
  color: #fff !important;
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(228, 59, 54, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .contacto {
    background-image: url(../imagenes/movil/Fondocontacto.jpg);
    padding: 60px 20px;
  }
  .contacto h2 {
    margin-bottom: 40px !important;
  }
}
@media (max-width: 767px) {
  .contacto {
    padding: 100px 15px;
    /* Adjust layout spacing if needed */
  }
  .contacto .form-col {
    padding: 0;
  }
  .contacto .logo-contacto {
    max-width: 130px !important;
  }
}
.datos {
  background-color: #fff;
  padding: 100px 0;
  position: relative;
  overflow-x: hidden;
}
.datos .cont {
  padding-left: 80px;
}
.datos img {
  max-width: 100%;
  width: 97%;
}

.datos h2 {
  color: var(--Azul-1, #22246b);
  text-align: left;
  margin-bottom: 40px;
}
.datos h2 strong {
  font-weight: 700;
  color: var(--Azul-1, #22246b);
}

.datos .dato-item {
  background-color: #e2eaf1; /* Celeste defined by user */
  border-radius: 10px;
  padding: 20px 30px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  width: 560px;
}
.datos .dato-item .icon-box {
  margin-right: 20px;
  flex-shrink: 0;
}
.datos .dato-item .icon-box .star-icon {
  width: 55px;
  height: auto;
  display: block;
}
.datos .dato-item p {
  margin-bottom: 0;
  font-size: 18px;
  color: #000;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.datos .dato-item p strong {
  font-weight: 700;
}

.datos .datos-main-img {
  max-width: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  /* Optional rounded corners on left side as seen in some modern layouts, 
     or keep square if "pegada al borde" implies full bleed */
  display: block;
  margin-left: auto; /* Push to right */
}

@media screen and (max-width: 1540px) {
  .datos .cont {
    padding-left: 0px;
  }
}
@media (max-width: 991px) {
  .datos {
    padding: 100px 30px;
    text-align: left;
  }
  .datos .cont {
    padding-left: 15px;
    padding-right: 15px;
  }
  .datos .dato-item {
    padding: 15px 20px;
    width: 100%;
  }
  .datos .datos-main-img {
    margin-top: 40px;
    /* On mobile, maybe center it or keep right? */
    max-width: 100%;
    width: 100%;
  }
  .datos .datos-main-img {
    margin-top: 40px;
    max-width: 90%;
    width: 100%;
    margin-right: -40px;
  }
}
@media (max-width: 767px) {
  .datos {
    padding: 100px 20px;
  }
  .datos .dato-item .icon-box {
    margin-right: 10px;
    flex-shrink: 0;
  }
  .datos .dato-item p {
    font-size: 16px;
  }
  .datos .datos-main-img {
    margin-top: 0;
    max-width: 100%;
    width: 100%;
    margin-right: -20px;
  }
}
.galeria {
  background-color: #fff;
  padding: 50px 0 150px;
}

.galeria .badge-container h6 {
  color: var(--Rojo, #bc0000);
  text-transform: none;
  font-style: italic; /* "Locales" in red italic */
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  border: none; /* remove border */
}

.galeria h2 {
  color: var(--Azul-1, #22246b);
  font-family: "Poppins", sans-serif;
  text-transform: none;
}
.galeria h2 strong {
  font-weight: 700;
  color: var(--Azul-1, #22246b);
}

.mySwiperGaleria {
  padding-bottom: 50px; /* Space for scrollbar */
}

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

/* Custom Scrollbar Styles */
.mySwiperGaleria .swiper-scrollbar {
  background: #e2eaf1; /* Light track */
  height: 4px;
  bottom: 0;
  left: 10%;
  width: 80%;
}

.mySwiperGaleria .swiper-scrollbar-drag {
  background: var(--Azul-1, #22246b); /* Blue dragger */
}

@media (max-width: 991px) {
  .galeria {
    padding: 60px 10px;
  }
}
@media (max-width: 767px) {
  .galeria {
    padding: 50px 0;
  }
  .mySwiperGaleria .swiper-scrollbar {
    width: 90%;
    left: 5%;
  }
}
.diferencial {
  padding: 150px 0 !important;
  background-color: #e2eaf1;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.diferencial .container-fluid {
  padding: 0;
}
.diferencial .text-column.cont {
  padding-left: 150px !important;
}
.diferencial .diferencial-img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  min-height: 400px;
}
@media (min-width: 992px) {
  .diferencial .diferencial-img {
    min-height: 600px;
  }
}
@media (min-width: 992px) {
  .diferencial .text-column {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}
.diferencial .text-column .content-wrapper {
  max-width: 500px;
}
.diferencial h6 {
  color: #bc0000;
  margin-bottom: 0.5rem;
}
.diferencial h2 {
  color: #22246b;
  margin-bottom: 1.5rem;
}
.diferencial h2 strong {
  font-weight: 700;
}
.diferencial p {
  color: #000;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.diferencial p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1540px) {
  .diferencial .text-column.cont {
    padding-left: 120px !important;
    padding-right: 10px !important;
  }
}
@media screen and (max-width: 767px) {
  .diferencial {
    padding: 100px 20px 50px !important;
  }
  .diferencial .diferencial-img {
    -o-object-fit: cover;
       object-fit: cover;
    height: auto;
    min-height: auto;
    max-width: 90%;
  }
  .diferencial .text-column.cont {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.video {
  padding: 100px 0;
  background-color: #e2eaf1;
}
.video h2 {
  color: #22246b;
  margin-bottom: 40px;
}
.video h2 strong {
  font-weight: 700;
}
.video .video-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: 20px; /* Rounded corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
.video .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .video {
    padding: 60px 0;
  }
  .video h2 {
    padding: 0 15px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .video {
    padding: 50px 2px;
  }
  .video .video-wrapper {
    padding-bottom: 76.25%;
  }
}
.pasos {
  padding: 150px 40px;
  position: relative;
  background-color: #e2eaf1;
  overflow: hidden;
}
.pasos .container {
  max-width: 1450px;
}
.pasos .swiper.mySwiperPasos {
  max-width: 360px;
}
.pasos .row {
  position: relative;
  z-index: 2;
}
.pasos h6 {
  color: #bc0000 !important;
  margin-bottom: 0.5rem;
}
.pasos h2 {
  color: #22246b !important;
}
.pasos h2 strong {
  font-weight: 700;
}
.pasos .swiper-button-prev-pasos,
.pasos .swiper-button-next-pasos {
  transition: transform 0.3s ease;
}
.pasos .swiper-button-prev-pasos:hover,
.pasos .swiper-button-next-pasos:hover {
  transform: scale(1.1);
}
.pasos .slider-background-container {
  position: relative;
  padding: 50px 0 50px 50px;
  background-image: url("../imagenes/Cuadrilla.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  min-height: 400px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .pasos .slider-background-container {
    padding: 20px;
    background-position: center;
  }
}
.pasos .mySwiperPasos {
  width: 100%;
  overflow: hidden;
}
.pasos .paso-card {
  background: transparent;
  padding-right: 20px;
}
.pasos .paso-card .icon-container {
  margin-bottom: 1rem;
}
.pasos .paso-card .icon-container img {
  height: 60px;
  width: auto;
}
.pasos .paso-card h4 {
  color: #22246b;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.pasos .paso-card p {
  color: #000;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .contBtnPasos {
    display: flex;
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .pasos {
    padding: 80px 20px;
  }
  .pasos .slider-background-container {
    padding: 10px;
    background-position: center;
  }
}
.site-footer {
  position: relative;
  padding: 0;
}
.site-footer .container {
  max-width: 1450px;
}
.site-footer .footer-content {
  background-image: url("../imagenes/FondoFooter.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.site-footer h2 {
  line-height: 1.2;
}
.site-footer h2 strong {
  font-weight: 700;
}
.site-footer p {
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 400px;
}
.site-footer .footer-cta {
  color: #22246b !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.site-footer .footer-cta:hover {
  background-color: #bc0000 !important;
  color: #fff !important;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(228, 59, 54, 0.3);
  border-color: #bc0000;
}
.site-footer .copyright-strip {
  border-top: 1px solid #eee;
}
.site-footer .copyright-strip .footer-logo-img {
  max-width: 120px;
  height: auto;
}
.site-footer .copyright-strip p {
  font-size: 0.8rem;
  max-width: 100%;
}
@media (max-width: 991px) {
  .site-footer .footer-content {
    padding: 100px 20px;
    background-position: 40% 50%;
  }
}
@media (max-width: 767px) {
  .site-footer .footer-content {
    background-image: url("../imagenes/movil/FondoFooter.jpg");
    background-position: center top;
    align-items: flex-start;
    padding-top: 60px;
    padding-bottom: 300px;
  }
}

@media screen and (max-width: 767px) {
  .footer-content {
    padding: 80px 20px;
  }
  .site-footer .copyright-strip .footer-logo-img {
    max-width: 120px;
    height: auto;
    padding: 10px 0px;
  }
}/*# sourceMappingURL=styles.css.map */