@charset "UTF-8";
/* Font  */
@font-face {
  font-family: "Signika";
  src: url("../font/Signika-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Signika";
  src: url("../font/Signika-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Signika";
  src: url("../font/Signika-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Signika";
  src: url("../font/Signika-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Signika";
  src: url("../font/Signika-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: 0;
  background: transparent; /* Transparent for Morita */
  padding: 10px 40px;
  box-shadow: none;
  position: relative; /* For logo positioning */
}

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

.nav-link {
  color: #fff; /* White text */
  font-family: "Signika", sans-serif;
  font-size: 13px; /* Smaller font size often looks cleaner */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 18px;
  /* Ensure transitions */
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #f3614d !important; /* Orange hover */
}

/* Logo styling */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px; /* Reasonable spacing */
}

.logoD {
  width: 185px; /* Adjusted size */
  max-width: 100%;
  transition: transform 0.3s ease;
}
.logoD:hover {
  transform: scale(1.05);
}

/* 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: #fff; /* White 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='%23ce202f' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    /* Red formatting %23ce202f */
  }
  .nav-link {
    color: #f3614d;
    font-size: 16px;
  }
}
@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: #fff;
  text-align: center;
  font-family: Signika;
  font-size: 90px;
  font-style: normal;
  font-weight: 700;
  line-height: 87px; /* 96.667% */
  text-transform: uppercase;
  padding-top: 200px;
}

.banner p {
  color: #fff;
  text-align: center;
  font-family: Signika;
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.btn,
.btnbr,
input.hs-button.primary.large {
  padding: 15px 60px;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 10px auto;
  border: 0;
  border-radius: 42px;
  background: #f3614d;
  color: #fff;
  text-align: center;
  font-family: Signika;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.btn:hover,
.btnbr:hover,
input.hs-button.primary.large:hover {
  background-color: #000;
  color: #fff;
  opacity: 0.7;
}

h6 {
  color: #000;
  font-family: Signika;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

h2 {
  color: #000;
  font-family: Signika;
  font-size: 55px;
  font-style: normal;
  font-weight: 600;
  line-height: 58px; /* 105.455% */
}
h2 span {
  color: #ce202f;
}

h2.peque {
  font-size: 38px;
  line-height: 41px; /* 107.895% */
}

h4 {
  color: #fff;
  font-family: Signika;
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

p {
  color: #000;
  font-family: Signika;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.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;
  }
  h1 {
    font-size: 58px;
    line-height: 56px; /* 96.552% */
  }
  .banner p br {
    display: none;
  }
  .btn,
  .btnbr,
  input.hs-button.primary.large {
    font-size: 12px;
    font-weight: 700;
  }
  h6 {
    font-size: 17px;
    font-weight: 300;
  }
  h2 {
    font-size: 38px;
    line-height: 41px; /* 107.895% */
  }
  h4 {
    font-size: 27px;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .hiddenD {
    display: block !important;
  }
  .hiddenM {
    display: none;
  }
  .hiddenS {
    display: block;
  }
  h1 {
    font-size: 48px;
    line-height: 55px; /* 96.552% */
  }
  h1 br {
    display: none;
  }
  .banner p {
    font-size: 17px;
    line-height: normal;
  }
  .btn,
  .btnbr,
  input.hs-button.primary.large {
    font-size: 12px;
    font-weight: 700;
  }
  h6 {
    font-size: 17px;
    font-weight: 300;
  }
  h2 {
    font-size: 30px;
    line-height: 35px; /* 107.895% */
  }
  h2 br {
    display: none;
  }
  h4 {
    font-size: 27px;
    font-weight: 600;
  }
  p {
    font-size: 17px;
    font-weight: 300;
  }
}
/* 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 - Morita */
.banner {
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 100vh; /* Full viewport height */
  min-height: 700px;
  display: flex;
  align-items: center;
  /* Background Images */
  background-image: url("../imagenes/header.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-radius: 0 0 60px 60px; /* Rounded bottom corners */
  /* Overlay for better text readability if needed, or built into image */
  /* background-color: rgba(0,0,0,0.3); */
}
.banner .container {
  position: relative;
  z-index: 10;
  max-width: 1520px;
}
.banner {
  /* Text Styling */
}
.banner .banner-text {
  text-align: center; /* Centered for Morita */
}
.banner .banner-text h1 {
  margin-bottom: 35px;
  margin-top: 0; /* Adjusted */
}
.banner .banner-text h1 span {
  display: inline; /* Changed from block */
}
.banner .banner-text p {
  padding-top: 40px;
  margin-bottom: 45px !important;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media screen and (max-width: 1540px) {
  .banner {
    height: 120vh;
  }
}
/* Mobile Responsiveness */
@media (max-width: 991px) {
  .banner {
    height: auto;
    min-height: 100vh;
    padding: 120px 15px 100px; /* Space for fixed/absolute header */
    background-image: url("../imagenes/movil/header.png");
    background-position: top center;
    border-radius: 0 0 50px 50px; /* Smaller radius for mobile */
    align-items: center; /* Center vertically in the available space */
  }
  .banner .banner-text {
    text-align: center;
  }
  .banner .banner-text h1 {
    margin-bottom: 20px;
  }
  .banner .banner-text p {
    margin: 0 auto 30px;
    text-align: center;
  }
  .banner .banner-text {
    /* Center button */
  }
  .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;
    padding-top: 0;
  }
}
/* Nosotros Section Styles - Morita */
.nosotros {
  background: #fff; /* Clean white background */
  padding: 190px 0;
  position: relative;
}
.nosotros .container {
  max-width: 1350px;
}
.nosotros h6 {
  margin-bottom: 20px;
  text-align: left;
}
.nosotros h2 {
  text-align: left;
  margin-bottom: 30px;
}
.nosotros p {
  text-align: left;
  max-width: 65%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.nosotros p b {
  font-weight: 700;
}

@media screen and (max-width: 1540px) {
  .nosotros {
    padding-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .nosotros {
    padding: 140px 30px 50px; /* Adjusted padding */
  }
  .nosotros p {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .nosotros {
    padding: 100px 15px 0;
    background-image: none; /* No background image on mobile */
  }
  .nosotros h6,
  .nosotros h2,
  .nosotros p {
    text-align: left; /* Keep left alignment as per design, or center if requested later */
  }
  .nosotros p {
    font-size: 17px;
  }
}
/* Beneficios Section Styles - Morita */
.beneficios {
  position: relative;
  z-index: 10;
  padding: 80px 0 100px;
  overflow: hidden; /* Prevent marquee overflow */
  max-width: 100vw;
}
.beneficios .container {
  max-width: 1700px; /* Wider container for cards */
  background-image: url(../imagenes/beneficios.png);
  background-size: 100%;
  min-height: 860px;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 90px;
  background-repeat: no-repeat;
}
.beneficios {
  /* Marquee / Ticker Styling */
}
.beneficios .marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: 22%;
  left: -5%;
  width: 110%;
  z-index: -1;
  opacity: 1;
  pointer-events: none;
  transform: rotate(-3deg);
  display: flex;
}
.beneficios .marquee-content {
  display: flex;
  animation: marquee 40s linear infinite; /* Slower and seamless */
  min-width: 100%;
  flex-shrink: 0;
  align-items: center;
}
.beneficios .marquee-content span {
  font-size: 20px; /* Large text size */
  font-weight: 400; /* Extra bold */
  color: #ffd2cc;
  white-space: nowrap;
  margin-right: 40px; /* Spacing between repeats */
  font-family: "Poppins", sans-serif; /* Ensure font matches */
  text-transform: uppercase;
  line-height: 1;
}
.beneficios .marquee-content {
  /* Remove img styles */
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.beneficios .beneficios-container {
  /* Container specific styling if needed */
  position: relative;
  z-index: 2;
  max-width: 1480px;
  margin: 0 auto;
}
.beneficios .benefit-item {
  background: #ce202f; /* Red background */
  border: 3px solid #f3614d; /* Orange border */
  border-radius: 23px;
  padding: 40px 20px;
  height: 100%; /* Equal height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* create spacing between cards */
  padding: 70px 30px;
  margin: 0;
  transition: transform 0.3s ease;
}
.beneficios .benefit-item:hover {
  transform: translateY(-10px);
}
.beneficios .benefit-item h4 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
}
.beneficios .benefit-item p {
  color: #fff;
  text-align: left;
  font-weight: 300;
}

@media screen and (max-width: 1540px) {
  .beneficios {
    padding-top: 0;
  }
  .beneficios .container {
    min-height: 750px;
  }
}
@media (max-width: 991px) {
  .beneficios {
    padding: 60px 0;
  }
  .beneficios .container {
    background-image: url("../imagenes/movil/beneficios.png");
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 0;
    min-height: 800px;
    display: block; /* Reset flex */
  }
  .beneficios .beneficios-container {
    width: 100%;
    overflow: hidden; /* Ensure slider doesn't overflow */
  }
  .beneficios .col-lg-3 {
    margin-bottom: 0; /* Removing bootstrap margin in favor of swiper */
  }
  .beneficios .benefit-item {
    /* Mobile specific adjustments inside slider */
    height: 300px; /* Fixed height for consistency in slider */
    width: 100%;
    margin: 0 auto;
  }
  .beneficios {
    /* Swiper styling */
  }
  .beneficios .swiper {
    /* Remove padding that might affect width calculation */
    padding: 20px 0 40px;
    width: 100%;
    max-width: 100vw;
  }
  .beneficios {
    /* Navigation Wrapper */
  }
  .beneficios .beneficios-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px auto 0; /* Center with margin auto */
    width: 100%; /* Ensure full width */
  }
  .beneficios .beneficios-nav-wrapper .nav-separator {
    width: 1px;
    height: 24px;
    background-color: #000; /* Black separator as per image */
  }
  .beneficios .beneficios-nav-wrapper .swiper-button-next,
  .beneficios .beneficios-nav-wrapper .swiper-button-prev {
    position: static;
    margin: 0;
    color: #000; /* Black arrows */
    width: auto;
    height: auto;
  }
  .beneficios .beneficios-nav-wrapper .swiper-button-next::after,
  .beneficios .beneficios-nav-wrapper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
  }
  .beneficios .swiper-pagination {
    display: none; /* Hide default pagination */
  }
  .beneficios-container {
    position: absolute !important;
    bottom: -30px;
    left: 0;
    width: 100%;
    max-width: 100vw;
  }
}
@media (max-width: 767px) {
  .beneficios .container {
    min-height: 550px;
  }
  .beneficios .container .swiper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* Contacto / Form Styles - Morita */
.contacto {
  background-color: #fff;
  padding: 60px 0; /* Reduced padding */
  position: relative;
  overflow-x: hidden;
}
.contacto h6 {
  color: #000;
  margin-bottom: 10px; /* Reduced */
  text-align: left;
}
.contacto h2 {
  color: #000;
  margin-bottom: 25px; /* Reduced */
  line-height: 1.2;
  text-align: left;
}
.contacto h2 span {
  color: #ce202f; /* Red highlight */
  font-weight: 700;
}
.contacto .contact-img {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto; /* Center image if 80% */
}
.contacto .hs-form-016429ed-6ef8-44fa-9174-13868c19001c_d826cd27-b17c-42af-967b-6093d5de7b5b fieldset.form-columns-1 .hs-input {
  width: 100%;
}
.contacto form .hs-input.hs-input.hs-fieldtype-intl-phone {
  border-bottom: 0 !important;
}
.contacto form .hs-input.hs-input.hs-fieldtype-intl-phone select {
  padding: 6px 0 !important;
}
.contacto .form-wrapper {
  padding-left: 0;
  max-width: 500px;
  margin: 0 auto;
}
.contacto {
  /* HubSpot Form Customization Overrides */
}
.contacto form .hs-form-field {
  margin-bottom: 15px; /* Compact spacing */
}
.contacto form label {
  font-size: 13px; /* Slightly smaller */
  color: #666;
  margin-bottom: 2px; /* Tighter label */
  font-weight: 400;
  display: block;
}
.contacto form .hs-input {
  width: 100%;
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  border-radius: 0 !important;
  padding: 5px 0 !important; /* Slimmer input */
  color: #000 !important;
  box-shadow: none !important;
  font-family: "Signika", sans-serif;
  font-size: 14px !important;
}
.contacto form .hs-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.contacto form .hs-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.contacto form .hs-input:focus {
  border-bottom: 1px solid #ce202f !important;
  outline: none;
}
.contacto form {
  /* Submit Button */
}
.contacto form input[type=submit],
.contacto form .hs-button {
  background-color: #f3614d !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 10px 30px !important; /* Smaller button */
  border-radius: 50px !important;
  border: none !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 15px; /* Closer to form */
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  /* display: inline-block; - Ignored due to float */
  float: right; /* Often right aligned in these designs */
}
.contacto form input[type=submit]:hover,
.contacto form .hs-button:hover {
  background-color: #ce202f !important; /* Darker red hover */
  transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .contacto {
    padding: 60px 0;
  }
  .contacto .form-wrapper {
    padding-left: 0;
    margin-top: 40px;
  }
  .contacto h2 {
    font-size: 32px;
  }
  .contacto form input[type=submit],
  .contacto form .hs-button {
    width: 100%; /* Full width button on mobile */
    float: none;
  }
}
@media (max-width: 767px) {
  .contacto {
    padding: 60px 15px 60px;
  }
  .contacto img {
    display: none !important;
  }
}
/* Datos Section Styles - Morita */
.datos {
  background-color: #ce202f; /* Red Background */
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}
.datos .container {
  max-width: 1180px;
}
.datos h6 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}
.datos h2 {
  color: #fff;
  margin-bottom: 80px !important;
}
.datos h2 span {
  color: #ff7562;
}
.datos .dato-card {
  /* border: 3px solid #f3614d; Removed, moved to ::before */
  border-radius: 20px;
  padding: 120px 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
  background-color: #ce202f;
  z-index: 2;
  /* Border Layer */
}
.datos .dato-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid #f3614d;
  border-radius: 20px;
  pointer-events: none;
  z-index: 10; /* Above image */
  background-color: #ce202f;
}
.datos .dato-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}
.datos .dato-card p {
  color: #fff;
  font-size: 27px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  z-index: 11;
}
.datos .dato-card {
  /* Decorative Images via Pseudo-elements */
}
.datos .dato-card.card-1::after {
  content: "";
  position: absolute;
  top: -90px;
  left: -85px;
  width: 170px;
  height: 170px;
  background-image: url(../imagenes/tacos.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
.datos .dato-card.card-3::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -150px;
  width: 190px;
  height: 190px;
  background-image: url(../imagenes/matita.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .datos {
    padding: 100px 15px;
  }
  .datos .dato-card {
    margin-bottom: 20px;
    padding: 90px 20px;
  }
  .datos .dato-card p {
    font-size: 22px;
  }
  .datos {
    /* Adjust decorative images for mobile if needed */
  }
  .datos .dato-card.card-1::after {
    width: 140px;
    height: 120px;
    top: -60px;
    left: -50px;
  }
  .datos .dato-card.card-3::after {
    width: 180px;
    height: 192px;
    bottom: -130px;
    right: 0;
    background-image: url(../imagenes/movil/matita.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
}
/* Galeria Section Styles - Morita */
.galeria {
  padding: 0;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}
.galeria .mySwiperGaleria {
  width: 100%;
  height: 100%;
  padding: 0; /* Remove padding */
  z-index: 1; /* Behind caption */
}
.galeria .swiper-slide {
  position: relative;
  text-align: center;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.galeria .swiper-slide img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.galeria {
  /* Floating Static Caption Card */
}
.galeria .caption-card {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 30px 140px;
  border-radius: 20px;
  width: 80%;
  max-width: 1400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
  z-index: 10;
}
.galeria .caption-card p {
  color: #333;
  margin: 0;
  line-height: 1.4;
  max-width: 80%;
  margin: 0 auto;
}
.galeria .caption-card p b {
  font-weight: 700;
}
.galeria {
  /* Navigation Arrows */
}
.galeria .swiper-button-prev,
.galeria .swiper-button-next {
  color: #fff;
  width: 40px;
  height: 40px;
  z-index: 5; /* Above slide, below caption if overlap */
}
.galeria .swiper-button-prev::after,
.galeria .swiper-button-next::after {
  font-size: 24px;
  font-weight: bold;
}
.galeria .swiper-button-prev:hover,
.galeria .swiper-button-next:hover {
  color: #ce202f;
}

@media screen and (max-width: 1540px) {
  .galeria .caption-card {
    padding: 30px 140px;
    width: 90%;
  }
}
/* Mobile Responsiveness */
@media (max-width: 991px) {
  .galeria .swiper-slide img {
    width: 100%;
    height: auto; /* Smaller height on mobile */
  }
  .galeria .caption-card {
    width: 90%;
    bottom: 20px;
    padding: 20px;
  }
  .galeria .caption-card .row {
    flex-direction: column;
  }
  .galeria .caption-card .border-right-custom {
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .galeria .caption-card h3 {
    font-size: 20px;
  }
  .galeria .caption-card p {
    font-size: 13px;
  }
  .galeria .caption-card p {
    max-width: 100%;
  }
  .galeria .col-md-6 {
    flex: 0 0 auto;
    width: 80%;
  }
}
@media (max-width: 767px) {
  .galeria .caption-card {
    width: 90%;
    bottom: 40px;
    padding: 20px 0;
  }
  h2.peque {
    font-size: 30px;
    line-height: 33px;
    margin: 0;
  }
}
/* Diferencial Section Styles - Morita */
.diferencial {
  padding: 150px 0;
  background-color: #fff; /* White background */
}
.diferencial h6 {
  color: #000;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}
.diferencial h2 {
  color: #000;
  line-height: 1.2;
  text-align: left;
  font-weight: 700;
  margin-bottom: 30px;
}
.diferencial h2 .text-red {
  color: #ce202f;
}
.diferencial p {
  color: #333;
  margin-bottom: 20px;
  text-align: left;
  line-height: 1.6;
  max-width: 75%;
  margin: 0 auto;
}
.diferencial p b {
  font-weight: 700;
  color: #000;
}
.diferencial p:last-child {
  margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .diferencial {
    padding: 60px 50px;
    text-align: left;
  }
  .diferencial h2 {
    margin-bottom: 20px;
  }
  .diferencial p {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .diferencial {
    padding: 60px 15px;
    text-align: left;
  }
  .diferencial h2 {
    margin-bottom: 20px;
  }
  .diferencial p {
    max-width: 100%;
  }
}
/* Image Break Section Styles - Morita */
.image-break {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Marquee / Scrolling Background */
}
.image-break .marquee-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1; /* Behind main image */
  opacity: 1;
  display: flex;
  background-color: #f3614d; /* Orange Background */
  padding: 10px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.image-break .marquee-content {
  display: flex;
  animation: marquee-break 40s linear infinite; /* Slower scroll */
  min-width: 100%;
  align-items: center;
}
.image-break .marquee-content span {
  font-size: 24px;
  font-weight: 700;
  color: #fff; /* White text */
  margin-right: 40px;
  font-family: "Signika", sans-serif;
  text-transform: uppercase;
}
.image-break .marquee-content {
  /* Removed img styles */
}
.image-break {
  /* Keyframes for scrolling */
}
@keyframes marquee-break {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.image-break {
  /* Main Centered Image */
}
.image-break .center-image-container {
  position: relative;
  z-index: 5; /* Above marquee */
  max-width: 90%;
  width: 1500px; /* Adjust based on image size */
}
.image-break .center-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px; /* Optional rounding */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .image-break {
    padding: 50px 0;
  }
  .image-break .marquee-content img {
    height: 40px;
    margin-right: 20px;
  }
  .image-break .center-image-container {
    width: 80%;
  }
  .image-break .marquee-content span {
    font-size: 10px;
  }
}
/* Video Section Styles - Morita */
.video-section {
  margin-top: -240px;
  padding: 340px 0 100px;
  background-color: #ce202f; /* Red Background */
  text-align: center;
  color: #fff;
}
.video-section h6 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.video-section h2 {
  color: rgba(255, 255, 255, 0.7); /* Reduced opacity for "desde adentro" part */
  margin-bottom: 40px;
  font-weight: 400;
  opacity: 1;
}
.video-section h2 span {
  color: #ff7562; /* White for "Conocé el modelo" */
}
.video-section .video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.video-section .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .video-section {
    margin-top: -140px;
    padding: 150px 0 100px;
  }
  .video-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .video-section .video-container {
    padding-bottom: 56.25%;
  }
}
@media (max-width: 767px) {
  .video-section {
    margin-top: -80px;
    padding: 150px 0 100px;
  }
  .video-section h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .video-section h2 span {
    display: block;
  }
  .video-section .video-container {
    padding-bottom: 56.25%;
  }
}
/* Video Section Styles - Morita */
.video-section {
  margin-top: -240px;
  padding: 340px 0 100px;
  background-color: #ce202f; /* Red Background */
  text-align: center;
  color: #fff;
}
.video-section h6 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.video-section h2 {
  color: rgba(255, 255, 255, 0.7); /* Reduced opacity for "desde adentro" part */
  margin-bottom: 40px;
  font-weight: 400;
  opacity: 1;
}
.video-section h2 span {
  color: #ff7562; /* White for "Conocé el modelo" */
}
.video-section .video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.video-section .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .video-section {
    margin-top: -140px;
    padding: 150px 0 100px;
  }
  .video-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .video-section .video-container {
    padding-bottom: 56.25%;
  }
}
@media (max-width: 767px) {
  .video-section {
    margin-top: -80px;
    padding: 150px 0 100px;
  }
  .video-section h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .video-section h2 span {
    display: block;
  }
  .video-section .video-container {
    padding-bottom: 56.25%;
  }
}
/* Pasos Section Styles - Morita */
.pasos {
  background-color: #ce202f; /* Red Background */
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.pasos .pasos-text {
  padding-left: 300px; /* Indent titles from edge */
}
@media (max-width: 991px) {
  .pasos .pasos-text {
    padding-left: 30px; /* Reset on mobile */
  }
}
.pasos h6 {
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-align: left;
}
.pasos h2 {
  color: #fff;
  margin-bottom: 40px;
  text-align: left;
  line-height: 1.2;
}
.pasos h2 span {
  color: #f3614d; /* Orange text */
}
.pasos .swiper {
  padding: 20px;
  padding-bottom: 60px; /* Space for navigation */
}
.pasos .swiper-slide {
  height: auto; /* Allow auto height */
}
.pasos .paso-card {
  background-color: #ce202f;
  border: 3px solid #f3614d;
  border-radius: 30px;
  padding: 40px;
  height: 350px; /* Fixed height for consistency */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  position: relative;
  transition: transform 0.3s ease;
}
.pasos .paso-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.pasos .paso-card {
  /* Number Circle */
}
.pasos .paso-card .step-number {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f3614d; /* Orange circle */
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  font-family: "Signika", sans-serif;
  box-shadow: inset 0 0 0 4px rgb(206, 32, 47); /* Inner red ring effect */
  border: 4px solid #f3614d;
}
.pasos .paso-card h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 20px;
  text-align: left;
  margin-top: 40px; /* Push down to not overlap with number if text is long */
}
.pasos .paso-card p {
  color: #fff;
  font-weight: 300;
  line-height: 1.5;
  text-align: left;
  margin: 0;
}
.pasos {
  /* Navigation Wrapper */
}
.pasos .pasos-nav-wrapper {
  position: absolute;
  bottom: 0;
  left: 27%; /* Center relative to first slide (approx 54% width) */
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px; /* Space around separator */
  z-index: 10;
}
.pasos .pasos-nav-wrapper .nav-separator {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.5);
}
.pasos .pasos-nav-wrapper .swiper-button-next,
.pasos .pasos-nav-wrapper .swiper-button-prev {
  position: static; /* Reset absolute positioning */
  margin: 0;
  color: #fff;
  width: auto;
  height: auto;
}
.pasos .pasos-nav-wrapper .swiper-button-next::after,
.pasos .pasos-nav-wrapper .swiper-button-prev::after {
  font-size: 20px; /* Adjust size */
  font-weight: bold;
}
@media (max-width: 991px) {
  .pasos .pasos-nav-wrapper {
    left: 50%; /* Center relative to screen on mobile */
    width: 100%;
    justify-content: center;
  }
}

/* Wrapper adjustment if needed */
.pasos-footer-wrapper {
  background-color: #ce202f; /* Match background */
}

@media (max-width: 991px) {
  .pasos {
    padding: 60px 0;
    text-align: left;
  }
  .pasos h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .pasos .paso-card {
    height: auto; /* Auto height on mobile */
    min-height: 300px;
    padding: 30px;
  }
  .pasos .paso-card .step-number {
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  .pasos .swiper-button-next,
  .pasos .swiper-button-prev {
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .pasos {
    padding: 60px 15px;
    text-align: left;
  }
  .pasos h2 span {
    display: block;
  }
}
/* Footer Section Styles - Morita */
.footer {
  position: relative;
  background-image: url("../imagenes/footer.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 70px 0 0 0; /* Padding top only, bottom handled by strip */
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 600px; /* Adjust height as needed */
}
.footer .container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px;
}
.footer .footer-content {
  max-width: 900px;
  margin: 0 auto;
}
.footer .footer-logo {
  max-width: 150px;
  margin-bottom: 80px;
}
.footer h2 {
  color: #fff;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-family: "Signika", sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Improve readability */
}
.footer p {
  color: #fff;
  text-align: center;
  font-family: Signika;
  font-size: 21px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 50px;
}
.footer .btn-cta {
  display: inline-block;
  background-color: #f3614d; /* Orange Brand Color */
  color: #fff;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 5px 15px rgba(243, 97, 77, 0.4);
  margin-bottom: 60px;
}
.footer .btn-cta:hover {
  transform: translateY(-3px);
  background-color: #ce202f;
}
.footer .copyright-strip {
  background-color: #fff;
  padding: 15px 0;
  width: 100%;
  margin-top: auto; /* Push to bottom */
}
.footer .copyright-strip p {
  color: #000;
  font-size: 14px;
  margin: 0;
  font-weight: 600;
  text-shadow: none;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .footer {
    background-image: url("../imagenes/movil/footer.jpg"); /* Mobile Background */
    min-height: 500px; /* Slightly shorter on mobile */
    padding-top: 60px;
  }
  .footer .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .footer .footer-logo {
    max-width: 120px;
    margin-bottom: 50px;
  }
  .footer h2 {
    margin-bottom: 20px;
  }
  .footer p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .footer .btn-cta {
    width: 80%; /* Wider button on mobile */
  }
}/*# sourceMappingURL=styles.css.map */