/* 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-SemiBold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 600;
  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;
}
/* Variables de Sass */
@keyframes pulse2 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
/* Header Styles - La Rebaja */
header.menu {
  background-color: #fff;
  position: relative;
  z-index: 1000;
}
header.menu .container-fluid {
  max-width: 1540px;
}

.navbar {
  padding: 75px 0 30px;
}

.logoD {
  max-width: 256px;
  display: block;
  margin: 0 auto; /* Centered in desktop usually, or aligned via flex */
}

.navbar-nav {
  align-items: center;
  width: 100% !important;
  align-content: center;
  justify-content: center;
}

.nav-link {
  padding: 6px 40px !important;
  color: #d21e1a;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.nav-link:hover {
  font-weight: 600;
  color: #d21e1a;
}

.logo-container {
  padding: 0 40px; /* Space around logo */
}

/* Mobile Toggler */
.navbar-toggler {
  border: none;
  outline: none;
  padding: 0;
}
.navbar-toggler .navbar-toggler-icon {
  /* Encoded SVG with RED stroke #d21e1a */
  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='%23d21e1a' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.logoM {
  max-height: 45px; /* Slightly bigger on mobile maybe */
}

@media (max-width: 1540px) {
  .logoD {
    max-width: 200px;
  }
  .nav-link {
    padding: 6px 20px !important;
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  header.menu .container-fluid {
    padding: 0 20px;
  }
  header.menu {
    padding: 10px 0;
  }
  header.menu button.navbar-toggler {
    border-radius: 8px;
    background: transparent; /* Clean bg */
    padding: 5px;
    z-index: 20;
    position: relative;
    margin-left: auto;
    top: 0;
  }
  /* Center Logo on Mobile */
  .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
  }
  .navbar-collapse {
    background-color: #fff; /* White menu on mobile too */
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .nav-item {
    text-align: center;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 30px 0 30px;
  }
  .nav-link {
    padding: 12px 20px !important;
    font-size: 14px;
  }
}
html,
body {
  width: 100%;
  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: #000;
  font-family: Montserrat;
  font-size: 47px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.banner p {
  color: #000;
  font-family: Montserrat;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h2 {
  color: #000;
  font-family: Montserrat;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
h2 span {
  color: #d21e1a;
}

h4 {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

p {
  color: #000;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.btn,
.btnbr,
input.hs-button.primary.large {
  border-radius: 0;
  padding: 8px 30px;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 30px auto;
  border: 0;
  border: 1px solid #5d5d5d;
  color: #000;
  font-family: Montserrat;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.btn img,
.btnbr img,
input.hs-button.primary.large img {
  margin: 0;
  width: 31px;
}
.btn:hover,
.btnbr:hover,
input.hs-button.primary.large:hover {
  background-color: #fff;
  color: #0060ab;
  opacity: 0.7;
}
.btn img,
.btnbr img,
input.hs-button.primary.large img {
  margin: 4px 0 4px 15px;
  width: 12px;
}

.hiddenD,
.hiddenl {
  display: none;
}

.hiddenS {
  display: none;
}

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

@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;
  }
  h2 {
    font-size: 28px;
    line-height: normal;
  }
}
@media screen and (max-width: 767px) {
  .hiddenD {
    display: block !important;
  }
  .hiddenM {
    display: none;
  }
  .hiddenS {
    display: block;
  }
  h1 {
    font-size: 30px;
    text-align: left;
  }
  .banner p {
    font-size: 17px;
    text-align: left;
    margin: 0;
    max-width: 100%;
  }
  h2 {
    font-size: 27px;
    line-height: normal;
  }
  p {
    font-size: 17px;
    line-height: normal;
  }
}
/* Banner Styles - La Rebaja */
.banner {
  padding: 20px 0 50px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  /* Button Styling */
}
.banner .container {
  max-width: 1640px;
}
.banner .banner-card {
  background-color: #f7df00; /* Yellow base */
  border-radius: 100px;
  position: relative;
  width: 100%;
  min-height: 500px;
  /* Desktop Background */
  background-image: url("../imagenes/FondoHeader.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 1px 210px 100px;
  display: flex;
  align-items: center;
}
.banner h1 {
  /* Font styling handled by _general, ensuring color is correct */
  color: #000;
  margin-bottom: 40px;
  line-height: 1.1;
}
.banner p {
  color: #000;
  margin-bottom: 30px;
  max-width: 90%;
}
.banner .btn-banner {
  background-color: #fff;
  color: #000;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  text-transform: none; /* Reset if btnbr had uppercase */
  font-family: "Montserrat", sans-serif; /* Ensure matches general if needed */
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.banner .btn-banner img {
  width: 30px; /* Adjust arrow size */
  margin-left: 10px;
}
.banner .btn-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.banner .banner-text {
  z-index: 10;
  position: relative;
}
.banner .banner-vis {
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.banner .character-img {
  max-height: 650px;
  width: auto;
  display: block;
  margin-bottom: -80px;
  margin-right: -20px;
  transform: translateY(60px);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .banner {
    padding: 10px 15px 40px;
  }
  .banner .banner-card {
    border-radius: 30px;
    padding: 40px 20px 0; /* 0 bottom padding for character */
    flex-direction: column;
    text-align: center;
    background-image: url("../imagenes/movil/FondoBanners.png"); /* Mobile BG */
    min-height: auto;
    align-items: flex-end; /* Align character bottom */
  }
  .banner .banner-text {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
  }
  .banner .banner-text h1 br {
    display: none;
  }
  .banner .banner-text p {
    margin: 20px auto;
  }
  .banner .btn-banner {
    margin: 0 auto;
  }
  .banner .banner-vis {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }
  .banner .character-img {
    max-height: 350px;
    transform: none;
    margin: 0;
    margin-bottom: -20px;
  }
}
@media (max-width: 767px) {
  .banner {
    padding: 10px 10px 40px;
  }
  .banner .banner-text {
    margin-top: 50px;
  }
  .banner .banner-text p {
    margin: 0;
  }
  .banner .btn-banner {
    margin: 0;
    display: block;
  }
}
/* Nosotros Section Styles - La Rebaja */
.nosotros {
  background-color: #fff;
  padding: 170px 0;
  position: relative;
  /* Clean reset of previous specific styles */
}
.nosotros .container {
  max-width: 1400px;
}
.nosotros h2 {
  margin-bottom: 20px;
  text-align: left;
  margin-bottom: 50px;
  /* Reinforcing color here as general inheritance seems to be failing in current build */
}
.nosotros h2 span {
  color: #d21e1a;
}
.nosotros p {
  padding-left: 0; /* Reset previous indentation */
  margin-bottom: 20px;
  text-align: left;
  color: #000; /* Ensure readability */
}
.nosotros p:last-child {
  margin-bottom: 0;
}
.nosotros .nosotros-img {
  display: block;
  margin: 0;
  max-width: 100%;
  width: 500px;
  /* Add specific styling if image needs it, e.g. padding or alignment */
}

@media (max-width: 991px) {
  .nosotros {
    padding: 60px 15px;
  }
  .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 - La Rebaja */
.beneficios {
  padding: 180px 0 180px; /* Extra top padding for title space */
  background-color: #d21e1a;
  color: #fff;
  /* Swiper Pagination Customization */
}
.beneficios .container-fluid {
  max-width: 1360px;
}
.beneficios h2 {
  color: #fff;
  margin-bottom: 60px;
  font-weight: 700;
}
.beneficios .benefit-card {
  background-color: #da312d;
  border-radius: 73px;
  padding: 80px 30px 50px; /* Top padding for icon space */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  position: relative;
  min-height: 380px; /* Ensure tall cards as per ref */
  transition: transform 0.3s ease;
  margin-top: 40px; /* Space for icon overlap */
}
.beneficios .benefit-card h4 {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 1px;
  margin-top: 30px;
}
.beneficios .benefit-card p {
  color: #fff;
  font-size: 17px;
  line-height: 24px;
  margin: 0;
  opacity: 1;
  font-weight: 400;
}
.beneficios .benefit-card .icon-plus {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%); /* Center on top edge */
  width: 90px;
  height: 90px;
  background-image: url("../imagenes/plusG.png");
  background-size: contain;
  background-repeat: no-repeat;
  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: #fff;
  opacity: 0.5;
}
.beneficios .swiper-pagination-bullet-active {
  background: #f7df00; /* Yellow active dot */
  opacity: 1;
}

@media (max-width: 991px) {
  .beneficios {
    padding: 80px 0;
  }
  .beneficios h2 {
    margin-bottom: 50px;
    padding: 0 15px;
  }
  .beneficios .benefit-card {
    padding: 60px 20px 40px;
    min-height: 350px;
    border-radius: 50px;
    /* On mobile slider, slides may need centering */
    width: 100%;
  }
  .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: 100px 15px 100px;
  }
  .beneficios .benefit-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
  }
}
/* Contacto / Form Styles - La Rebaja */
.contacto {
  background-color: #fff; /* Main bg */
  padding: 100px 0;
  position: relative;
  overflow-x: hidden; /* Prevent horizontal scroll from character overlap */
  /* HubSpot Form Styling */
}
.contacto .container {
  max-width: 1640px;
}
.contacto .form-card {
  background-color: #fafafa;
  border-radius: 100px;
  padding: 80px 150px;
  position: relative;
  /* box-shadow? Ref looks flat or subtle. Keeping flat. */
}
.contacto h2 {
  color: #000;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.2;
}
.contacto h2 span {
  color: #d21e1a; /* Red accent */
}
.contacto .character-form {
  position: absolute;
  bottom: 0px;
  right: 0; /* Pull it out of the container/card */
  height: auto;
  z-index: 10;
  max-width: 250px;
  height: auto;
  pointer-events: none;
}
.contacto .hbspt-form {
  position: relative;
  z-index: 5;
  /* Submit Button */
}
.contacto .hbspt-form .hs-form-field {
  margin-bottom: 15px;
}
.contacto .hbspt-form .hs-form-field label {
  color: #5d5d5d;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 5px;
  display: block;
}
.contacto .hbspt-form .hs-form-016429ed-6ef8-44fa-9174-13868c19001c_6e60795d-c410-49c2-a5c0-332e13fc7e94 fieldset.form-columns-1 .hs-input {
  width: 100%;
}
.contacto .hbspt-form .hs-input.hs-fieldtype-intl-phone {
  border: 0 !important;
}
.contacto .hbspt-form input#phone-016429ed-6ef8-44fa-9174-13868c19001c {
  padding-bottom: 6px;
}
.contacto .hbspt-form .hs-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #000;
  border-radius: 0;
  padding: 2px 0 10px;
  color: #000;
  font-size: 15px;
  outline: none;
  box-shadow: none;
}
.contacto .hbspt-form .hs-input:focus {
  border-bottom-color: #d21e1a;
}
.contacto .hbspt-form .hs-input::-moz-placeholder {
  color: #999;
}
.contacto .hbspt-form .hs-input::placeholder {
  color: #999;
}
.contacto .hbspt-form .hs-button.primary {
  background-color: #f7df00; /* Yellow pill */
  border: none;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase; /* Standardize */
  padding: 12px 40px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 50px; /* Pill shape */
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.contacto .hbspt-form .hs-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1540px) {
  .contacto .form-card {
    margin-right: 100px;
    padding: 60px 40px;
  }
  .contacto .character-form {
    right: -180px;
    max-height: 450px;
  }
}
@media (max-width: 991px) {
  .contacto .form-card {
    margin-right: 0;
    border-radius: 50px;
    padding: 40px 30px;
    text-align: center;
    padding-bottom: 300px;
    max-width: 540px;
    margin: 0 auto;
  }
  .hs-form-016429ed-6ef8-44fa-9174-13868c19001c_aa9d2cec-8a5f-4429-9c34-5137ba3b7700 fieldset.form-columns-1 .hs-input {
    width: 100%;
  }
  .contacto h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  .contacto .character-form {
    right: 50%;
    transform: translateX(50%);
    bottom: 0;
    max-height: 280px;
    margin-bottom: -20px;
  }
  .contacto .hbspt-form .hs-button.primary {
    width: 100%; /* Full width button on mobile commonly */
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .contacto {
    padding: 100px 5px;
  }
  .contacto h2 {
    text-align: left;
  }
  .contacto .form-card {
    padding-bottom: 250px;
  }
  .contacto .character-form {
    max-height: 220px;
    width: auto;
  }
}
/* Datos Section Styles - La Rebaja */
.datos {
  padding: 130px 0 350px; /* Adjust vertical rhythm */
  position: relative;
  overflow: hidden; /* avoid scroll from decorative images */
}
.datos .container {
  max-width: 1150px;
}
.datos h2 {
  margin-bottom: 40px;
  color: #000;
}
.datos h2 span {
  color: #d21e1a; /* Red accent */
  font-weight: 700;
}
.datos .justify-content-center.conte {
  position: relative;
  /* Decorative Images via Pseudo-elements */
}
.datos .justify-content-center.conte::before {
  content: "";
  position: absolute;
  left: -110px;
  top: 105%;
  transform: translateY(-50%);
  width: 220px;
  height: 231px;
  background-image: url(../imagenes/Miscelanea1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
  z-index: 0;
  pointer-events: none;
}
.datos .justify-content-center.conte::after {
  content: "";
  position: absolute;
  right: -110px;
  top: 40%;
  transform: translateY(-50%);
  width: 220px;
  height: 231px;
  background-image: url(../imagenes/Miscelanea2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  z-index: 0;
  pointer-events: none;
}
.datos .dato-card {
  background-color: #da312d; /* Red Card */
  border-radius: 32px;
  padding: 40px 30px;
  position: relative;
  text-align: center;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 35px; /* Space for icon */
  transition: transform 0.3s ease;
  z-index: 1;
}
.datos .dato-card p {
  margin: 0;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 400;
  color: white;
}
.datos .dato-card .icon-plus-g {
  position: absolute;
  top: -25px; /* Pull up half its height approx */
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-image: url("../imagenes/plusG.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 20;
}
.datos .dato-card:hover {
  transform: translateY(-5px);
}

@media (max-width: 1200px) {
  /* Hide decor on smaller screens if too crowded */
  .datos .miscelanea-left,
  .datos .miscelanea-right {
    opacity: 0.5;
    max-width: 150px;
  }
}
@media (max-width: 991px) {
  .datos .miscelanea-left,
  .datos .miscelanea-right {
    display: none !important; /* Hide on tablet/mobile as per d-none classes in HTML, reinforcing here */
  }
  .datos {
    padding: 60px 0;
  }
  .datos h2 {
    margin-bottom: 50px;
  }
  .dato-card {
    margin: 40px 15px 0; /* Add side margin on mobile */
    min-height: 200px;
  }
}
@media (max-width: 767px) {
  .datos {
    padding: 100px 5px;
  }
  .datos h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  .datos .dato-card {
    margin: 40px 15px 0;
    min-height: 160px;
  }
}
/* Galeria Section Styles - La Rebaja */
.galeria {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  /* Floating Overlay */
  /* Custom Navigation Buttons */
}
.galeria .swiper {
  width: 100%;
  height: auto;
}
.galeria .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  /* Optional: max-height limit for desktop if it gets too tall? Ref looks full viewport-ish or banner-like. */
}
.galeria .galeria-overlay {
  position: absolute;
  bottom: 180px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  background-color: #fff;
  border-radius: 50px;
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 1300px;
  max-width: 90%;
}
.galeria .galeria-title {
  font-weight: 700;
  margin: 0;
  color: #000;
  font-size: 18px;
  margin-right: 30px;
}
.galeria .galeria-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
.galeria .swiper-button-prev-galeria,
.galeria .swiper-button-next-galeria {
  cursor: pointer;
  transition: transform 0.2s;
}
.galeria .swiper-button-prev-galeria img,
.galeria .swiper-button-next-galeria img {
  width: 40px; /* Adjust based on png actual size */
  height: 40px;
  display: block;
}
.galeria .swiper-button-prev-galeria:hover,
.galeria .swiper-button-next-galeria:hover {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .galeria .galeria-overlay {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    background-color: #fff;
    border-radius: 50px;
    padding: 10px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 90%;
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .galeria {
    overflow: visible;
  }
  .galeria .galeria-overlay {
    bottom: 30px;
    width: 90%;
    min-width: auto; /* Reset desktop min-width */
    padding: 25px 20px;
    flex-direction: column;
    text-align: center;
    border-radius: 30px;
  }
  .galeria .galeria-title {
    margin-right: 0;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.4;
  }
  .galeria .galeria-nav {
    gap: 13px;
    margin-top: 20px;
  }
  .galeria .galeria-overlay {
    bottom: -50px;
    width: 85%;
    min-width: auto;
    padding: 25px 20px;
    flex-direction: column;
    text-align: center;
    border-radius: 30px;
  }
}
/* Diferencial Section Styles - La Rebaja */
.diferencial {
  padding: 200px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.diferencial .container {
  max-width: 1400px;
}
.diferencial h2 {
  color: #000;
  margin-bottom: 50px;
}
.diferencial h2 span {
  color: #d21e1a;
  font-weight: 700;
}
.diferencial p {
  color: #000;
}
.diferencial .sub-heading {
  font-size: 18px;
  color: #000;
}
.diferencial .list-diferencial li {
  color: #000;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
}
.diferencial .diferencial-img {
  display: block;
  margin: 0;
  max-width: 100%;
  width: 500px;
}

@media (max-width: 991px) {
  .diferencial {
    padding: 60px 15px;
    /* Mobile alignment */
  }
  .diferencial h2 br {
    display: none;
  }
  .diferencial .col-lg-6 {
    text-align: left; /* Keep left alignment as per usual readable text, or center if requested. Ref layout suggests clean left align. */
  }
}
@media (max-width: 767px) {
  .diferencial {
    padding: 200px 15px 100px;
  }
  .diferencial h2 {
    margin-bottom: 20px;
  }
}
/* Video Section Styles - La Rebaja */
.video {
  padding: 100px 0 200px;
  background-color: #fafafa; /* Light grey bg */
}
.video h2 {
  margin-bottom: 40px;
  color: #000;
}
.video h2 span {
  color: #d21e1a;
  font-weight: 700;
}
.video .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.video .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991px) {
  .video {
    padding: 60px 0;
  }
  .video h2 {
    margin-bottom: 20px;
  }
  .video .video-wrapper {
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 0;
  }
}
/* Pasos Section Styles - La Rebaja */
.pasos {
  padding: 150px 0 100px 50px; /* Extra left padding for char space if desktop */
  background-color: #d21e1a;
  position: relative;
  /* Cards */
  /* Navigation */
}
.pasos::before {
  content: "";
  position: absolute;
  bottom: -11%;
  left: 14%;
  width: 450px;
  height: 450px;
  background-image: url(../imagenes/PersonajePasos.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.pasos h2 {
  color: #fff;
  margin-top: -170px;
}
.pasos .character-pasos {
  position: absolute;
  bottom: -150px;
  left: -30px;
  max-height: 500px;
  z-index: 10;
  pointer-events: none;
}
.pasos .paso-card {
  background-color: #da312d; /* Lighter red card or distinct tone */
  border-radius: 73px;
  padding: 60px 30px 40px;
  color: #fff;
  position: relative;
  margin-top: 40px; /* Space for icon */
  min-height: 400px; /* Uniform look */
  transition: transform 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
  /* Yellow Circle with Red Plus */
}
.pasos .paso-card:hover {
  transform: translateY(-5px);
}
.pasos .paso-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}
.pasos .paso-card p {
  font-size: 15px;
  color: #fff;
}
.pasos .paso-card .icon-step-plus {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background-color: #f7df00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.pasos .paso-card .icon-step-plus::before, .pasos .paso-card .icon-step-plus::after {
  content: "";
  position: absolute;
  background-color: #d21e1a; /* Red sign */
}
.pasos .paso-card .icon-step-plus::before {
  width: 30px;
  height: 8px;
  border-radius: 2px;
}
.pasos .paso-card .icon-step-plus::after {
  width: 8px;
  height: 30px;
  border-radius: 2px;
}
.pasos .pasos-nav {
  gap: 20px;
}
.pasos .pasos-nav .pasos-prev,
.pasos .pasos-nav .pasos-next {
  cursor: pointer;
  transition: transform 0.2s;
}
.pasos .pasos-nav .pasos-prev:hover,
.pasos .pasos-nav .pasos-next:hover {
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .pasos {
    padding: 120px 0;
    min-height: 1200px;
    /* If d-none in HTML is used, this is redundant but safe */
  }
  .pasos h2 {
    text-align: center;
    margin-top: 0;
  }
  .pasos h2 br {
    display: none;
  }
  .pasos .paso-card {
    margin: 40px 10px 0;
    text-align: center;
    min-height: 350px;
  }
  .pasos .pasos-nav {
    justify-content: center;
  }
  .pasos .paso-card .icon-step-plus {
    width: 80px;
    height: 80px;
  }
  .pasos::before {
    content: "";
    position: absolute;
    bottom: -6%;
    left: 22%;
  }
}
@media (max-width: 767px) {
  .pasos {
    padding: 120px 15px;
    min-height: 1100px;
  }
  .pasos .pasos-nav {
    gap: 20px;
  }
  .pasos::before {
    content: "";
    position: absolute;
    bottom: -52px;
    left: 3%;
    width: 360px;
    height: 360px;
  }
}
/* Footer Styles - La Rebaja */
#footer {
  padding: 150px 0 40px;
  background-color: #fff;
}
#footer .container {
  max-width: 1740px;
}
#footer .footer-card {
  background-color: #f7df00; /* Yellow */
  border-radius: 60px;
  padding: 80px 40px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
#footer .footer-card .footer-logo {
  max-width: 200px; /* Adjust based on logo needs */
  display: inline-block;
}
#footer .footer-card h3 {
  color: #000;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  margin-top: 20px;
  margin-bottom: 30px;
}
#footer .footer-card p {
  color: #000;
  font-size: 18px;
  margin-bottom: 30px;
}
#footer .footer-card .btn-white-pill {
  background-color: #fff;
  color: #000;
  border-radius: 50px;
  padding: 15px 40px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-card .btn-white-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
#footer .copyright-text p {
  color: #d21e1a; /* Red brand text */
  font-size: 14px;
  margin: 0;
}
#footer .copyright-text p strong {
  font-weight: 900;
}

@media (max-width: 991px) {
  #footer {
    padding: 60px 0 30px;
  }
  #footer .footer-card {
    border-radius: 40px;
    padding: 60px 20px;
  }
  #footer .footer-card h3 {
    font-size: 26px;
  }
}/*# sourceMappingURL=styles.css.map */