@font-face {
  font-family: Sora;
  src: url("../font/Sora-Medium.otf") format("opentype"); /* Safari, Android, iOS */
  font-weight: 500;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Sora;
  src: url("../font/Sora-SemiBold.otf") format("opentype"); /* Safari, Android, iOS */
  font-weight: 600;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Sora;
  src: url("../font/Sora-Bold.otf") format("opentype"); /* Safari, Android, iOS */
  font-weight: 700;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Sora;
  src: url("../font/Sora-ExtraBoldItalic.otf") format("opentype"); /* Safari, Android, iOS */
  font-weight: 800;
  font-style: italic;
  text-rendering: optimizeLegibility;
}
@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;
}
/* Variables de Sass */
@keyframes pulse2 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
/* Header Styles */
header.menu {
  background-color: transparent; /* Transparent for banner overlay */
  position: fixed; /* Fixed to stay on top while scrolling */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

/* Scrolled State */
header.menu.scrolled {
  background-color: rgb(23, 79, 145);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  /* Optional: Scale down logo if needed - logic handled by separate transition rule below */
}
header.menu.scrolled .nav-link:hover {
  color: #107bbf;
}
header.menu.scrolled .btn-contact {
  border-color: #107bbf;
  color: #107bbf !important;
}
header.menu.scrolled .btn-contact:hover {
  background-color: #107bbf;
  color: #fff !important;
}

header.menu .container-fluid {
  max-width: 1740px;
  padding: 10px 15px;
  transition: padding 0.3s ease;
}

header.menu.scrolled .container-fluid {
  padding: 0px 15px; /* Compact on scroll */
}

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

.logoD {
  max-width: 256px;
  display: block;
  transition: max-width 0.3s ease;
}

header.menu.scrolled .logoD {
  max-width: 200px; /* Smaller logo on scroll */
}

.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: #fff; /* White text for overlay */
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  padding: 5px 20px !important;
}
.menuD .nav-link:hover {
  color: #b3c3eb;
  opacity: 1;
}
.menuD .btn-contact {
  background-color: transparent;
  color: #fff !important; /* White text */
  border: 1px solid #fff; /* White border */
  border-radius: 30px;
  padding: 8px 30px !important;
  font-weight: 500;
  margin-left: 10px;
  display: inline-block;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.menuD .btn-contact:hover {
  background-color: #b3c3eb;
  border-color: #b3c3eb;
  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;
  }
  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(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  .navbar-collapse {
    background-color: #fff;
    padding: 120px 20px 20px; /* Top padding to position content */
    /* Height handled by Bootstrap/Classes */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    /* Force Flex but align top to avoid vertical jumping during height anim */
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Start from top */
    overflow: hidden;
    /* Base hidden state (Closed) */
    opacity: 0;
    visibility: hidden;
    height: 0; /* Default closed height */
    pointer-events: none;
    transition: opacity 0.3s ease, height 0.3s ease, visibility 0.3s;
  }
  .navbar-collapse.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    height: 100vh; /* Full screen */
  }
  /* Bootstrap adds this class during animation */
  /* Bootstrap adds this class during animation */
  .navbar-collapse.collapsing {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 120px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 999;
    /* Visibility during animation */
    visibility: visible;
    pointer-events: none;
    /* Ensure opacity is 1 so height animation handles visibility */
    opacity: 1;
  }
  /* 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: #107bbf; /* Blue text on mobile menu */
    font-size: 24px;
    font-family: "Sora", 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: 50px;
    width: auto;
  }
  .navbar {
    padding: 0;
  }
}
/* General & Typography */
html,
body {
  width: 100%;
  overflow-x: hidden;
  background-color: white;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
}

section {
  padding: 100px 15px;
}

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

h1 {
  color: var(--Balnco, #fff);
  font-family: Sora;
  font-size: 65px;
  font-style: italic;
  font-weight: 800;
  line-height: 71.049px; /* 109.307% */
  text-transform: uppercase;
}
h1 span {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--Balnco, #fff);
}

.banner p {
  color: var(--Balnco, #fff);
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

h2 {
  color: var(--Celeste-Lavakan, #107bbf);
  text-align: center;
  font-family: Sora;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

h4 {
  color: var(--Negro, #000);
  font-family: Sora;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

p {
  color: var(--Negro, #000);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Buttons */
.btn,
.btnbr {
  border-radius: 101px;
  background: var(--Celeste-Lavakan, #107bbf);
  color: var(--Balnco, #fff);
  font-family: Sora;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.btn:hover,
.btnbr:hover {
  background-color: #b3c3eb;
  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;
  transition-delay: 0.2s; /* Initial pause */
  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: 36px;
    line-height: 44px;
  }
  p {
    font-size: 16px;
    line-height: normal;
  }
  h2 {
    font-size: 28px;
    line-height: normal;
  }
}
.banner {
  padding: 500px 0 120px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden; /* Clip video */
  background-color: #000; /* Fallback */
  margin-bottom: 0;
  /* Video Background */
}
.banner .video-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner .banner-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Darkens video for text readability */
  z-index: 2;
}
.banner .container-fluid {
  position: relative;
  z-index: 10; /* Above video */
}
.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: 1740px;
}

.banner h1 {
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-style: italic;
  color: #fff;
}
.banner h1 span {
  display: block;
  color: transparent; /* Outline effect */
  -webkit-text-stroke: 1px #fff;
  font-weight: 800;
}

.banner p {
  margin-bottom: 40px;
  text-align: left;
  max-width: 70%; /* Constrain width for readability on desktop */
  color: #fff;
}

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

@media (max-width: 1540px) {
  .banner {
    padding: 500px 20px 120px;
  }
}
@media (max-width: 991px) {
  .banner {
    padding-top: 400px;
    padding-bottom: 100px;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    /* background-image removed for video */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .banner {
    padding-left: 15px;
    padding-right: 15px;
    background-position: center;
    background-size: cover;
    min-height: 850px;
  }
  .banner p {
    max-width: 100%;
  }
}
.nosotros {
  background-color: #fff;
  padding: 220px 0;
  position: relative;
  overflow: hidden; /* Prevent paws from causing scroll */
}
.nosotros::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 340px;
  background-image: url(../imagenes/huellas.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.nosotros::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 500px;
  height: 340px;
  background-image: url(../imagenes/huella2.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.nosotros .nosotros-text-col {
  padding: 0 15px;
}
.nosotros .content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.nosotros h2 {
  margin-bottom: 30px;
  text-align: center;
  color: #107bbf;
  font-weight: 700;
}

.nosotros p {
  text-align: center;
  margin-bottom: 20px;
  color: #4e4d4d;
}
.nosotros p strong {
  font-weight: 700;
  color: #000;
}

/* Wavy line */
.linea-curva {
  width: 130px;
  margin-bottom: 20px;
}

@media (max-width: 1540px) {
  .nosotros::before {
    width: 25%;
  }
  .nosotros::after {
    width: 25%;
  }
  .nosotros .container {
    max-width: 1150px;
  }
}
@media (max-width: 991px) {
  .nosotros {
    padding: 150px 30px;
  }
  .nosotros::before, .nosotros::after {
    width: 180px;
    height: 130px;
    rotate: 10deg;
  }
  .nosotros::before {
    left: -60px;
  }
}
.beneficios {
  background-color: #fff;
  padding: 0 0 150px;
  position: relative;
  overflow: hidden;
  /* Desktop Grid */
}
.beneficios .left-column {
  background-color: #fff;
  padding: 80px 40px;
  border-right: 1px solid #efefef;
}
.beneficios .left-column h2 {
  text-align: left;
  color: #107bbf;
  margin-top: 20px;
}
.beneficios .left-column h2 strong {
  font-weight: 800;
  display: block;
}
.beneficios .left-column .perro-img {
  max-width: 280px;
}
.beneficios .right-column {
  background-color: #fff;
}
.beneficios .desktop-grid {
  width: 93%;
  height: 100%;
}
.beneficios .grid-item {
  width: 50%; /* 2 cols */
  padding: 60px 100px;
  border-right: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  /* Remove bottom borders for last row if needed, strictly 4 items */
}
.beneficios .grid-item:nth-child(3), .beneficios .grid-item:nth-child(4) {
  border-bottom: none;
}
.beneficios .grid-item h4 {
  color: #000;
}
.beneficios .grid-item p {
  color: #666;
  margin: 0;
  text-align: left;
}

/* Pagination dots style */
.swiper-pagination-bullet-active {
  background-color: #107bbf !important;
}

@media (max-width: 1540px) {
  .beneficios .grid-item {
    padding: 60px 50px;
  }
  .beneficios {
    padding: 0 70px 150px;
  }
}
@media (max-width: 991px) {
  .beneficios {
    padding: 50px 0;
    /* Mobile Card Style in Swiper */
  }
  .beneficios h2 {
    margin-bottom: 40px;
  }
  .beneficios .left-column {
    border-right: none;
    padding: 0 15px 40px;
    border-bottom: 1px solid #f0f0f0;
  }
  .beneficios .right-column {
    padding-top: 40px;
  }
  .beneficios .mobile-card {
    padding: 20px 40px;
  }
  .beneficios .mobile-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: left;
  }
  .beneficios .mobile-card p {
    font-size: 16px;
    color: #666;
    text-align: left;
  }
  .beneficios .swiper-pagination-beneficios {
    position: relative;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .beneficios {
    padding: 50px 20px;
  }
  .beneficios .mobile-card {
    padding: 20px 20px;
  }
}
.contacto {
  background: none;
  padding: 0;
  position: relative;
  overflow: hidden;
  /* Phone input overrides */
}
.contacto fieldset.form-columns-2,
.contacto fieldset.form-columns-1 {
  max-width: 100% !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: 0 !important;
  width: 50% !important;
}

.form-wrapper-blue {
  background-color: #107bbf; /* Using primary blue */
  background: linear-gradient(180deg, var(--Celeste-Lavakan, #107bbf) 0%, var(--Azul-profundo, #194183) 100%);
  padding: 80px 20%;
  height: 100%;
  min-height: 600px;
}

.contacto h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
  font-style: italic;
  text-align: left;
}

.contact-img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  display: block;
}

/* Form inputs & styling */
.hbspt-form .hs-input {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #fff !important;
  color: #fff !important;
  font-family: "Montserrat", sans-serif !important;
  padding: 10px 0 !important;
  margin-bottom: 5px !important;
  font-size: 14px !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: "Montserrat", sans-serif;
  color: #fff !important;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

/* Submit Button */
.hbspt-form .hs-button.primary {
  background-color: #000 !important; /* Black button */
  color: #fff !important;
  border: none !important;
  border-radius: 30px !important;
  padding: 12px 40px !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
  width: auto;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hbspt-form .hs-button.primary:hover {
  background-color: #333 !important;
  transform: scale(1.05);
}

/* Mobile Adjustments */
@media (max-width: 1540px) {
  h2 br {
    display: none;
  }
}
@media (max-width: 991px) {
  .contacto {
    /* Stack order handled by Bootstrap col order if needed, but standard is img top, form bottom */
  }
  .contacto .form-wrapper-blue {
    padding: 60px 20px;
    padding: 100px 40px !important;
  }
  .contacto h2 {
    font-size: 2px;
    text-align: left;
  }
  .contacto .contact-img {
    height: 300px; /* Fixed height for mobile image */
  }
}
@media (max-width: 767px) {
  .contacto h2 {
    font-size: 20px;
  }
}
.datos {
  background-color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.datos .container {
  max-width: 1500px;
}

.datos h2 {
  color: #107bbf;
  text-align: left;
  margin-bottom: 50px;
  font-weight: 700;
}

.datos-illustration {
  max-width: 90%;
  /* Ensure it scales nicely */
}

/* Card Container */
.datos-cards-container {
  gap: 20px;
}

/* Individual Card */
.datos-card {
  background-color: #fff;
  border: 2px solid #e9e9e9; /* User defined */
  border-radius: 20px; /* User defined */
  padding: 30px 20px;
  width: 31%; /* Divide by 3 minus gap */
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  min-height: 200px; /* Ensure uniform height */
}
.datos-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Enhance shadow on hover */
}
.datos-card h3 {
  color: #b3c3eb; /* Light Blue */
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1;
}
.datos-card p {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  margin: 0;
}
.datos-card p strong {
  font-weight: 700;
  color: #000;
}

@media (max-width: 1540px) {
  .datos {
    padding: 80px 40px;
  }
}
@media (max-width: 991px) {
  .datos h2 {
    text-align: center;
    font-size: 30px;
  }
  .datos-illustration {
    max-width: 60%;
    margin-bottom: 40px;
  }
  .datos-cards-container {
    justify-content: center !important;
  }
  .datos-card {
    width: 100%; /* Full width on mobile or tablet vertical */
    max-width: 350px;
    margin-bottom: 20px;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .datos {
    padding: 60px 20px 20px;
  }
  .datos h2 {
    text-align: left;
    font-size: 28px;
  }
  .datos .datos-card {
    max-width: 250px;
    padding: 40px;
  }
  .datos .datos-card p,
  .datos .datos-card h3 {
    text-align: left;
    display: block;
    width: 100%;
  }
  .datos-illustration {
    max-width: 80%;
    margin-bottom: 40px;
  }
}
.galeria-decoration-top {
  margin-bottom: -10px;
}

.galeria {
  background-color: #e9e9e9; /* Light gray background */
  padding: 0 0 30px;
  position: relative;
}
.galeria .galeria-decoration-top {
  width: 100%;
  line-height: 0;
  transform: translateY(-1px); /* Avoid gap */
}
.galeria .galeria-decoration-top img {
  width: 100%;
  height: auto;
}
.galeria .content-container {
  padding-top: 60px;
}

.galeria .outline-title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 64px;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #194183; /* var(--Azul-profundo) */
  text-transform: uppercase;
  line-height: normal;
  margin-bottom: 0;
  text-align: center;
}

.mySwiperGaleria {
  padding-bottom: 50px;
  width: 100%;
}
.mySwiperGaleria .swiper-slide {
  /* width handled by Swiper JS */
}
.mySwiperGaleria .swiper-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Pagination dots style */
.swiper-pagination-galeria {
  text-align: center;
}
.swiper-pagination-galeria .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid #107bbf;
  opacity: 1;
}
.swiper-pagination-galeria .swiper-pagination-bullet-active {
  background: #107bbf;
}

@media (max-width: 991px) {
  .galeria .outline-title {
    font-size: 40px;
    padding: 0 15px;
  }
  .mySwiperGaleria .swiper-slide {
    max-width: 300px;
  }
  .mySwiperGaleria .swiper-slide img {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .galeria .outline-title {
    font-size: 28px;
  }
  .mySwiperGaleria .swiper-slide {
    max-width: 85%;
  }
  .mySwiperGaleria .swiper-slide img {
    height: 350px;
  }
}
.diferencial {
  padding: 100px 0 20px;
  background-color: #e9e9e9; /* Match Galeria bg */
  position: relative;
  overflow: hidden;
}
.diferencial .container {
  max-width: 1370px;
}
.diferencial .huella-icon {
  max-width: 50px;
  opacity: 0.8; /* Slight opacity as per design hint */
}
.diferencial h2 {
  color: #107bbf;
  font-weight: 500;
  text-align: left;
  margin: 30px 0;
}
.diferencial h2 strong {
  font-weight: 800;
}
.diferencial .diferencial-text {
  font-family: "Montserrat", sans-serif;
}
.diferencial .diferencial-text p {
  line-height: 1.6;
  text-align: left;
}
.diferencial .diferencial-text p strong {
  font-weight: 700;
  color: #000;
}
.diferencial .diferencial-main-img {
  max-width: 80%;
  scale: 1.1; /* Slight zoom effect as in mockup */
  display: block;
  margin-left: auto;
}

@media (max-width: 991px) {
  .diferencial {
    padding: 60px 30px;
  }
  .diferencial h2 {
    text-align: left;
  }
  .diferencial .huella-icon {
    display: block;
    margin: 0;
  }
  .diferencial .diferencial-text p {
    text-align: left;
  }
  .diferencial .diferencial-main-img {
    scale: 1;
    margin-top: 40px;
    max-width: 90%;
    margin: 40px auto 0;
  }
}
@media (max-width: 767px) {
  .diferencial {
    padding: 40px 20px;
  }
}
.video {
  padding: 100px 0 50px;
  background-color: #e9e9e9; /* Match previous sections */
}
.video .container {
  max-width: 1700px;
}
.video .outline-title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 60px;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #194183;
  text-transform: uppercase;
  line-height: normal;
  margin-bottom: 0px;
  text-align: center;
}
.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 */
  background-color: #000;
}
.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 .outline-title {
    padding: 0 15px;
    font-size: 30px;
  }
}

@media (max-width: 1540px) {
  .video .outline-title {
    font-size: 55px;
  }
}
@media screen and (max-width: 767px) {
  .video {
    padding: 50px 20px;
  }
  .video h2.outline-title {
    font-size: 28px;
  }
  .video .video-wrapper {
    padding-bottom: 56.25%;
  }
}
.pasos {
  padding: 150px 50px 300px;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  /* Left Decoration (Bone Background) */
  /* Slider Area */
  /* Centered buttons aligned with max-width slider */
}
.pasos .left-decoration {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Bone expanding to ~50% of viewport width from the left edge */
}
.pasos .left-decoration .bone-bg {
  position: absolute;
  left: -10vw;
  width: 60vw; /* Covers roughly the left half */
  max-width: none;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  z-index: 1;
}
.pasos .left-decoration .bone-content {
  position: relative;
  z-index: 2;
  padding: 0 0px;
  max-width: 460px;
  text-align: left;
}
.pasos .left-decoration .bone-content h2 {
  color: #22246b; /* Primary Blue explicitly */
  font-size: 44px;
  line-height: 1.2;
  font-weight: 600;
}
.pasos .slider-container {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Center horizontally */
  width: 100%;
}
.pasos .mySwiperPasos {
  width: 100%;
  max-width: 400px; /* Specific request */
  padding-bottom: 20px;
  margin: 0 auto;
}
.pasos .paso-card {
  background: transparent;
  padding-right: 0;
  text-align: left;
  /* Icon (Number) and Title Container */
}
.pasos .paso-card .d-flex {
  gap: 20px; /* Explicit gap requested */
  margin-bottom: 25px;
  align-items: center;
}
.pasos .paso-card .d-flex .step-number {
  max-height: 50px;
  width: auto;
  display: block;
  margin-right: 0 !important; /* Reset generic margins */
}
.pasos .paso-card .d-flex h4 {
  color: #000;
  font-weight: 700;
  margin-bottom: 0;
}
.pasos .paso-card .step-divider {
  height: 1px;
  background-color: #e9e9e9;
  width: 100%;
  margin-bottom: 25px;
}
.pasos .paso-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}
.pasos .pasos-nav {
  width: 100%;
  max-width: 400px;
  justify-content: flex-start; /* Aligned left with content block */
}
.pasos .pasos-nav img {
  transition: transform 0.2s;
}
.pasos .pasos-nav img:hover {
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .pasos {
    padding: 60px 0;
  }
  .pasos .left-decoration {
    min-height: 300px;
    margin-bottom: 40px;
  }
  .pasos .left-decoration .bone-bg {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; /* Cover on mobile */
    top: 50%;
  }
  .pasos .left-decoration .bone-content {
    text-align: center;
  }
  .pasos .left-decoration .bone-content h2 {
    text-align: center !important;
    font-size: 28px;
  }
  .pasos-nav {
    justify-content: center;
  }
  .mySwiperPasos {
    max-width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .pasos .left-decoration .bone-bg {
    left: 45%;
    transform: translate(-50%, -50%);
    width: 100%;
    top: 50%;
  }
  .pasos .left-decoration .bone-content h2 {
    text-align: left !important;
    font-size: 26px;
    padding-right: 50px;
    padding-left: 30px;
  }
  .pasos .left-decoration {
    min-height: 90px;
    margin-bottom: 40px;
    margin-top: 80px;
  }
  .pasos .pasos-nav {
    width: 100%;
    max-width: 400px;
    justify-content: flex-start;
    padding-left: 20px;
  }
}
.site-footer {
  position: relative;
  padding: 0;
  /* Responsive */
}
.site-footer .container {
  max-width: 1600px;
}
.site-footer .footer-content-col {
  border-left: 1px solid white;
  padding: 20px 5px 8px 100px;
}
.site-footer .footer-main {
  /* Better approximation of "Lavakan Blue" based on header. Let's try a solid rich blue or standard gradient. 
     User image shows a clean blue gradient left-to-right. */
  background: linear-gradient(180deg, var(--Celeste-Lavakan, #107bbf) 0%, var(--Azul-profundo, #194183) 100%);
  padding: 20px 0 0; /* Top padding, dog sits at bottom */
  overflow: hidden; /* Hide dog bottom overflow if any */
  min-height: 400px;
}
.site-footer .footer-logo {
  max-width: 180px;
  height: auto;
  display: block;
}
.site-footer .footer-content-col {
  position: relative;
  z-index: 2;
}
.site-footer .footer-content-col h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  text-align: left;
}
.site-footer .footer-content-col p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 500px;
  text-align: left;
}
.site-footer .btn-dark-footer {
  background-color: #000;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: none;
  transition: transform 0.2s;
  margin: 0;
  display: block;
  width: -moz-max-content;
  width: max-content;
}
.site-footer .btn-dark-footer:hover {
  transform: scale(1.05);
  background-color: #222;
  color: #fff;
}
.site-footer .footer-dog {
  /* Desktop: Dog peeks from bottom right */
  display: block;
  max-width: 100%;
  height: auto;
  /* Logic for peeking: align bottom of column? */
  /* If we want it strictly bottom right relative to container: */
  position: relative;
  /* Transform to move it down slightly if needed or just block */
  margin-top: 20px;
  transform: translateY(70px); /* Push slightly down to flush with bottom */
}
.site-footer .dog-col {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
}
.site-footer .copyright-strip {
  border-top: none;
}
@media (max-width: 991px) {
  .site-footer .footer-main {
    padding: 60px 0 0;
    text-align: center;
  }
  .site-footer .footer-logo {
    margin: 0 auto 30px;
    max-width: 150px;
  }
  .site-footer .footer-content-col {
    margin-bottom: 40px !important;
  }
  .site-footer .footer-content-col p {
    margin: 0 auto 1.5rem;
  }
  .site-footer .footer-dog {
    margin: 0 auto;
    max-width: 80%; /* Smaller on mobile */
    transform: translateY(0); /* Reset peek */
  }
  .site-footer .dog-col {
    justify-content: center;
  }
}

@media (max-width: 1540px) {
  .site-footer .footer-dog {
    transform: translateY(85px);
  }
}
@media (max-width: 991px) {
  .site-footer .footer-content-col {
    border-left: 1px solid white;
    padding: 10px 50px;
  }
  .site-footer .footer-content-col p {
    margin: 0;
  }
  .site-footer .footer-logo {
    margin: 30px;
    max-width: 150px;
  }
}
@media (max-width: 991px) and (max-width: 1540px) {
  .site-footer .footer-dog {
    transform: translateY(10px);
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .site-footer .footer-dog {
    margin: 0 auto;
    max-width: 70%;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .site-footer .footer-logo {
    margin: 0px 30px;
    max-width: 110px;
  }
  .site-footer .footer-content-col h2 {
    font-size: 26px;
    line-height: normal;
    text-align: left;
  }
  .site-footer .footer-content-col p {
    font-size: 16px;
  }
}/*# sourceMappingURL=styles.css.map */