  /* ********** Reset ********** */

  /* ********** Custom Properties ********** */
:root {
  --first-color: #d90062;
  --first-alpha-color: rgba(217, 0, 98, 0.75);
  --second-color: #14192d;
  --second-alpha-color: rgba(20, 25, 45, 0.75);
  --third-color: #501464;
  --third-alpha-color: rgba(80, 20, 100, 0.75);
  --white-color: #fff;
  --gray-light-color: #f3f3f3;
  --gray-color: #ccc;
  --gray-dark-color: #666;
  --black-color: #000;
  --link-color: #509ee3;
  --title-color: #333;
  --text-color: #222;
  --white-alpha-color: rgba(255, 255, 255, 0.5);
  --black-alpha-color: rgba(0, 0, 0, 0.5);
  --header-font: "Montserrat", serif;
  --first-font: "Poppins", serif;
  --max-width: 1200px;
  --header-height: 4rem;
}


  html {
    box-sizing: border-box;
    font-size: 1rem;
    font-family: var(--first-font);
    scroll-behavior: smooth;

  }
  
  *,
  *::after,
  *::before {
    box-sizing: inherit;
  }
  
  body {
    margin: 0;
    overflow-x: hidden;
  }
  
  a {
    transition: all 0.5s ease-out;
  }
  
  a:hover {
    opacity: 0.75;
  }
  
  h1 {
    margin: 0;
    font-size: 2rem;
  }
  
  h2 {
    margin: 0;
    font-size: 1.5rem;
  }
  
  h3 {
    margin: 0;
    font-size: 1.25rem;
  }
  
  h4 {
    margin: 0;
    font-size: 1rem;
  }
  
  h5 {
    margin: 0;
    font-size: 0.85rem;
  }
  
  h6 {
    margin: 0;
    font-size: 0.7rem;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  p {
    line-height: 1.6;
  }

  ul {
    margin: 0;
  }

  /* ********** Utilities **********  */

  .none {
    display: none;
  }

/* ********** Header ********** */
.header {
    position: sticky;
    left: 0;
    top: 0;
    z-index: 3;
    padding: 1rem;
    background-color: rgb(223, 247, 255);
  }
  
  .header > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img{
    height: 80px;
  }

  @media screen and (min-width: 1024px) {
    .header > .container {
      padding: 0.5rem 1rem;
    }
  }

  /* ********** Menu ********** */
  .menu-btn {
    border: 1px solid transparent;
    cursor: pointer;
    background-color: transparent;
  }
  
  .menu-btn svg {
    fill: rgb(0, 154, 249);
    width: 36px;
    height: 36px;
  }
  
  .menu {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    background-color: rgb(223, 247, 255);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }
  
  .menu.is-active {
    opacity: 1;
    pointer-events: auto;

  }
  
  .menu a {
    font-family: var(--font);
    padding: 0.5rem;
    display: inline-block;
    text-decoration: none;
    color: rgb(0, 154, 249);
    border-top: 1px rgba(0, 153, 249, 0.15) solid;
  }
  
  .menu a:hover {
    color: black;
    background-color: lightskyblue;
  }
  
  @media screen and (min-width: 768px) {
    .menu-btn {
      display: none;
    }
  
    .menu {
      display: contents;
      position: static;
      flex: 1;
      flex-direction: row;
      opacity: 1;
      pointer-events: auto;
      font-size: 1.3rem;
    }
  
    .menu a {
      position: relative;
      padding: 0 1rem;
      border-top: 0;
      transition: .5s;
      text-align: right;
    }

    .menu a:hover {
      color: black;
      background-color: transparent;
    }

    .menu a:hover::before {
      width: 101%;

    }
  
    .menu a::before {
      content: '';
      position: absolute;
      right: 0;
      top: 100%;
      height: 3px;
      width: 0;
      background-color: black;
      transition: 0.5s;
    }
  }

    /* ********** Hero ********** */

    #hero-banner {
      position: relative;
      width: 100%;
    }

    #hero-banner .container{
      max-width: 100%;
    }
  
    .hero-banner-text {
      position: relative;
      width: 100%;
      color: white;
      text-align: center;
      z-index: 1;
      padding: 1rem;
    }
  
    .hero-banner-img  {
      position: absolute;
      top: 0;
      height: 100%;
      width: 100%;
    }
  
    .hero-banner-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  
    .hero-banner-overlay {
      position: absolute;
      height: -webkit-fill-available; 
      height: -webkit-fill-available; 
      height: -moz-available;         
      top: 0;
      width: 100%;
      background: linear-gradient(355deg, rgba(0, 70, 120, .43) 62.6%, rgba(0, 0, 0, .62) 100%);;
    }
  
    @media screen and (min-width: 768px) {
      .hero-banner-text {
        text-align: left;
        padding: 2rem;
        width: 50%;
      }
    }


  /* ********** About us ********** */

  #about .container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
    background-color: rgb(240, 251, 255);
  }

  .about-text{
    padding: 1rem;
    text-align: center;
  }

  @media screen and (min-width: 1024px) {
    #about .container{
        flex-direction: row;
      }

  }

  /* ********** Values ********** */

  #values .container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: rgb(240, 251, 255);
  }

  .value{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 250px;
  }

  .value > p{
    text-align: center;
  }

  .value > img {
    max-height: 100px;
  }

  @media screen and (min-width: 768px) {
    #values .container{
      grid-template-columns: repeat(3, 1fr);
      justify-items:normal;

    }

    .value{
      max-width: 100%;
    }

  }

  /* ********** Mision ********** */

  #mision .container{
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: rgb(250, 250, 250);
  }

  .mision-primary{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem;
  }

  .mision-secondary{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .mision{
    background-color: rgb(240, 251, 255);
    max-width: 150px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
  }

  .mision > img {
    max-height: 75px;
  }

  @media screen and (min-width: 768px) {
    #mision .container{
      grid-template-columns: 60% 40%;
    }

    .mision{
      max-width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  }

  /* ********** Faqs ********** */

  #faqs .container{
    position: relative;
    padding-top: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(240, 251, 255);
  }

  .faqs-title,
  .faqs-title-60{
    display: flex;
    flex-direction: column;
    padding: 2rem;
  }

  .faqs-title h2{
    text-align: center;
  }

  .accordion-wrapper {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    margin: 1rem;
    align-items: center;

  }
  .accordion {
      border-radius: 10px;
      width: 100%;
      color: white;
      overflow: hidden;
      margin-bottom: 16px;
      box-shadow: 0 4px 10px -1px rgba(0, 153, 249, 0.5);
  }

  input.accordion-toggle{
    position: absolute;
    opacity: 0;
    z-index: -1;
  }

  .accordion-label {
      display: flex;
      -webkit-box-pack: justify;
      justify-content: space-between;
      padding: 16px;
      color: rgba(0, 0, 0, .6);
      background: rgba(0, 154, 249, 0.3);
      font-weight: bold;
      cursor: pointer;
      font-size: 20px;
  }
  .accordion-label:hover {
      background: rgba(4,57,94,1);
      color: white;
  }
  .accordion-label::after {
      content: "\276F";
      width: 16px;
      height: 16px;
      text-align: center;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
  }
  .accordion-content {
      max-height: 0;
      padding: 0 16px;
      color: rgba(4,57,94,1);
      background: white;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
  }
  .accordion-content p{
      margin: 0;
      color: black;
      font-size: 18px;
  }
  input:checked + .accordion-label {
      background: rgba(4,57,94,1);
      color: white;
  }
  input:checked + .accordion-label::after {
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
  }
  input:checked ~ .accordion-content {
      max-height: 100vh;
      padding: 16px;
  }

  @media screen and (min-width: 768px) {
    .accordion {
      width: 75%;
    }

    .faqs-title-60{
      width: 60%;
    }

  }

  /* ********** Footer ********** */
  #footer .container{
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem 0rem;
    background-color: rgb(223, 247, 255);
  }


  /* ********** Modal front********** */

  #modal > .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(223, 247, 255);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    width: 100%;
    overflow-y: auto;
  }

  .modal-header{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .modal-btn{
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }

  .btn-accept{
    background-color: rgba(0, 153, 249, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
  }

  .btn-accept:hover{
    background-color: rgb(0, 154, 249, 0.5);
    opacity: 0.75;
  }

  .btn-reject{
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
  }

  .btn-reject:hover{
    background-color: white;
    opacity: 0.75;
  }

  .btn-custom{
    background-color:white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
  }

  .btn-custom:hover{
    background-color:white;
    opacity: 0.75;
  }
    /* ********** Modal back********** */

  .cookie-option label{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-radius: 5px;
    margin: 0.5rem;
  }

  .cookie-option p{
    padding: 0.5rem;
    margin: 0.5rem;
  }

  @media screen and (min-width: 768px) {
    #modal > .container {
      width: auto;
    }

    .modal-btn{
      flex-direction: row;
    }
  }

  /* ********** Toggle Body ********** */

  .modal-open {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: rgba(0, 0, 0, .5);
    z-index: 2;
  }

  .no-scroll {
    overflow: hidden;
}

  /* ********** Toggle checkbox ********** */
  .toggle-wrapper {
    display: inline-block;
    position: relative;
    border-radius: 3.125em;
    overflow: hidden;
  }
  
  .toggle-checkbox {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  
  .toggle-container {
    display: flex;
    position: relative;
    border-radius: inherit;
    width: 2.5em;
    height: 1.25em;
    background-color: #d1d4dc;
    box-shadow:
      inset .0625em 0 0 #d4d2de,
      inset -.0625em 0 0 #d4d2de,
      inset .125em .25em .125em .25em #b5b5c3;
    mask-image: radial-gradient(#fff, #000);
    transition: all .4s;
    .toggle-wrapper.blue > .toggle-checkbox:checked + & {
      background-color: #0099f9;
      box-shadow:
        inset .0625em 0 0 #0099f9,
        inset -.0625em 0 0 #0099f9,
        inset .125em .25em .125em .25em #0071b7;
    }
  }
  
  .toggle-ball {
    position: relative;
    border-radius: 50%;  
    width: 1.25em;
    height: 1.25em;
    background-image:
      radial-gradient(rgba(#fff, .6), rgba(#fff, 0) 16%),
      radial-gradient(#d2d4dc, #babac2);
    background-position: -.25em -.25em;
    background-size: auto, calc(100% + .25em) calc(100% + .25em);
    background-repeat: no-repeat;
    box-shadow:
      .25em .25em .25em #8d889e,
      inset .0625em .0625em .25em #d1d1d6,
      inset -.0625em -.0625em .25em #8c869e;
    transition: transform .4s, box-shadow .4s;
    
    &::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      border-radius: 50%;
      width: 100%;
      height: 100%;
      background-position: -.25em -.25em;
      background-size: auto, calc(100% + .25em) calc(100% + .25em);
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity .4s;
  
      .toggle-wrapper.blue > .toggle-container > & {
        background-image:
          radial-gradient(rgba(#fff, .6), rgba(#fff, 0) 16%),
          radial-gradient(#419efe, #4ba2ff);
        box-shadow:
          .25em .25em .25em #2634d0,
          inset .0625em .0625em .25em #8dd5ff,
          inset -.0625em -.0625em .25em #1500ac;
      }
    }
    
    .toggle-wrapper > .toggle-checkbox:checked + .toggle-container > &::after {
      opacity: 1;
    }
    
    .toggle-checkbox:checked + .toggle-container > & {
      transform: translateX(100%);
    }
  }

    /* ********** Contact ********** */
    #contact-form{
      position: absolute;
      top: 50%;
      right: 0;
      z-index: 1;
      height: 100%;
      border: 1px solid transparent;
    }
  
    #contact-form .container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-radius: 10px;
      margin: 1rem;
      box-shadow: 0 0 10px #0060be80;
      background: rgb(122,122,122);
      background: radial-gradient(circle, rgba(206,238,250,1) 0%, rgba(255,255,255,1) 100%);

  }
  
    .contact-form {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1rem;
      
    }
  
    .contact-form-second {
      display: flex;
      flex-direction: column;
      gap: .5rem;
    }

    .contact-form-second h3{
      font-weight: normal;
    }
  
    .cabin{
      border-radius: 10px;
      padding: 1rem;
      background-color: rgb(223, 247, 255);
      color: black;
    }
  
    input::placeholder,
    textarea::placeholder {
      color: black;
      font-size: 1rem;
    }
  
    input.button {
      z-index: 2;
      background-color: rgba(0, 96, 190, 1);
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 10px;
      margin: 10px 0px;
      height: 50px;
      cursor: pointer;
      transition: all 0.5s ease;
    }
  
    @media screen and (min-width: 768px) {
      
      #contact-form {
        width: 40%;
      }
  
      .contact-form {
        width: 100%;
        padding: 2rem;
      }
  
      .contact-form-second{
        width: 100%;
      }
  
      .input.button {
        margin: 20px 0px 0px;
      }
      
    }

    @media screen and (max-width: 768px) {

      #contact-form{
      position: relative;
    }
    }



/* Blog */
:root {
  --color: #3c3163;
  --transition-time: 0.5s;
}
.cards-wrapper {
  display: grid;
  justify-content: center;
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 2rem;
  justify-items: center;
  gap: 3rem 1.5rem;
  background-color: rgb(240, 251, 255);
}

.card-grid-space{
  max-width: 350px;

}

.card {
  font-family: 'Heebo';
  background: radial-gradient(circle, rgba(227,227,227,1) 0%, rgba(185,237,255,1) 100%);
  font-size: 1.5em;
  color: #767676;
  border-radius: 1em;
  padding: .5rem 1rem;;
  display: flex;
  align-items: center;
  box-shadow: 20px 18px 20px 2px rgba(0, 154, 249, 0.15);
  transition: all, var(--transition-time);
  position: relative;
  overflow: hidden;
  border: 10px solid #ccc;
  text-decoration: none;
}

.card:hover {
  transform: rotate(0);
}

.card-info {
  display: flex;
  flex-direction: column;
}

.card h2 {
  margin: 0;
  font-size: 1.5em;
  line-height: 1.2em;
}

.card p {
  font-size: 0.75em;
  font-family: 'Open Sans';
  margin-top: 0.5em;
  line-height: 2em;
}

.card .tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem .5rem;
}

.card .tags .tag {
  font-size: 0.75em;
  background: rgba(255,255,255,0.5);
  border-radius: 0.3rem;
  padding: 0 0.5em;
  margin-right: 0.5em;
  line-height: 1.5em;
  transition: all, var(--transition-time);
}

.card:hover .tags .tag {
  background: var(--color);
  color: white;
}

.card .date {
  font-size: 0.75em;
  padding: 1rem;
  line-height: 1em;
  opacity: .8;
  text-align: right;
}

.card:before, .card:after {
  content: '';
  transform: scale(0);
  transform-origin: top left;
  border-radius: 50%;
  position: absolute;
  left: -50%;
  top: -50%;
  z-index: -5;
  transition: all, var(--transition-time);
  transition-timing-function: ease-in-out;
}

.card:before {
  background: #ddd;
  width: 250%;
  height: 250%;
}

.card:after {
  background: white;
  width: 200%;
  height: 200%;
}

.card:hover {
  color: var(--color);
}

.card:hover:before, .card:hover:after {
  transform: scale(1);
}

.card-grid-space .num {
  font-size: 3em;
  margin-bottom: 1.2rem;
  margin-left: 1rem;
}

.info {
  font-size: 1.2em;
  display: flex;
  padding: 1em 3em;
  height: 3em;
}

.info img {
  height: 3em;
  margin-right: 0.5em;
}

.info h2 {
  font-size: 1em;
  font-weight: normal;
}

  /* Articulos blog*/

  .blog {
    background-color: rgb(240, 251, 255);

  }

  #hero-banner-blog .hero-banner-img{
    position: relative;
    height: 400px;
  }
  #hero-banner-blog .hero-banner-overlay {
    position: relative;
    height: 400px;
    margin-bottom: -400px;
    top: -400px;
  }
  
  article{
    margin: 2rem auto;
    max-width: 1000px;
    padding: 2rem;
  }

  article h1{
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  article ul{
    margin: revert;
  }

  /* Breadscrumbs */
.breadcrumb{
  padding: 0rem 2rem 1rem;
  background-color: rgb(240, 251, 255);
}

  .breadcrumb a:link {
    text-decoration: none;
  }
  ol {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .breadcrumb a:focus {
    outline: thin dotted;
  }
  
  .breadcrumb a:link {
    touch-action: manipulation;
  }
  
  .breadcrumb a:active,
  .breadcrumb a:hover {
    outline: 0;
  }
  
  .breadcrumb a:visited:not([rel=external]) {
    color: currentColor;
  }
  .o-inline-svg-icon {
    stroke: currentColor;
  }
  .o-inline-svg-icon--baseline {
    position: relative;
    top: 0.125em;
    width: 1em;
    height: 1em;
  }
  
  .c-navigation-breadcrumbs__directory {
    display: flex;
  }
  .c-navigation-breadcrumbs__link:link {
    color: #007c89;
  }
  .c-navigation-breadcrumbs__link:link:hover {
    background-image: linear-gradient(currentColor, currentColor);
    background-size: auto 1px;
    background-repeat: repeat-x;
    background-position: 0 calc(50% + 1ex);
  }
  @media (max-width: 500px) {
    .c-navigation-breadcrumbs__item:not(:nth-last-child(2)) {
      display: none;
    }
    .c-navigation-breadcrumbs__link:before {
      display: inline-block;
      content: "​";
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23007c89' stroke-width='2' stroke-linecap='round' stroke-linejoin='round%5C'%3E%3Cline x1='19' y1='12' x2='5' y2='12'%3E%3C/line%3E%3Cpolyline points='12 19 5 12 12 5'%3E%3C/polyline%3E%3C/svg%3E") center/16px 16px no-repeat;
      width: 16px;
    }
  }
  @media (min-width: 501px) {
    .c-navigation-breadcrumbs__item:nth-last-child(n+2):after {
      display: inline-block;
      content: "​";
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23767676' stroke-width='2' stroke-linecap='round' stroke-linejoin='round%5C'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E") center/16px 16px no-repeat;
      width: 16px;
      margin: 0 8px;
    }
    .c-navigation-breadcrumbs__link {
      display: block;
      float: left;
    }
  }
  
  .u-visually-hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

/* ********** Localizaciones ********** */
#locations .locations-text {
  text-align: center;
  padding: 1rem;
}

#locations .locations-cards {
  display: flex;
  position: relative;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  padding: 1rem;
}

/* Diseño de las tarjetas */
.location {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border-radius: 20px;
  flex: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.location h3 {
  padding: 1rem;
}

.location p{
  padding: 0rem 1rem;
}

.location img {
  border-radius: 20px 20px 0 0;
  height: 250px;
  width: 100%;
}

  /* Checkbox oculto */
  .location input {
    display: none;
  }

  .location .last-paragraph a{
    text-align: center;
    display: block;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 2rem;
    text-decoration: none;
    color: rgba(0, 0, 0, .6);
    background: rgba(0, 154, 249, 0.3);
    font-weight: bold;
    cursor: pointer;
  }

/* Estilos para móviles: Carrusel horizontal */
@media screen and (max-width: 1000px) {
  #locations .locations-cards {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 1rem;
    scrollbar-width: none;
  }

  #locations .locations-cards::-webkit-scrollbar {
    display: none;
  }

  .location {
    flex: 0 0 80%;
    scroll-snap-align: center;
    max-width: 80%;
    justify-content: flex-start;
  }
  
/* Aplicar el efecto de difuminado solo al último párrafo */
.location .last-paragraph {
  position: relative;
  display: -webkit-box; /* Necesario para usar line-clamp */
  -webkit-box-orient: vertical; /* Orientación vertical */
  -webkit-line-clamp: 5; /* Limita el texto visible a 5 líneas (ajustable) */
  overflow: hidden;
  transition: -webkit-line-clamp 0.3s ease-in-out;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
}



/* Al marcar el checkbox, mostramos todo el texto */
.location input:checked ~ .last-paragraph {
  -webkit-line-clamp: unset; /* Quita la limitación de líneas al marcar el checkbox */
  mask-image: none;
  -webkit-mask-image: none;
}

/* Botón "Ver más" */
.toggle-label {
  display: block;
  text-align: center;
  font-weight: bold;
  color: #007BFF;
  cursor: pointer;
  margin-top: -20px;
  background: white;
  position: relative;
  padding: 10px;
  z-index: 2;
}

/* Texto dentro del label cambia dinámicamente */
.location label::after {
  content: "Ver más";
}

/* Cambia el texto cuando está expandido */
.location input:checked ~ .toggle-label::after {
  content: "Ver menos";
}
}

  /* ********** Whatsapp icon ********** */
  .icon-whatsapp a img{
    position: fixed;
    bottom: 45px;
    right: 10px;
    width: 45px;
    z-index: 3;
  }