/** Extra large devices (large desktops) */
body{
    font-family: "robotoregular";
    font-size: 1rem;
    color: rgba(29,29,27,1);
    line-height: 1rem;
}
a {
    font-family:'robotoregular';
    color: rgba(29,29,27,0.9);
    text-decoration: none;
}
a:hover {
    opacity: 0.8;
    text-decoration: none;
}
.max-width {
  max-width:1920px;width:100%;margin:0 auto;padding:.5rem;padding-top:0;
}
.text-robotoregular {
  font-family:'robotoregular';
}
.text-robotomedium {
  font-family:'robotomedium';
}
.text-blairmditc-ttmedium {
  font-family:'blairmditc_ttmedium';
}
.text-p5rem {
  font-size: .5rem;
}
.text-p6rem {
  font-size: .6rem;
}
.text-p7rem {
  font-size: .7rem;
}
.text-p8rem {
  font-size: .8rem;
}
.text-p9rem {
  font-size: .9rem;
}
.text-1rem {
  font-size: 1rem;
}
.text-1p1rem {
  font-size: 1.1rem;
}
.text-1p2rem {
  font-size: 1.2rem;
}
.text-1p3rem {
  font-size: 1.3rem;
}
.text-1p4rem {
  font-size: 1.4rem;
}
.text-1p5rem {
  font-size: 1.5rem;
}
.text-1p6rem {
  font-size: 1.6rem;
}
.text-1p8rem {
  font-size: 1.8rem;
}
.text-2rem {
  font-size: 2rem;
}
.text-2p5rem {
  font-size: 2.5rem;
}
.text-3rem {
  font-size: 3rem;
}
.text-lh-p5rem {
  line-height: .5rem;
}
.text-lh-p6rem {
  line-height: .6rem;
}
.text-lh-p7rem {
  line-height: .7rem;
}
.text-lh-p8rem {
  line-height: .8rem;
}
.text-lh-p9rem {
  line-height: .9rem;
}
.text-lh-1rem {
  line-height: 1rem;
}
.text-lh-1p1rem {
  line-height: 1.1rem;
}
.text-lh-1p2rem {
  line-height: 1.2rem;
}
.text-lh-1p3rem {
  line-height: 1.3rem;
}
.text-lh-1p4rem {
  line-height: 1.4rem;
}
.text-lh-1p5rem {
  line-height: 1.5rem;
}
.text-lh-1p6rem {
  line-height: 1.6rem;
}
.text-lh-1p7rem {
  line-height: 1.7rem;
}
.text-lh-1p8rem {
  line-height: 1.8rem;
}
.text-lh-2rem {
  line-height: 2rem;
}
.text-lh-2p5rem {
  line-height: 2.5rem;
}
.text-lh-3rem {
  line-height: 3rem;
}
.text-gris-oscuro {
  color: #1D1D1B;
}
.text-gris {
  color: #86817C;
}
.text-gris-claro {
  color: #E6E1DB;
}
.bg-gris {
  background-color: #DFDAD2;
}
.bg-white {
  background-color: #FFFFFF;
}
.lang-menu a:hover {
    color: rgba(29,29,27,0.8);
    text-decoration: none;
}
#carousel1 .carousel-thumbnails, #carousel2 .carousel-thumbnails, #carousel3 .carousel-thumbnails, #carousel4 .carousel-thumbnails {
    display: flex;
    gap: 8px;
    justify-content: center;
}
#carousel1 .carousel-thumbnails img, #carousel2 .carousel-thumbnails img, #carousel3 .carousel-thumbnails img, #carousel4 .carousel-thumbnails img  {
    width: calc(100% / 3);
    aspect-ratio: 16 / 9;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.8;
    border-radius: 0;
    transition: opacity .2s, transform .2s;
}
#carousel1 .carousel-thumbnails img:hover, #carousel2 .carousel-thumbnails img:hover, #carousel3 .carousel-thumbnails img:hover, #carousel4 .carousel-thumbnails img:hover {
    opacity: 1;
    transform: scale(1.03);
}
#carousel1 .carousel-thumbnails img.active-thumb, #carousel2 .carousel-thumbnails img.active-thumb, #carousel3 .carousel-thumbnails img.active-thumb, #carousel4 .carousel-thumbnails img.active-thumb {
    display: none !important;
}
#carousel5-thumbs.thumb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin: 20px auto 0;
}
#carousel5-thumbs.thumb-grid img {
    width: 100%;
    aspect-ratio: 16 / 9; /* Mantiene proporción ancho/alto */
    object-fit: cover;
    border-radius: 0;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity .2s, transform .2s;
}
#carousel5-thumbs.thumb-grid img:hover {
    opacity: 1;
    transform: scale(1.03);
}
.ls-xs { letter-spacing: 0.05rem; }
.ls-sm { letter-spacing: 0.1rem; }
.ls-md { letter-spacing: 0.15rem; }
.ls-lg { letter-spacing: 0.25rem; }
.ls-xl { letter-spacing: 0.4rem; }
:root {
    --thumb-gap: 8px;      
    --thumb-count: 3;     
}
.carousel-thumbnails {
    width: 100%;
    display: flex;
    gap: var(--thumb-gap);
    justify-content: center;
    box-sizing: border-box;
    padding: 0;
    margin: 0 auto;
}
.carousel-thumbnails img {
    width: calc((100% - ((var(--thumb-count) - 1) * var(--thumb-gap))) / var(--thumb-count));
    flex: 0 0 calc((100% - ((var(--thumb-count) - 1) * var(--thumb-gap))) / var(--thumb-count));
    max-width: calc((100% - ((var(--thumb-count) - 1) * var(--thumb-gap))) / var(--thumb-count));
    
    aspect-ratio: 16/9;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.8;
    border-radius: 0;
    transition: opacity .2s, transform .2s;
    box-sizing: border-box;
}
.carousel-thumbnails img:hover {
    opacity: 1;
    transform: scale(1.03);
}
.carousel-thumbnails img.active-thumb {
    outline: 3px solid #fff;
    outline-offset: -3px;
    opacity: 1;
    transform: scale(1.02);
}
.video-wrapper {
    overflow: hidden;
}

.video-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-controls {
    opacity: 1;
}

.video-btn {
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease, transform 0.2s ease;
}

.video-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
}
/** Medium devices (tablets, less than 992px) */
@media (max-width: 992px) {
}
/** Small devices (landscape phones, less than 768px) */
@media (max-width: 768px) {  
  .max-width {
    padding:0;
  }
  .text-lh-2p5rem {
    line-height: 1.8rem;
  }
}
/** Extra small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
}
