/* #region Variables */
:root {
   --primary-color: #0a0a0a;
   --accent-color: #007bff;
   --text-color: #333;
   --light-text-color: #f0f0f0;
   --bg-light: #f8f8f8;
   --beige: #e3c58a;
   --gap-spacing: 20px;
   --nav-height: 70px;
}
/* #endregion Variables */

/* #region Globales */
* {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

html {
   scroll-behavior: smooth;
}

body {
   font-family: 'Montserrat', sans-serif;
   line-height: 1.6;
   color: var(--text-color);
   overflow-x: hidden;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
   width: 100%;
}

img {
   max-width: 100%;
   height: auto;
   display: block;
}

.px-0 {
   padding-left: 0 !important;
   padding-right: 0 !important;
}

.pb-0 {
   padding-bottom: 0 !important;
}

.mb-0 {
   margin-bottom: 0 !important;
}

.mt-1 {
   margin-top: 10px !important;
}

.mt-2 {
   margin-top: 20px !important;
}

.mt-3 {
   margin-top: 30px !important;
}

.bold {
   font-weight: 700;
}

.hide-visible {
   display: block;
}

a {
   color: var(--accent-color);
   text-decoration: none;
   transition: color 0.3s ease;
}

a:hover {
   color: var(--primary-color);
}

.btn {
   display: inline-block;
   padding: 10px 20px;
   color: var(--light-text-color);
   border-radius: 5px;
   font-weight: 600;
   transition: all 0.3s ease;
   margin-top: 15px;
   font-size: 0.9em;
}

/* #endregion Globales */

/* #region Menu  */
.main-nav {
   background-color: transparent;
   padding: 0;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1000;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.main-nav.scrolled {
   background-color: var(--primary-color);
   box-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.main-nav .nav-content {
   display: flex;
   justify-content: flex-end;
   align-items: center;
   position: relative;
   height: var(--nav-height);
   padding-right: 20px;
   padding-left: 20px;
}

.nav-logo {
   display: none;
}

.hamburger-menu {
   display: flex;
   flex-direction: column;
   justify-content: space-around;
   width: 30px;
   height: 25px;
   background: transparent;
   border: none;
   cursor: pointer;
   padding: 0;
   z-index: 1001;
}

.hamburger-menu span {
   display: block;
   width: 100%;
   height: 3px;
   background: var(--light-text-color);
   border-radius: 5px;
   transition: all 0.3s ease-in-out;
}

.hamburger-menu.is-open span:nth-child(1) {
   transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.is-open span:nth-child(2) {
   opacity: 0;
}

.hamburger-menu.is-open span:nth-child(3) {
   transform: rotate(-45deg) translate(5px, -5px);
}

.main-nav .nav-links {
   display: none;
}

.mobile-full-menu {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   background-color: rgba(10, 10, 10, 0.95);
   z-index: 9999;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   transform: translateX(100%);
   transition: transform 0.4s ease-out;
   visibility: hidden;
}

.mobile-full-menu.is-open {
   transform: translateX(0);
   visibility: visible;
}

.mobile-nav-content {
   text-align: center;
   width: 100%;
   max-width: 300px;
}

.mobile-nav-links {
   list-style: none;
   padding: 0;
   margin: 0;
}

.mobile-nav-links li {
   margin-bottom: 25px;
}

.mobile-nav-links li:last-child {
   margin-bottom: 0;
}

.mobile-nav-links a {
   color: var(--light-text-color);
   text-decoration: none;
   font-size: 1em;
   font-weight: 600;
   letter-spacing: 2px;
   text-transform: uppercase;
   display: inline-block;
   padding-bottom: 5px;
   transition: color 0.3s ease, border-bottom 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
   color: var(--beige);
   border-bottom: 2px solid var(--beige);
}

.close-menu {
   position: absolute;
   top: 20px;
   right: 20px;
   background: none;
   border: none;
   color: var(--light-text-color);
   font-size: 2em;
   cursor: pointer;
   z-index: 10000;
}

.close-menu svg {
   stroke: var(--light-text-color);
   width: 30px;
   height: 30px;
}
/* #endregion Menu  */

/* #region BH  */
.bh {
   height: 100vh;
   background: url('/assets/FONDO_INICIO.png') center center / cover no-repeat fixed;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--light-text-color);
   text-align: center;
   position: relative;
   z-index: 1;
}

.bh::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.4);
   z-index: -1;
}

.bh__content {
   margin-top: 100px;
}

.bh__content img:first-child {
   width: 100%;
   max-width: 300px;
   margin: 0 auto;
}

.bh__title {
   font-size: 1.1em;
   max-width: 90%;
   margin: 30px auto 20px auto;
   font-weight: 500;
}

.bh__title-beige {
   color: var(--beige);
}

.bh__btn {
   display: inline-block;
   margin-top: 30px;
}

.bh__btn img {
   width: 100%;
   max-width: 200px;
   margin: 0 auto;
}
/* #endregion BH  */

/* #region Alianza  */
.section-intermedia {
   padding: 60px 0;
   background-color: var(--bg-light);
}

.section-intermedia:nth-child(odd) {
   background-color: #ffffff;
}

.section-content {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   gap: var(--gap-spacing);
}

.text-wrapper {
   flex: 1;
   padding: 0;
   margin-bottom: var(--gap-spacing);
}

.section-intermedia h2 {
   font-size: 1.4em;
   line-height: 1.2;
   margin-bottom: 20px;
   font-weight: 600;
   color: var(--primary-color);
}

.section-intermedia p {
   margin-bottom: 15px;
   line-height: 1.8;
}

.section-intermedia ul {
   list-style: none;
   margin-top: 20px;
   padding-left: 0;
}

.section-intermedia ul li {
   margin-bottom: 10px;
   padding-left: 25px;
   position: relative;
   text-align: left;
   max-width: fit-content;
   margin-left: auto;
   margin-right: auto;
}

.section-intermedia ol {
   list-style-type: decimal;
   margin-top: 20px;
   padding-left: 0;
   margin-left: 25px;
}

.section-intermedia ol li {
   margin-bottom: 10px;
   text-align: center;
   max-width: unset;
   margin-left: unset;
   margin-right: unset;
   list-style-position: inside;
   text-indent: -1.8em;
}

.section-intermedia ol.beneficios li p {
   display: inline;
   margin: 0;
   padding: 0;
   line-height: 1.2 !important;
   vertical-align: baseline;
}

.container-logos {
   width: 100%;
   display: flex;
   align-items: center;
   margin-top: 30px;
   gap: 20px;
}

.container-logos__left,
.container-logos__right {
   width: 100%;
   display: flex;
   justify-content: end;
   margin-right: 20px;
}

.container-logos__left img {
   width: 70%;
   max-width: 200px;
}

.container-logos__right img {
   width: 90%;
   max-width: 250px;
   margin: 0 auto;
}

.container-imgs {
   width: 100%;
}

.container-img {
   width: 100%;
}

.container-img:last-child {
   margin-bottom: 0;
}

.beneficios p {
   margin-bottom: 5px;
}

.flechas-icon {
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 20px auto;
}

.flechas-icon img {
   width: auto;
   height: auto;
   max-width: none;
   display: inline-block;
}

.video-entrevista {
   width: 100vw;
   height: auto;
   margin-bottom: 30px;
   background-color: grey;
}
/* #endregion Alianza  */

/* #region Carrusel & Cuidadores  */
.swiper.mySwiper {
   width: 100%;
   height: auto;
   margin-top: var(--gap-spacing);
   padding: 0 20px 40px;
}

.swiper-slide {
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
   border-radius: 8px;
   padding: 0;
   min-height: 300px;
   box-sizing: border-box;
   margin-bottom: 40px;
}

.mySwiper .swiper-pagination-bullet-active {
   background-color: #909090;
}

.swiper-slide .slide-content {
   width: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
}

.swiper-slide h2 {
   font-size: 1.4em;
   color: var(--primary-color);
   margin-bottom: 10px;
   line-height: 1.2;
}

.swiper-slide p {
   font-size: 1.08em;
   font-weight: 300;
   color: var(--text-color);
   line-height: 1.6;
}

.swiper-slide p strong {
   font-weight: 700;
}

.swiper-slide .slide-content img {
   max-width: 250px;
   margin: 30px auto 0;
}

.swiper-pagination {
   bottom: 0px !important;
   position: absolute;
   left: 0;
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
}

.swiper-pagination-bullet {
   width: 10px;
   height: 10px;
   background: #ccc;
   opacity: 0.8;
   transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
   background: var(--accent-color);
   width: 25px;
   border-radius: 5px;
}

.mySwiper .swiper-button-prev,
.mySwiper .swiper-button-next {
   display: none;
}
/* #endregion Carrusel & Cuidadores  */

/* #region Contacto  */
.footer-banner {
   padding: 160px 0;
   color: var(--light-text-color);
   text-align: center;
   background-image: url(./assets/FONDO_4.png);
   background-repeat: no-repeat;
   background-size: cover;
}

.footer-banner h2 {
   font-size: 1.35em;
   margin-bottom: 15px;
   font-weight: 700;
   color: #e3c58a;
}

.footer-banner p {
   font-size: 1.1em;
   max-width: 90%;
   margin: 0 auto 20px auto;
}

footer {
   background-color: var(--primary-color);
   color: var(--light-text-color);
   padding: 0 0 20px 0;
}

.footer-menu {
   display: flex;
   flex-direction: column;
   align-items: center;
   padding-top: 30px;
}

.footer-col {
   width: 100%;
   text-align: center;
   margin-bottom: 30px;
}

.footer-col h3 {
   font-size: 0.8em;
   margin-bottom: 15px;
   font-weight: 600;
}

.footer-col ul {
   list-style: none;
   padding: 0;
}

.footer-col ul li {
   margin-bottom: 8px;
}

.footer-col ul li a {
   color: var(--light-text-color);
   opacity: 0.8;
   transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
   opacity: 1;
}

.social-links a {
   display: inline-block;
   color: var(--light-text-color);
   margin: 0 8px;
   font-size: 1.1em;
   opacity: 0.8;
   transition: opacity 0.3s ease;
}

.social-links a:hover {
   opacity: 1;
}

.copyright {
   text-align: center;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 20px;
   font-size: 1em;
   color: #e3c58a;
   opacity: 0.7;
}

.whats {
   width: 60px;
   margin: 60px auto 0;
}

.contact-info-top {
   text-align: center;
}

.cta-text {
   font-size: 16px;
}

.phone-number {
   font-size: 34px;
}

.website-link a {
   color: var(--text-color);
}

.location-icon img {
   width: 35px;
   margin: 25px auto;
}

.fs-small {
   font-size: 14px;
}

.additional-phones {
   display: flex;
   justify-content: center;
   margin-top: 20px;
   margin-bottom: 20px;
}

.additional-phones img {
   margin-right: 8px;
   width: 30px;
}
/* #endregion Contacto  */

/* #region Modal  */
.video-modal {
   display: flex;
   justify-content: center;
   align-items: center;
   position: fixed;
   z-index: 1000;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.9);
   visibility: hidden;
   opacity: 0;
   transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.open {
   visibility: visible;
   opacity: 1;
}

.video-modal-content {
   position: relative;
   width: 95%;
   height: auto;
   background-color: #000;
}

.video-modal-content video {
   width: 100%;
   height: auto;
   display: block;
   max-height: 90vh;
   object-fit: contain;
}

.close-video-modal {
   position: absolute;
   top: -40px;
   right: 0px;
   color: #f1f1f1;
   font-size: 50px;
   font-weight: 300;
   cursor: pointer;
   z-index: 1001;
   text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

.close-video-modal:hover,
.close-video-modal:focus {
   color: #bbb;
   text-decoration: none;
   cursor: pointer;
}

body.modal-open {
   overflow: hidden;
}
/* #endregion Modal  */

/* #region Animation Reveal  */
.reveal-item {
   opacity: 0;
   transform: translateY(20px);
   transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-item.is-visible {
   opacity: 1;
   transform: translateY(0);
}
/* #endregion Animation Reveal  */

/* #region Querys  */
@media (min-width: 601px) {
   .video-modal-content {
      width: 90%;
      max-width: 1200px;
   }

   .close-video-modal {
      top: 15px;
      right: 35px;
      font-size: 40px;
   }
}

@media (min-width: 769px) {

   /* Flechas Swiper visibles a partir de aquí */
   .mySwiper .swiper-button-prev,
   .mySwiper .swiper-button-next {
      display: flex;
   }
}

@media (min-width: 768px) {
   :root {
      --gap-spacing: 30px;
   }

   .btn {
      padding: 12px 25px;
      font-size: 1em;
   }

   .bh {
      height: 80vh;
   }

   .bh__content img:first-child {
      max-width: 400px;
   }

   .bh__title {
      font-size: 1.5em;
   }

   .bh__btn img {
      max-width: 250px;
   }

   .section-intermedia {
      padding: 80px 0;
   }

   .section-intermedia h2 {
      font-size: 2.2em;
   }

   .section-intermedia ol {
      margin-left: 50px;
   }

   .container-logos {
      flex-direction: row;
      justify-content: center;
      gap: 40px;
   }

   .container-logos__left,
   .container-logos__right {
      width: auto;
      text-align: left;
   }

   .footer-banner {
      padding: 80px 0;
   }

   .footer-banner h2 {
      font-size: 3em;
   }

   .footer-banner p {
      font-size: 1.2em;
   }

   .footer-menu {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-around;
   }

   .footer-col {
      width: 45%;
   }

   .mySwiper {
      padding-bottom: 50px;
   }

   .swiper-slide {
      min-height: 250px;
   }

   .swiper-slide h2 {
      font-size: 1.8em;
   }
}
/* #endregion Querys */