:root {
    --brand-red: #e4002b;
}

/*
 * HEADER
*/
@media screen and (max-width: 1110px) {
    .header__hamburguer {
        order: 2;
    }
}

@media screen and (max-width: 590px) {
    .header .flex {
        flex-flow: row nowrap;
    }

    .header .flex--gap-40 {
        gap: 5px;
    }

    .header .buttons__item a {
        padding: 8px;
        font-size: 10px;
        height: 30px;
    }
}


/*
 * BUTTONS
*/
.button-wrap--left {
    text-align: left;
}

.button-wrap--center {
    text-align: center;
}

.button-wrap--right {
    text-align: right;
}

.button {
    display: inline-block;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.button--primary {
    background-color: transparent;
    color: #000;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: solid 1px #000;
}

.button--red {
    background: #e31e24;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.button--primary:hover {
    background-color: #000;
    color: white;
}

.button--red:hover {
    background: #c01a1f;
}

@media screen and (max-width: 960px) {

    .button--primary,
    .button--red {
        padding: 5px 12px;
        font-weight: 500;
        font-size: 15px;
        height: 40px;
    }
}


/*
 * BLOG POSTS COMPONENT
*/
.blog-posts {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.blog-posts__title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 50px 0;
}

.blog-posts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
}

.blog-post-card__image {
    display: block;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-card__image img {
    transform: scale(1.05);
}

.blog-post-card__content {
    padding: 25px;
}

.blog-post-card__date {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-card__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.blog-post-card__title a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-card__title a:hover {
    color: #D20909;
}

.blog-post-card__excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.blog-post-card__excerpt p {
    margin: 0;
}

.blog-post-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D20909;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease;
}

.blog-post-card__link:hover {
    gap: 12px;
}

.blog-post-card__link svg {
    transition: transform 0.3s ease;
}

.blog-post-card__link:hover svg {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .blog-posts__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-posts {
        padding: 40px 20px;
    }

    .blog-posts__title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .blog-posts__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-post-card__image {
        height: 200px;
    }

    .blog-post-card__title {
        font-size: 20px;
    }
}



/*
 * TIMELINE SLIDER
*/

.timeline-slider-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    padding: 60px 20px;
    overflow: hidden;
}

.timeline-slider-navigation-left {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.timeline-pagination {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.timeline-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #444;
    opacity: 1;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.timeline-pagination .swiper-pagination-bullet-active {
    background: #D20909;
    border-color: #fff;
}

.timeline-slider-swiper {
    /*  max-width: 1200px; */
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.timeline-slider-swiper .swiper-wrapper {
    align-items: flex-start;
}

.timeline-line {
    position: absolute;
    bottom: 80px;
    left: 100px;
    right: 100px;
    height: 2px;
    background: white;
    z-index: 1;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #D20909;
    width: 0;
    transition: width 0.3s ease;
}

.timeline-slide {
    position: relative;
    padding-bottom: 100px;
}

.timeline-slide__content {
    padding: 30px;
    border-radius: 8px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-slide__title {
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.timeline-slide__description {
    font-size: 14px;
    line-height: 1.6;
    color: #D9D9D9;
    margin: 0;
}

.timeline-slide__image {
    margin-top: auto;
    border-radius: 6px;
    overflow: hidden;
    max-width: 200px;
}

.timeline-slide__image img {
    width: 100%;
    height: auto;
    display: block;
}

.timeline-slide__year {
    /* position: absolute;
    bottom: 35px;
    left: 100px;
    font-size: 18px;
    font-weight: 700;
    color: #fff; */
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.timeline-slider-navigation-right {
    position: absolute;
    right: 40px;
    bottom: 60px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.timeline-button-prev,
.timeline-button-next {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.timeline-button-prev::after,
.timeline-button-next::after {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transition: border-color 0.3s;
}

.timeline-button-prev::after {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.timeline-button-next::after {
    transform: rotate(45deg);
    margin-right: 4px;
}

.timeline-button-prev:hover,
.timeline-button-next:hover {
    background: #D20909;
    border-color: #D20909;
}

.timeline-button-prev.swiper-button-disabled,
.timeline-button-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #666;
}

.timeline-button-prev.swiper-button-disabled::after,
.timeline-button-next.swiper-button-disabled::after {
    border-color: #666;
}

@media (max-width: 1024px) {
    .timeline-slider-swiper {
        padding: 0 80px;
    }

    .timeline-line {
        left: 80px;
        right: 80px;
    }
}

@media (max-width: 768px) {
    .timeline-slider-wrapper {
        padding: 40px 20px;
    }

    .timeline-slider-navigation-left {
        left: 20px;
        bottom: 20px;
        top: auto;
        transform: none;
    }

    .timeline-pagination {
        flex-direction: row;
    }

    .timeline-slider-swiper {
        padding: 0 20px;
    }

    .timeline-line {
        left: 20px;
        right: 20px;
        bottom: 100px;
    }

    .timeline-slide {
        padding-bottom: 120px;
    }

    .timeline-slide__content {
        min-height: 250px;
        padding: 20px;
    }

    .timeline-slider-navigation-right {
        right: 20px;
        bottom: 20px;
    }

    .timeline-button-prev,
    .timeline-button-next {
        width: 40px;
        height: 40px;
    }
}













.timeline-slider-wrapper .swiper-wrapper {
    padding-top: 60px;
    margin-bottom: 200px;
}

.swiper-slide .timeline-slide {
    padding-bottom: 0;
    position: relative;
}

.swiper-slide .timeline-slide:after {
    position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 100%);
    width: 1px;
    height: 120px;
    background-color: white;
}

.swiper-slide:nth-child(odd) .timeline-slide {
    top: -60px;
}

.swiper-slide:nth-child(odd) .timeline-slide:after {
    height: 180px;
}

.timeline-slide__content-text {
    max-height: 120px;
    overflow-y: scroll;
}

.timeline-slide__content-text::-webkit-scrollbar {
    width: 6px;
}

.timeline-slide__content-text::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.timeline-slide__content-text::-webkit-scrollbar-thumb {
    background: var(--red-color);
    border-radius: 10px;
}

.timeline-slide__content-text::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.swiper-slide .timeline-slide .timeline-slide__image {
    max-width: 100%;
    height: 200px;
}

.swiper-slide .timeline-slide .timeline-slide__image img {
    object-fit: cover;
}


@media screen and (max-width: 768px) {
    .swiper-slide .timeline-slide:after {
        height: 100px;
    }

    .swiper-slide:nth-child(odd) .timeline-slide:after {
        height: 160px;
    }
}



/*
 * ICON INFO MODULE
*/
.icon-info-module {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 0;
}

.icon-info-module__container {
    display: grid;
    gap: 20px;
}

/* Por defecto 5 columnas */
.icon-info-module__container--items-5 {
    grid-template-columns: repeat(5, 1fr);
}

/* 4 items = 4 columnas */
.icon-info-module__container--items-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* 3 items = 3 columnas */
.icon-info-module__container--items-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* 2 items = 2 columnas */
.icon-info-module__container--items-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* 1 item = 1 columna */
.icon-info-module__container--items-1 {
    grid-template-columns: 1fr;
}

.icon-info-module__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.icon-info-module__icon {
    max-width: 120px;
    height: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.icon-info-module__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon-info-module__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #000;
    line-height: 1;
    padding-bottom: 4px;
}

.icon-info-module__subtitle {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: #666;
    padding-top: 6px;
}

@media (max-width: 1200px) {

    .icon-info-module__container--items-5,
    .icon-info-module__container--items-4 {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .icon-info-module {
        padding: 40px 20px;
    }

    .icon-info-module__container--items-5,
    .icon-info-module__container--items-4,
    .icon-info-module__container--items-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .icon-info-module__title {
        font-size: 16px;
    }

    .icon-info-module__subtitle {
        font-size: 13px;
    }
}

@media (max-width: 480px) {

    .icon-info-module__container--items-5,
    .icon-info-module__container--items-4,
    .icon-info-module__container--items-3,
    .icon-info-module__container--items-2 {
        grid-template-columns: 1fr;
    }

    .icon-info-module__icon {
        height: auto;
    }
}



/*
 * BLOQUE INFORMACIÓN PRÁCTICA
*/
.disfruta--visita-section h2,
.disfruta--visita-section h3 {
    text-transform: uppercase;
}

.disfruta--visita-section h2 {
    line-height: 1.1
}

.disfruta--visita-section h2 strong {
    font-weight: 800;

}

.text-list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.text-list__item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.text-list__item--link {
    cursor: pointer;
}

.text-list__text {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.text-list__item--link .text-list__text::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.text-list__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #D20909;
    color: #fff;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.text-list__icon svg {
    width: 20px;
    height: 20px;
}

.text-list__item--link:hover .text-list__text,
.text-list__item--link.active .text-list__text {
    transform: scale(1.05);
}

.text-list__item--link:hover .text-list__text::after,
.text-list__item--link.active .text-list__text::after {
    background-color: #D20909;
}

.text-list__item--link:hover .text-list__icon,
.text-list__item--link.active .text-list__icon {
    opacity: 1;
    transform: translateX(0);
}

.visita--icon-section {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.disfruta--visita-section img {
    margin: 0 !important;
}

.disfruta--visita-section li {
    margin: 0;
}

.disfruta--visita-section .background__wrapper {
    z-index: 0;
    right: 0;
    left: inherit;
}

.disfruta--visita-section .tidy--fit-cover {
    display: flex;
    justify-content: flex-end;
}

.disfruta--visita-section .tidy--fit-cover img {
    max-width: 500px;
    object-fit: contain;
    object-position: bottom right;
}

@media (max-width: 768px) {
    .text-list {
        align-items: flex-start;
        order: 3;
    }

    .text-list__item {
        font-size: 24px;
    }

    .text-list__icon {
        width: 35px;
        height: 35px;
    }

    .text-list__icon svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .text-list__item {
        font-size: 20px;
    }

    .text-list__icon {
        width: 30px;
        height: 30px;
    }

    .text-list__icon svg {
        width: 16px;
        height: 16px;
    }
}



/*
 * CARD CON SERVICIOS
*/
.services-pricing {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.services-pricing__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-pricing__card {
    background: #F9FAFB;
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-pricing__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-pricing__card--featured {
    background: #DBDCDB;
    transform: scale(1.05);
}

.services-pricing__card--featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.services-pricing__badge {
    background: transparent;
    color: #000;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #E2241C;
    margin-bottom: 5px;
}

.services-pricing__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
}

.services-pricing__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 15px;
    padding-bottom: 0px;
}

.services-pricing__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services-pricing__title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: #131313;
    line-height: 1.3;
}

.services-pricing__description {
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
    color: #6B7280;
    font-weight: 400;
}

.services-pricing__button {
    background: var(--red-color);
    color: #fff;
    padding: 10px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.services-pricing__button:hover {
    background: #b00707;
}

.services-pricing__button-icon {
    width: 24px;
    height: 24px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.services-pricing__prices {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.services-pricing__price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.services-pricing__price-left {
    display: flex;
    align-items: center;
}

.services-pricing__price-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin: 0px !important
}

.services-pricing__price-label {
    font-size: 14px;
    color: #000;
    width: 140px;
    padding-left: 5px;
}

.services-pricing__price-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.services-pricing__price-value {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.services-pricing__price-info {
    width: 18px;
    height: 18px;
    border: 1px solid #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #999;
    cursor: help;
}

@media (max-width: 1024px) {
    .services-pricing__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .services-pricing__card--featured {
        transform: scale(1);
    }

    .services-pricing__card--featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .services-pricing {
        padding: 40px 20px;
    }

    .services-pricing__container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-pricing__card {
        padding: 30px 25px;
    }

    .services-pricing__icon {
        width: 60px;
        height: 60px;
    }

    .services-pricing__title {
        font-size: 20px;
    }

    .services-pricing__description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .services-pricing__card {
        padding: 25px 20px;
    }

    .services-pricing__price-label {
        font-size: 13px;
    }

    .services-pricing__price-value {
        font-size: 14px;
    }
}





/*
 * TOURS SLIDER
*/
.tours-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 50px 60px 80px 60px;
    overflow: hidden;
}

.tours-slider-swiper {
    width: 100%;
    overflow: hidden;
}

.tours-slider-swiper .swiper-wrapper {
    display: flex;
}

.tours-slider-swiper.tours-static .swiper-wrapper {
    justify-content: center;
    gap: 20px;
}

.tours-slider-swiper .swiper-slide {
    width: 330px;
    height: 520px;
    flex-shrink: 0;
}

.tours-slider-swiper.tours-large .swiper-slide {
    width: 560px;
    height: 520px;
}

.tours-slider-swiper.tours-medium .swiper-slide {
    width: 330px;
    height: 392px;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
    border-radius: 5.94px;
    overflow: hidden;
}

.slide-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.slide-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #e31e24;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.slide-icon img {
    width: 35px;
    height: auto;
}

.slide-info {
    position: relative;
    z-index: 1;
}

.slide-info h3 {
    font-size: 26px;
    font-weight: bold;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    line-height: 1;
}

.slide-info p {
    font-size: 14px;
    margin: 0 0 25px 0;
    opacity: 0.95;
    line-height: 1.5;
}

.slide-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slide-button {
    background: #e31e24;
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.slide-button:hover {
    background: #c01a1f;
}

.slide-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 13px;
}

.slide-price span {
    opacity: 0.9;
}

.slide-price strong {
    font-size: 24px;
    font-weight: 700;
}

.swiper-navigation {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

/* Ocultar navegación mobile en desktop */
.swiper-navigation-mobile {
    display: none;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-button-prev-mobile,
.swiper-button-next-mobile {
    position: static;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0;
}

.swiper-button-prev:after,
.swiper-button-next:after,
.swiper-button-prev-mobile:after,
.swiper-button-next-mobile:after {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .tours-slider-wrapper {
        padding: 0 20px 60px 20px;
    }

    /* Ocultar navegación desktop en mobile */
    .swiper-navigation {
        display: none !important;
    }

    /* Mostrar navegación mobile solo si hay 3+ items */
    .swiper-navigation-mobile {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-top: 20px;
    }

    /* SOLO 2 SLIDES: Mostrar en columna (uno arriba del otro) */
    .tours-slider-swiper[data-item-count="2"] .swiper-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .tours-slider-swiper[data-item-count="2"] .swiper-slide {
        width: 100% !important;
        max-width: 100%;
        height: 450px;
    }

    /* 3+ SLIDES: Slider normal */
    .tours-slider-swiper[data-item-count="3"] .swiper-wrapper,
    .tours-slider-swiper:not([data-item-count="2"]):not([data-item-count="3"]) .swiper-wrapper {
        gap: 0;
    }

    .tours-slider-swiper[data-item-count="3"] .swiper-slide,
    .tours-slider-swiper:not([data-item-count="2"]):not([data-item-count="3"]) .swiper-slide {
        width: 100% !important;
        max-width: 100%;
        height: 480px;
    }

    .slide-content {
        padding: 25px;
    }

    .slide-info h3 {
        font-size: 22px;
    }


    .slide-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .slide-icon {
        width: 50px;
        height: 50px;
    }

    .slide-icon img {
        width: 28px;
    }
}

@media (max-width: 480px) {
    .swiper-button-next-mobile:after {
        content: '';
        width: 18px;
        height: 18px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transition: border-color 0.3s;
        display: inline-grid;
        transform: rotate(45deg);
        margin-right: 28px;
        top: 10px;
        position: relative;
        left: 10px;
    }

    .swiper-button-prev-mobile:after {
        transform: rotate(-135deg);
        margin-left: 4px;
        content: '';
        width: 18px;
        height: 18px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transition: border-color 0.3s;
        display: inline-grid;
        position: relative;
        top: 10px;
        right: -12px;
    }

    .tours-slider-wrapper {
        padding: 0 15px 60px 15px;
        margin-top: 40px;
    }

    .tours-slider-swiper[data-item-count="2"] .swiper-slide {
        height: 480px;
    }

    .tours-slider-swiper[data-item-count="3"] .swiper-slide,
    .tours-slider-swiper:not([data-item-count="2"]):not([data-item-count="3"]) .swiper-slide {
        height: 500px;
    }
}




/*
 * FOOTER
*/
.footer-awards {
    margin-top: 20px;
}

.footer-awards .flex {
    justify-content: flex-start;
}

.footer-awards__item {
    flex: 0 0 calc(20% - 16px);
    /* 20% = 5 items, -16px para el gap */
    text-align: center;
}

.footer-awards__image {
    margin-bottom: 10px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-awards__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-awards__text p {
    margin: 0;
    line-height: 1.4;
}

.footer-awards__text p:first-child {
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-awards__item {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .footer-awards__item {
        flex: 0 0 calc(50% - 10px);
    }
}








/* ==========================================================================
   Component: Gallery Slider -> gallery-slider.php
   ========================================================================== */
.c-gallery-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 50px;
}

.c-gallery-slider__container {
    width: 100%;
}

.c-gallery-slider__slide.swiper-slide {
    width: 420px;
    height: 440px;
    flex-shrink: 0;
}

.c-gallery-slider__card {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.c-gallery-slider__card:hover {
    transform: scale(1.02);
}

.c-gallery-slider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

.c-gallery-slider__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1;
}

.c-gallery-slider__title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .c-gallery-slider__slide.swiper-slide {
        width: 240px;
        height: 240px;
    }

    .c-gallery-slider .swiper-button-next,
    .c-gallery-slider .swiper-button-prev {
        display: none !important;
    }

    .c-gallery-slider__title {
        font-size: 14px;
    }
}



/* ==========================================================================
   Component: Image Text Offset -> image-text-offset.php
   ========================================================================== */
.c-image-text-offset {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.c-image-text-offset__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.c-image-text-offset__left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.c-image-text-offset__right {
    position: relative;
}

.c-image-text-offset__image {
    width: 100%;
    overflow: hidden;
}

.c-image-text-offset__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Imagen derecha con offset hacia abajo */
.c-image-text-offset__image--offset {
    margin-top: 30%;
}

.c-image-text-offset__content {
    display: flex;
    flex-direction: column;
}

.c-image-text-offset__text {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

/* --- Media Queries --- */
@media (max-width: 1024px) {
    .c-image-text-offset {
        padding: 60px 40px;
    }

    .c-image-text-offset__container {
        gap: 40px;
    }

    .c-image-text-offset__text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .c-image-text-offset {
        padding: 40px 20px;
    }

    .c-image-text-offset__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* En mobile, remover el offset para que se apilen normal */
    .c-image-text-offset__image--offset {
        margin-top: 0;
    }

    .c-image-text-offset__left {
        gap: 25px;
    }

    .c-image-text-offset__text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .c-image-text-offset__left {
        gap: 20px;
    }

    .c-image-text-offset__text {
        font-size: 14px;
        line-height: 1.5;
    }
}



/* ==========================================================================
   Component: Image Text Slider -> text-image-slider.php
   ========================================================================== */
.c-image-text-slider {
    position: relative;
    width: 100%;
    /* max-width: 1400px; */
    margin: 0 auto;
    overflow: hidden;
}

.c-image-text-slider__container {
    width: 100%;
    overflow: visible;
}

.c-image-text-slider__container .swiper-wrapper {
    display: flex;
    align-items: center;
}

.c-image-text-slider__slide.swiper-slide {
    width: 500px;
    transition: all 0.3s ease;
    opacity: 0.4;
    transform: scale(0.80);
}

.c-image-text-slider__slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1.02);
}

.c-image-text-slider__image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.c-image-text-slider__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
}

.c-image-text-slider__image {
    width: 100%;
    height: 450px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.c-image-text-slider__description {
    text-align: center;
    padding: 0 40px;
}

.c-image-text-slider__description p {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* --- Media Queries --- */
@media (max-width: 1024px) {
    .c-image-text-slider__slide.swiper-slide {
        width: 400px;
    }

    .c-image-text-slider__image {
        height: 500px;
    }

    .c-image-text-slider__title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .c-image-text-slider {
        padding: 40px 20px;
    }

    .c-image-text-slider__slide.swiper-slide {
        width: 320px;
    }

    .c-image-text-slider__image {
        height: 400px;
    }

    .c-image-text-slider__title {
        font-size: 36px;
    }

    .c-image-text-slider__description {
        padding: 0 20px;
    }

    .c-image-text-slider__description p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .c-image-text-slider__slide.swiper-slide {
        width: 280px;
    }

    .c-image-text-slider__image {
        height: 350px;
    }

    .c-image-text-slider__title {
        font-size: 28px;
    }
}









/* ==========================================================================
   Component: Sticky Menu - sticky-menu.php
   ========================================================================== */



.c-prepara-visita-menu {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 99;
    transition: top 0.3s ease;
}

body.header-is-sticky .c-prepara-visita-menu {
    top: var(--header-height, 80px);
}

.c-prepara-visita-menu__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
}

.c-prepara-visita-menu__item {
    flex-shrink: 0;
}

.c-prepara-visita-menu__link {
    display: block;
    padding: 1.5rem 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 15px;
}

.c-prepara-visita-menu__link:hover,
.c-prepara-visita-menu__link.active {
    color: var(--brand-red);
    border-bottom-color: var(--brand-red);
}

@media (max-width: 768px) {
    .c-prepara-visita-menu__list {
        gap: 1rem;
        padding: 0 1rem;
    }

    .c-prepara-visita-menu__link {
        padding: 1rem 0;
        font-size: 0.9rem;
    }
}





/* ==========================================================================
   Component: TEXT IMAGE GRID -> text-image-grid.php
   ========================================================================== */


.c-text-image-grid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.c-text-image-grid__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.c-text-image-grid__column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.c-text-image-grid__content {
    color: #000;
}

.c-text-image-grid__content h1,
.c-text-image-grid__content h2,
.c-text-image-grid__content h3 {
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.c-text-image-grid__content h1 {
    font-size: 48px;
}

.c-text-image-grid__content h2 {
    font-size: 42px;
}

.c-text-image-grid__content h3 {
    font-size: 36px;
}

.c-text-image-grid__content h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.c-text-image-grid__content p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.c-text-image-grid__content p:last-child {
    margin-bottom: 0;
}

.c-text-image-grid__content ul,
.c-text-image-grid__content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.c-text-image-grid__content li {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 16px;
}

.c-text-image-grid__content strong {
    font-weight: 700;
}

.c-text-image-grid__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #D20909;
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s ease;
    width: fit-content;
}

.c-text-image-grid__button:hover {
    background: #b00707;
}

.c-text-image-grid__image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.c-text-image-grid__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .c-text-image-grid__container {
        gap: 30px;
    }

    .c-text-image-grid__content h1 {
        font-size: 38px;
    }

    .c-text-image-grid__content h2 {
        font-size: 32px;
    }

    .c-text-image-grid__content h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .c-text-image-grid {
        padding: 40px 20px;
    }

    .c-text-image-grid__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .c-text-image-grid__column {
        gap: 20px;
    }

    .c-text-image-grid__content h1 {
        font-size: 32px;
    }

    .c-text-image-grid__content h2 {
        font-size: 28px;
    }

    .c-text-image-grid__content h3 {
        font-size: 24px;
    }

    .c-text-image-grid__content h4 {
        font-size: 20px;
    }

    .c-text-image-grid__content p,
    .c-text-image-grid__content li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .c-text-image-grid__content h1 {
        font-size: 28px;
    }

    .c-text-image-grid__content h2 {
        font-size: 24px !important;
    }

    .c-text-image-grid__content h3 {
        font-size: 20px;
    }

    .c-text-image-grid__content h4 {
        font-size: 18px;
    }
}



/* ==========================================================================
   Component: TEXT IMAGE MODULE -> text-image-module.php
   ========================================================================== */


.c-text-image-module {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.c-match-bg {
    background: linear-gradient(to bottom, #000 45%, #fff 45%);
}

.c-text-image-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.c-text-image-block.c-text-image-block--left {
    align-items: center;
}

.c-text-image-block:last-child {
    margin-bottom: 0;
}

.c-text-image-block--right .c-text-image-block__content {
    order: 1;
}

.c-text-image-block--right .c-text-image-block__image {
    order: 2;
}

.c-text-image-block--left .c-text-image-block__content {
    order: 2;
}

.c-text-image-block--left .c-text-image-block__image {
    order: 1;
}

.c-text-image-block__content h1,
.c-text-image-block__content h2,
.c-text-image-block__content h3 {
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.c-text-image-block__content h1 {
    font-size: 48px;
}

.c-text-image-block__content h2 {
    font-size: 42px;
}

.c-text-image-block__content h3 {
    font-size: 36px;
}

.c-text-image-block__content p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.c-text-image-block__content p:last-child {
    margin-bottom: 0;
}

.c-text-image-block__content strong {
    font-weight: 700;
}

.c-text-image-block__content a {
    color: #D20909;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.c-text-image-block__content a:hover {
    opacity: 0.8;
}

.c-text-image-block__content ul,
.c-text-image-block__content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.c-text-image-block__content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.c-text-image-block__image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.c-text-image-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .c-text-image-block {
        gap: 30px;
        margin-bottom: 50px;
    }

    .c-text-image-block__content h1 {
        font-size: 38px;
    }

    .c-text-image-block__content h2 {
        font-size: 32px;
    }

    .c-text-image-block__content h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .c-text-image-module {
        padding: 40px 20px;
    }

    .c-text-image-block {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .c-text-image-block--right .c-text-image-block__content,
    .c-text-image-block--left .c-text-image-block__content {
        order: 1;
    }

    .c-text-image-block--right .c-text-image-block__image,
    .c-text-image-block--left .c-text-image-block__image {
        order: 2;
    }

    .c-text-image-block__content h1 {
        font-size: 32px;
    }

    .c-text-image-block__content h2 {
        font-size: 28px;
    }

    .c-text-image-block__content h3 {
        font-size: 24px;
    }

    .c-text-image-block__content p {
        font-size: 15px;
    }

    .c-text-image-block__image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .c-text-image-block__content h1 {
        font-size: 28px;
    }

    .c-text-image-block__content h2 {
        font-size: 24px;
    }

    .c-text-image-block__content h3 {
        font-size: 20px;
    }

    .c-text-image-block__image {
        height: 250px;
    }
}








/* ==========================================================================
   Component: TOURS SLIDER -> tours-slider.php
   ========================================================================== */

.c-tours-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 50px 60px 80px 60px;
    overflow: hidden;
}

.c-tours-slider {
    width: 100%;
    overflow: hidden;
}

.c-tours-slider .swiper-wrapper {
    display: flex;
}

.c-tours-slider.c-tours-slider--static .swiper-wrapper {
    justify-content: center;
    gap: 20px;
}

.c-tours-slider__slide.swiper-slide {
    width: 330px;
    height: 520px;
    flex-shrink: 0;
}

.c-tours-slider.c-tours-slider--large .c-tours-slider__slide.swiper-slide {
    width: 560px;
    height: 520px;
}

.c-tours-slider.c-tours-slider--medium .c-tours-slider__slide.swiper-slide {
    width: 330px;
    height: 392px;
}

.c-tours-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
    border-radius: 5.94px;
    overflow: hidden;
}

.c-tours-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.c-tours-slide__icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #e31e24;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.c-tours-slide__icon img {
    width: 35px;
    height: auto;
}

.c-tours-slide__info {
    position: relative;
    z-index: 1;
}

.c-tours-slide__info h3 {
    font-size: 26px;
    font-weight: bold;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    line-height: 1;
}

.c-tours-slide__info p {
    font-size: 14px;
    margin: 0 0 25px 0;
    opacity: 0.95;
    line-height: 1.5;
}

.c-tours-slide__footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.c-tours-slide__button {
    background: #e31e24;
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.c-tours-slide__button:hover {
    background: #c01a1f;
}

.c-tours-slide__price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 13px;
}

.c-tours-slide__price span {
    opacity: 0.9;
}

.c-tours-slide__price strong {
    font-size: 24px;
    font-weight: 700;
}

.c-tours-slider__nav-desktop {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.c-tours-slider__nav-mobile {
    display: none;
}

.c-tours-slider__btn-prev,
.c-tours-slider__btn-next,
.c-tours-slider__btn-prev-mobile,
.c-tours-slider__btn-next-mobile {
    position: static;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0;
}

.c-tours-slider__btn-prev:after,
.c-tours-slider__btn-next:after,
.c-tours-slider__btn-prev-mobile:after,
.c-tours-slider__btn-next-mobile:after {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .c-tours-slider-wrapper {
        padding: 0 20px 60px 20px;
    }

    .c-tours-slider__nav-desktop {
        display: none !important;
    }

    .c-tours-slider__nav-mobile {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-top: 20px;
    }

    .c-tours-slider[data-item-count="2"] .swiper-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .c-tours-slider[data-item-count="2"] .c-tours-slider__slide.swiper-slide {
        width: 100% !important;
        max-width: 100%;
        height: 450px;
    }

    .c-tours-slider[data-item-count="3"] .swiper-wrapper,
    .c-tours-slider:not([data-item-count="2"]):not([data-item-count="3"]) .swiper-wrapper {
        gap: 0;
    }

    .c-tours-slider[data-item-count="3"] .c-tours-slider__slide.swiper-slide,
    .c-tours-slider:not([data-item-count="2"]):not([data-item-count="3"]) .c-tours-slider__slide.swiper-slide {
        width: 100% !important;
        max-width: 100%;
        height: 480px;
    }

    .c-tours-slide {
        padding: 25px;
    }

    .c-tours-slide__info h3 {
        font-size: 22px;
    }

    .c-tours-slide__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .c-tours-slide__icon {
        width: 50px;
        height: 50px;
    }

    .c-tours-slide__icon img {
        width: 28px;
    }
}

@media (max-width: 480px) {
    .c-tours-slider__btn-next-mobile:after {
        content: '';
        width: 18px;
        height: 18px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transition: border-color 0.3s;
        display: inline-grid;
        transform: rotate(45deg);
        margin-right: 28px;
        /* top: 10px; */
        position: relative;
        left: 10px;
    }

    .c-tours-slider__btn-prev-mobile:after {
        transform: rotate(-135deg);
        margin-left: 4px;
        content: '';
        width: 18px;
        height: 18px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transition: border-color 0.3s;
        display: inline-grid;
        position: relative;
        /* top: 10px; */
        right: -12px;
    }

    .c-tours-slider-wrapper {
        padding: 0 15px 60px 15px;
        margin-top: 40px;
    }

    .c-tours-slider[data-item-count="2"] .c-tours-slider__slide.swiper-slide {
        height: 480px;
    }

    .c-tours-slider[data-item-count="3"] .c-tours-slider__slide.swiper-slide,
    .c-tours-slider:not([data-item-count="2"]):not([data-item-count="3"]) .c-tours-slider__slide.swiper-slide {
        height: 500px;
    }
}



/* ==========================================================================
   Component: VIDEO COMPONENTN -> video-component.php
   ========================================================================== */


.c-video-component {
    width: 100%;
    max-width: 100%;
}

.c-video-component__wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.c-video-component__video {
    width: 100%;
    height: auto;
    display: block;
}

.c-video-component__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.c-video-component__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.c-video-component__play-btn svg {
    width: 86px;
    height: 86px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.c-video-component__play-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .c-video-component__play-btn svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .c-video-component__play-btn svg {
        width: 48px;
        height: 48px;
    }
}


/* h1 span[style*="color:#D20909"],
h2 span[style*="color:#D20909"],
h3 span[style*="color:#D20909"],
h1 span[style*="color: #D20909"],
h2 span[style*="color: #D20909"],
h3 span[style*="color: #D20909"] {
    color: #000 !important;
}

.background--black h1 span[style*="color:#D20909"],
.background--black h2 span[style*="color:#D20909"],
.background--black h3 span[style*="color:#D20909"],
.background--black h1 span[style*="color: #D20909"],
.background--black h2 span[style*="color: #D20909"],
.background--black h3 span[style*="color: #D20909"],
.has-white-color span[style*="color:#D20909"],
.has-white-color span[style*="color: #D20909"] {
    color: #D20909 !important;
} */

body.home .background--darken {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

body.home .background--darken h1 {
    display: block !important;
    font-size: clamp(60px, 12vw, 100px);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    /* color: transparent; */
    color: white;
    line-height: 1em;
    /* -webkit-text-stroke: 5px #fff; */
    /* text-stroke: 5px #fff; */
    letter-spacing: -2px;
    text-align: left;
    margin: 0 0 30px 0;
    max-width: 90%;
}

body.home .background--darken .background__wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

body.home .background--darken .section {
    position: relative;
    z-index: 2;
}


.museo-testimonial h2 {
    margin-bottom: 40px;
}

.museo-testimonial .box {
    margin-top: 50px;
    text-align: left;
    max-width: 500px;
}

.museo-testimonial .box p {
    font-style: italic;
    font-size: 18px;
    color: #ccc;
    margin-bottom: 20px;
}

.museo-testimonial .box strong {
    color: #fff;
    font-size: 16px;
}

.museo-testimonial p.has-headline-3-font-size {
    margin-top: 40px;
}