:root {
    --colorPrincipal: #00453c;
    --colorPrincipalHover: #002e28;
    --colorSecundario: #b7d1a2;
    --font: 'Montserrat', sans-serif;

    --bs-primary: #00453c;
    --bs-link-color: #00453c;
    --bs-link-hover-color: #002e28;
    --bs-primary-rgb: 0, 69, 60;
    --bs-secondary-rgb: 183, 209, 162;

    --plyr-color-main: #b7d1a2;
}

body {
    font-family: var(--font);
}

a {
    text-decoration: none;
    color: inherit;
}

.btn-primary {
    --bs-btn-bg: var(--colorPrincipal);
    --bs-btn-border-color: var(--colorPrincipal);
    --bs-btn-hover-bg: var(--colorPrincipalHover);
    --bs-btn-hover-border-color: var(--colorPrincipalHover);
    --bs-btn-active-bg: var(--colorPrincipalHover);
    --bs-btn-active-border-color: var(--colorPrincipalHover);
    --bs-btn-disabled-bg: var(--colorPrincipal);
    --bs-btn-disabled-border-color: var(--colorPrincipal);
}

.text-shadow {
    text-shadow: 4px 4px 10px black;
}

.obj-fit-cover{
    object-fit: cover;
}

.obj-fit-contain{
    object-fit: contain;
}

.text-dark-bourbon {
    color: var(--colorPrincipalHover);
}

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

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: var(--colorPrincipal);
}

.nav-pills {
    background-color: #eee;
    border-radius: 30px;
    padding: 10px;
}

.nav-pills li.nav-item {
    flex: 1;
}

.nav-pills .nav-link {
    border-radius: 30px;
    width: 100%;
}

.fill-primary * {
    fill: var(--colorPrincipal);
}

/* HEADER */
.navbar {
    background-color: var(--colorPrincipal);
}

header .nav-link {
    flex: 1 1 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgb(255 255 255 / 85%);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-tabs .nav-link {
    flex: 1 1 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: #eee;
}

/* ////////////Banner Inicio////////// */

.banner-inicio {
    width: 100%;
    height: 100vh;
}

.container-banner-inicio {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.container-logo-inicio {
    position: absolute;
    left: 50%;
    top: 35px;
    transform: translateX(-50%);
}

.container-img-banner-inicio {
    height: 100vh;
    position: relative;
}

.container-img-banner-inicio:before {
    content: '';
    position: absolute;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.2752451322325805) 100%);
    width: 100%;
    height: 100%;
    opacity: 0.5;
    transition: all ease .5s;
    pointer-events: none;
}

.container-img-banner-inicio:hover:before {
    opacity: 0.85;
}

.item-banner-inicio {
    width: 50%;
    height: 100vh;
    position: relative;
}

.item-banner-inicio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
    text-align: center;
    transition: all .6s ease-out;
    pointer-events: none;
}

.banner-secundario {
    position: relative;
}

.banner-secundario::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: block;
    width: 100%;
    height: 100%;
}

.container-text-banner-secundario {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 50px;
    z-index: 9999;
}

.container-text-banner-secundario .title-banner-secundario {
    color: #eee;
    font-size: 5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.title-banner-inicio {
    font-size: 2.5rem;
    font-size: clamp(1.9rem, 3.5vw, 3.5rem);
    font-weight: 700;
    color: #eee;
    text-align: center;
    margin-bottom: 1.6rem;
    text-transform: uppercase;
    text-shadow: 3px 3px 4px black;
}

.item-banner-inicio:hover .container-text {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    transition: all .6s ease-out;
}

.scroll-down {
    bottom: 5px;
    -webkit-animation: fadeMoveDown 4s ease-in-out infinite;
    -moz-animation: fadeMoveDown 4s ease-in-out infinite;
    animation: fadeMoveDown 4s ease-in-out infinite;
}

/*animated scroll arrow animation*/
@-webkit-keyframes fadeMoveDown {
    0% {
        -webkit-transform: translate(0, -10px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0, 10px);
        opacity: 0;
    }
}

@-moz-keyframes fadeMoveDown {
    0% {
        -moz-transform: translate(0, -10px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -moz-transform: translate(0, 10px);
        opacity: 0;
    }
}

@keyframes fadeMoveDown {
    0% {
        transform: translate(0, -10px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 10px);
        opacity: 0;
    }
}

.footer-inicio{
    position: absolute;
    bottom: 20px;
}

@media (max-width:1024px) {
    .container-text {
        opacity: 1;
        visibility: visible;
    }
}

@media screen and (max-width:580px) {
    .container-banner-inicio {
        flex-direction: column;
    }

    .item-banner-inicio {
        width: 100%;
        height: 50vh;
    }

    .container-img-banner-inicio {
        height: 50vh;
    }

    .container-logo-inicio.mobile-middle {
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .footer-inicio {
        position: static;
        background-color: #001913;
        background-image: url(../img/borboleta-ptt.png);
        background-size: auto;
        background-blend-mode: color-dodge;
        background-position: center;
    }
}


/* ////////////Fin Banner Inicio////////// */

.interactive-map {
    border: 1px solid #dee2e6;
    border-top: 0;
    background-color: #fff;
}
.interactive-map img {
    opacity: 0.62;
  }
/* hotspot */

.tt-hotspot {
    position: absolute;
    font-size: 14px;
    cursor: pointer;
    width: 33px;
    height: 33px;
}

.tt-hotspot .tt-btn {
    width: 33px;
    height: 33px;
    padding: 4px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: rgb(0 69 60 / 30%);
    border-radius: 50%;
    transition: padding 0.2s linear;
}

.tt-hotspot .tt-btn:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    top: attr(data-style-top);
    background-color: var(--colorPrincipal);
    border-radius: 50%;
    transition: background-color 0.2s linear;
}

.tt-hotspot .tt-btn:before {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: stretch;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    font-family: "bootstrap-icons";
    font-size: 14px;
    content: "\f4fe";
    color: #fff;
    line-height: 1;
    font-weight: normal;
    width: 33px;
    height: 33px;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.2s linear;
}

.tt-hotspot .tt-img a {
    display: block;
}

.tt-hotspot .tt-content-parent {
    display: none;
}

.tt-hotspot .tt-description .new-price {
    margin-right: 7px;
}

.tt-hotspot .tt-description .old-price {
    text-decoration: line-through;
}

@media (max-width: 789px) {
    .tt-hotspot .tt-hotspot-content {
        position: relative;
    }

    .tt-hotspot .tt-hotspot-content .tt-title {
        padding-right: 16px;
    }
}

@media (max-width: 575px) {
    .tt-hotspot .tt-hotspot-content .tt-title {
        margin-top: -3px;
        line-height: 17px;
    }

    .tt-hotspot .tt-hotspot-content .tt-description [class^="btn"] {
        margin-top: 10px;
    }
}

.tt-hotspot.active .tt-btn {
    padding: 9px;
}

.tt-hotspot.active .tt-btn:after {
    background-color: #191919;
}

.tt-hotspot.active .tt-btn:before {
    -webkit-transform: scale(0);
    transform: scale(0);
}

@media (max-width: 789px) {
    .tt-hotspot.active {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-content: center;
        align-items: center;
        z-index: 7;
    }

    .tt-hotspot.active .tt-btn {
        z-index: 0;
    }

    .tt-hotspot.active:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        background: rgba(255, 255, 255, 0.8);
    }

    .tt-hotspot.active .tt-hotspot-content {
        position: relative;
        z-index: 8;
        left: 0;
    }

    .tt-hotspot.active .tt-hotspot-content .tt-img {
        width: 28%;
        min-width: 28%;
    }
}

body:not(.touch-device) .tt-hotspot .tt-btn:hover:after {
    background-color: var(--colorPrincipalHover);
}

.tt-hotspot-content {
    background-color: #ffffff;
    z-index: -1;
    padding: 20px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: flex-start;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
}

.tt-hotspot-content img {
    max-width: 100%;
    height: auto;
}

.tt-hotspot-content .tt-btn-close {
    position: absolute;
    display: block;
    right: 14px;
    top: 8px;
    font-family: "bootstrap-icons";
    font-size: 14px;
    color: #191919;
    z-index: 1;
    padding: 5px;
    transition: color 0.2s linear;
}

.tt-hotspot-content .tt-btn-close:before {
    content: "\F62A";
}

.tt-hotspot-content .tt-btn-close:hover {
    color: var(--colorSecundario);
}

.tt-hotspot-content .tt-img {
    width: 60px;
    min-width: 60px;
}

.tt-hotspot-content .tt-img+.tt-description {
    margin-left: 19px;
}

.tt-hotspot-content .tt-description {
    text-align: left;
    font-size: 12px;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tt-hotspot-content .tt-title {
    font-size: 14px;
    line-height: normal;
    font-weight: 600;
    text-transform: uppercase;
    color: #191919;
    margin-top: -5px;
    padding-right: 12px;
}

.tt-hotspot-content .tt-title a {
    color: #191919;
}

.tt-hotspot-content .tt-title a:hover {
    color: var(--colorSecundario);
}

.tt-hotspot-content .tt-description [class^="btn"] {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 22px;
    width: 100%;
}

.tt-hotspot-content .tt-description>*:nth-child(1):not(.tt-title) {
    margin-top: 0;
}

@media (min-width: 790px) {
    .tt-hotspot-content {
        width: 270px;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 798px) {
    .tt-hotspot-content {
        max-width: 300px;
    }
}

.tt-lookbook-popup {
    position: absolute;
    z-index: 21;
    display: none;
    opacity: 0;
}

/* detalles */
.icon-list {
    display: flex;
    row-gap: 22px;
}

.icon-item {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.swiper-thumbs .swiper-slide {
    cursor: pointer;
    transition: opacity ease .2s;
}

.swiper-thumbs .swiper-slide:not(.swiper-slide-thumb-active) {
    opacity: 0.5;
}

.plyr {
    /* border-radius: 2rem; */
    height: 80vh;
    width: 100%;
}

.btn-circle.ripple::after,
.btn-circle.ripple::before,
.btn-video::after,
.btn-video::before,
.plyr__control--overlaid::after,
.plyr__control--overlaid::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background: var(--colorSecundario);
    opacity: .8;
    -webkit-animation: ripple-1 2s infinite ease-in-out;
    animation: ripple-1 2s infinite ease-in-out;
    z-index: -1;
}

.btn-circle.ripple::after,
.btn-video::after,
.plyr__control--overlaid::after {
    opacity: .6;
    -webkit-animation: ripple-2 2s infinite ease-in-out;
    animation: ripple-2 2s infinite ease-in-out;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

@-webkit-keyframes ripple-1 {
    0% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(1.5);
        opacity: 0
    }
}

@keyframes ripple-1 {
    0% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(1.5);
        opacity: 0
    }
}

@-webkit-keyframes ripple-2 {
    0% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(1.7);
        opacity: 0
    }
}

@keyframes ripple-2 {
    0% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(1.7);
        opacity: 0
    }
}

.plyr__poster {
    background-size: cover;
}

.video-background {
    height: 89vh;
}

.page-header-bg {
    height: 92vh;
}

.video-foreground {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-aspect-ratio: 16 / 9) {

    .video-foreground {
        height: 300%;
        top: -100%;
    }
}

@media (max-aspect-ratio: 16 / 9) {

    .video-foreground {
        left: -100%;
        width: 300%;
    }
}

.page-header-bg:after,
.video-background:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.video-bg-content,
.page-header-content {
    position: absolute;
    bottom: 36px;
    width: 100%;
    z-index: 2;
    color: #fff;
}

.page-header-bg img {
    object-fit: cover;
}

.swiper-principal img,
.swiper-principal video,
.video-wrapper {
    aspect-ratio: 320/213;
    object-fit: cover;
}

.video-poster-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.btn-video {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
    background-color: var(--colorSecundario);
    border-radius: 50%;
    transition: all .35s ease;
    color: #fff;
    width: 45px;
    height: 45px;
    box-shadow: 0 0 0 1rem rgb(255 255 255 / 20%);
}

.swiper.swiper-thumbs img {
    aspect-ratio: 3/2;
    object-fit: cover;
}

.title-icon {
    padding: 8px;
}

.item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.rooms1 .item img {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.item .con {
    padding: 20px;
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-align: left;
    z-index: 20;
    height: auto;
    box-sizing: border-box;
    background: -moz-linear-gradient(top, transparent 0, rgba(0, 0, 0, .1) 2%, rgba(0, 0, 0, .75) 90%);
    background: -webkit-linear-gradient(top, transparent 0, rgba(0, 0, 0, .01) 2%, rgba(0, 0, 0, .75) 90%);
    background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .01) 2%, rgba(0, 0, 0, .75) 90%);
}

.item:hover .con {
    bottom: 0;
}

.item .category {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    writing-mode: vertical-rl;
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    text-orientation: mixed;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 3px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 3px;
    line-height: 1.5em;
}

.item .category a {
    color: #fff;
}

.item .con h6 {
    position: relative;
    color: #fff;
    font-size: 15px;
    display: inline;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.item .con h5 {
    position: relative;
    color: #fff;
    font-size: 27px;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 5px;
}

.rooms1 .item .con h5,
.rooms1 .item .con h5 a {
    position: relative;
    color: #fff;
    font-size: 27px;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 5px;
}

.item .line {
    text-align: center;
    height: 1px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    margin: auto 0 30px;
}

.item:hover .line {
    width: 100%;
    transition-property: all;
    transition-duration: 0.8s;
    transition-timing-function: ease-in-out;
}

.facilities ul {
    margin: 0;
    padding: 0;
    list-style: none;
    column-gap: 8px;
    display: inline-flex;
}

.facilities ul li {
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2em;
    float: left;
    display: flex;
    align-items: center;
    column-gap: 7px;
}

.item .con i,
.item .con ion-icon {
    color: #fff;
    font-size: 18px;
}

.item .con .permalink {
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    height: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    display: inline;
}

.item .con .permalink a {
    color: #fff;
    text-align: right;
    display: flex;
    align-items: center;
    column-gap: 6px;
}

.rooms1 .item .con .permalink i {
    font-size: 10px;
    text-align: right;
}

.item img {
    aspect-ratio: 3/4;
    object-fit: cover;
}

.bg-icon {
    background: var(--colorSecundario);
    aspect-ratio: 1;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.room-info-content {
    font-size: 14px;
}

@media screen and (max-width:1024px) {
    .item .con {
        bottom: 0;
    }
}

#mainCarousel {
    margin: 0 auto 1rem auto;

    --carousel-button-color: #170724;
    --carousel-button-bg: #fff;
    --carousel-button-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%),
      0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%);

    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    --carousel-button-svg-stroke-width: 2.5;
  }

  #mainCarousel .carousel__slide {
    width: 100%;
    padding: 0;
  }

  #mainCarousel .carousel__button.is-prev {
    left: -1.5rem;
  }

  #mainCarousel .carousel__button.is-next {
    right: -1.5rem;
  }

  #mainCarousel .carousel__button:focus {
    outline: none;
    box-shadow: 0 0 0 4px var(--colorSecundario);
  }

  #mainCarousel .carousel__slide img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
  }

  #thumbCarousel .carousel__slide {
    opacity: 0.5;
    padding: 0;
    margin: 0.25rem;
    width: 96px;
    height: 64px;
  }

  #thumbCarousel .carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }

  #thumbCarousel .carousel__slide.is-nav-selected {
    opacity: 1;
  }

  .habitaciones-swiper img {
    aspect-ratio: 1;
    object-fit: cover;
  }

  .habitaciones-swiper p {
    font-size: 13px;
    line-height: normal;
  }

/* sustentabilidad */

.swiper.fullCarousel img {
    max-height: 700px;
}

.grid-item img{
    border: 6px solid #000;
    border-radius: 7px;
}

/* footer */
footer ion-icon {
    font-size: 30px;
}

::selection {
    background-color: var(--colorSecundario);
}
/* Eventos */
.banner-eventos{
    position: relative;
}
.banner-eventos::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5));
}
.img-eventos{
    width: 100%;
    height: 40vh;
    object-fit: cover;
}
.text-banner-eventos{
    position: absolute;
    bottom: 100px;
    left: 100px;
    z-index: 1;
}
.title-eventos{
    font-size: 4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}

.seccion-eventos{
    padding-top: 4rem;padding-bottom: 6rem;
    background: #fff;
}
.container-eventos{
    max-width: calc(100% - 200px);
    margin: 0 auto;
}
.grid-eventos{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(380px, 100%), 1fr));
    gap: 1.6rem;
}
.row-eventos .col-md-6,
.row-eventos .col-lg-4{
    padding-left: 0;
    padding-right: 0;
}
.card-eventos{
    display: block;
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--bs-primary);
}
.card-img-eventos{
    min-height: 240px;
    border-radius: 4px;
    overflow: hidden;
}

.card-text-eventos{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.4rem;
}
.title-card-eventos{
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    color: rgb(0, 69, 60, 1);
    margin-bottom: 0;
}
.text-card-evantos{
    font-size: 1rem;
    letter-spacing: 0.02rem;
    line-height: 1.4;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.card-actions-eventos{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.btn-eventos{
    font-size: .8rem;
    letter-spacing: 0.02rem;
    margin-bottom: 0;
    background: rgb(0, 69, 60, .2);
    padding: .5rem 1rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    column-gap: .5rem;
    transition: all .3s;
}
.btn-eventos:hover{
    background: rgb(0, 69, 60, .4);
}
.btn-eventos img{
    transition: all 1s;
}
.btn-eventos:hover img{
    transform: translateX(5px);
    transition: all .5s;
}
.date-card-eventos{
    display: inline-block;
    font-size: .8rem;
    letter-spacing: 0.02rem;
}
.img-card{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 2s;
}
.card-eventos:hover .img-card{
    transform: scale(1.1);
    transition: all 1s;
}

/* Seccion Post */
.seccion-breadcrumb{
    background: #fff;
    border-bottom: 1px solid #ddd;
}
.breadcrumb{
    padding: .5rem 0;
    margin-bottom: 0;
}
.breadcrumb-item{
    font-size: .8rem;
    opacity: .9;
    color: #333;
}
.breadcrumb-item.active{
    color: var(--colorPrincipal);
    opacity: 1;
}

.seccion-post{
    background: #fff;
    padding-top: 4rem;
    padding-bottom: 6rem;
}
.grid-post{
    display: grid;
    grid-template-columns: 1fr .3fr;
    gap: 1rem;
}
.list-redes{
    display: flex;
    align-items: center;
    column-gap: 1rem;
    list-style: none;
    padding-left: 0;
    border-top: 1px solid var(--colorPrincipal);
    border-bottom: 1px solid var(--colorPrincipal);
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    margin-bottom: 2rem;
}
.list-redes li{
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
}
.list-redes li img{
    width: 20px;
    height: auto;
    object-fit: contain;
}
.container-post{
    padding-right: 2rem;
}
.date-post{
    display: inline-block;
    font-size: .8rem;
    letter-spacing: 0.02rem;
    margin-bottom: 0;
    background: rgb(0, 69, 60, .2);
    padding: .5rem 1rem;
    border-radius: 30px;
}
.title-post{
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--colorPrincipal);
    margin-top: 1rem;
    margin-bottom: .5rem;
}
.subtitle-post{
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--colorPrincipal);
    margin-bottom: 1.2rem;
}
.intro-post{
    font-size: 1rem;
    letter-spacing: 0.02rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.img-post{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    aspect-ratio: 2/1;
    margin-bottom: 2rem;
}
.aside-post{
    position: sticky;
    top: 60px;
    padding: 1.6rem;
    background: rgb(0, 69, 60, .2);
    border-radius: 4px;
}
.title-post-aside{
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--colorPrincipal) ;
    border-bottom: 1px solid var(--colorPrincipal);
    padding-bottom: 1rem;
    margin-bottom: 1.6rem;
}
.text-post{
    font-size: 1rem;
    letter-spacing: 0.04rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}
.list-post{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    column-gap: 1.2rem;
    row-gap: 1rem;
    align-items: flex-start;
}
.list-post .card-eventos{
    display: flex;
    column-gap: 1rem;
    align-items: flex-start;
    padding-bottom: 1rem;
}
.list-post .card-img-eventos{
    width: 120px;
    min-height: unset;
    aspect-ratio: 1/1;
    border-radius: 4px;
}
.list-post .card-text-eventos{
    margin-top: 0;
    gap: .5rem;
}
.list-post .title-card-eventos{
    font-size: 1rem;
}
.list-post .text-card-evantos{
    font-size: .9rem;
}
.list-post .card-actions-eventos{
    display: none;
}


/* Galeria */
.grid-galeria{
    padding-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 8px;
    padding-right: 2rem;
}
.img-galeria{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 4px;
}
/* Fin Galeria */

/* Fin Seccion Post */

@media screen and (max-width:1200px) {
    .container-eventos{
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .row-eventos{
        row-gap: 3rem;
    }
    .img-eventos{
        height: 30vh;
    }
    .text-banner-eventos{
        left: 2rem;
        bottom: 2rem;
    }
    .title-eventos{
        font-size: 3.2rem;
    }
    .grid-post{
        grid-template-columns: 1fr;
        row-gap: 6rem;
    }
    .container-post{
        padding-right: 0;
    }
    .grid-galeria{
        padding-right: 0;
    }
}
@media screen and (max-width:768px) {
    .grid-galeria{
        grid-template-columns: 1fr 1fr;
    }
}
/* Fin Eventos */
