* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.8;
    color: #d1cdb8;
    background: #0d0d0d;
    -webkit-font-smoothing: antialiased;
}

header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    color: #ffffff;
    padding: 2.2rem 8vw;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

header.scrolled {
    position: fixed;
    background: #dcd0c0;
    padding: 1.1rem 8vw;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

header nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.brand-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

header.scrolled .brand-title {
    color: #1a1a1a;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #D4AF37;
}

header.scrolled .nav-links a {
    color: #4a4238;
    text-shadow: none;
}

header.scrolled .nav-links a:hover {
    color: #8C6239;
}

.nav-right {
    display: flex;
    align-items: center;
}

.lang-switch-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.lang-option {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    outline: none;
    transition: color 0.3s ease;
}

.lang-option:hover {
    color: #ffffff;
}

.lang-option.active {
    color: #D4AF37;
    font-weight: 700;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    user-select: none;
}

header.scrolled .lang-option {
    color: rgba(26, 26, 26, 0.4);
}

header.scrolled .lang-option:hover {
    color: #1a1a1a;
}

header.scrolled .lang-option.active {
    color: #8C6239;
}

header.scrolled .lang-divider {
    color: rgba(26, 26, 26, 0.25);
}

.slider_container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.slider_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('tvi.png');
    background-size: cover;
    background-position: center center;
    transform: translateY(0px);
    will-change: transform;
    z-index: 1;
    pointer-events: none;
}

.slider_container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,13,13,0.35) 0%, rgba(13,13,13,0.85) 100%);
    z-index: 2;
}

.slider_wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 3;
    padding-left: 8vw;
}

.slide_full_width {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.slider_content {
    position: fixed;
    top: 52vh;
    left: 8vw;
    width: 65%;
    max-width: 780px;
    color: #ffffff;
    z-index: 6;
    text-align: left;
    will-change: transform;
    pointer-events: auto;
}

.slider_content p {
    font-size: 1.75rem;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: #e5e2d6;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.text_one_by_one_from_bottom {
    animation: slideInUp 0.8s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        margin-top: 25px;
    }
    to {
        opacity: 1;
        margin-top: 0px;
    }
}

main {
    width: 100%;
    margin: 0 auto;
    background: #0d0d0d;
    position: relative;
    z-index: 20;
}

main section {
    width: 100%;
    padding: 8rem 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: #0d0d0d;
}

/* Primary About Section */
main section#about {
    background: #111111;
    padding: 9rem 5rem;
}

/* Second About Section (Image Color Match) */
main section#about:nth-of-type(2),
main section#about-secondary,
main section.about-secondary {
    background: #dcd0c0;
    padding: 9rem 5rem;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

main section#about-secondary > h2,
main section.about-secondary > h2 {
    position: relative;
    z-index: 3;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}

main section#about-secondary.is-visible > h2,
main section.about-secondary.is-visible > h2 {
    opacity: 1;
    transform: translateY(0);
}

.about-secondary-content {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

main section#about-secondary.is-visible .about-secondary-content,
main section.about-secondary.is-visible .about-secondary-content {
    opacity: 1;
    transform: translateY(0);
}

.about-secondary-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1.5rem, 5vw, 5rem);
    margin: 2.5rem auto 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1800px;
}

.about-secondary-images .imgwrap.reveal {
    overflow: hidden;
    position: relative;
    flex: 1 1 30%;
    min-width: 260px;
    max-width: 360px;
}

.about-secondary-images .imgwrap.reveal::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #dcd0c0;
    transition: transform 1.6s ease;
    transform: translate3d(0, 0, 0);
    z-index: 2;
}

main section#about-secondary.is-visible .about-secondary-images .imgwrap.reveal.to-right::after {
    transform: translate3d(100%, 0, 0);
}

main section#about-secondary.is-visible .about-secondary-images .imgwrap.reveal.to-left::after {
    transform: translate3d(-100%, 0, 0);
}

.about-secondary-images img {
    width: 100%;
    max-width: none;
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

main section#about-secondary::before,
main section#about-secondary::after,
main section.about-secondary::before,
main section.about-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background: inherit;
    z-index: 2;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

main section#about-secondary::before,
main section.about-secondary::before {
    left: 50%;
    transform: translateX(-100%);
}

main section#about-secondary::after,
main section.about-secondary::after {
    right: 50%;
    transform: translateX(100%);
}

main section#about-secondary.is-visible::before,
main section.about-secondary.is-visible::before {
    transform: translateX(-200%);
}

main section#about-secondary.is-visible::after,
main section.about-secondary.is-visible::after {
    transform: translateX(200%);
}

main h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 3.5rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-align: center;
}

main section#about p.bio-text,
#about-bio {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 2.1;
    color: #d1cdb8;
    width: 100%;
    max-width: 600px !important;
    margin: 0 auto;
    text-align: center;
}

main section#about-secondary p.bio-text,
#about-secondary-bio {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2.1;
    color: #333333;
    width: 100%;
    max-width: 750px !important;
    margin: 0 auto;
    text-align: center;
}

#percurso-text {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2.1;
    color: #333333;
    width: 100%;
    max-width: 750px !important;
    margin: 0 auto;
    text-align: center;
}

/* --- Section: Social Media / Highlight Cards --- */
main section#videos {
    background: #0d0d0d;
    padding: 5.5rem 5vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

main section#videos h2 {
    color: #ffffff;
    font-size: 1.9rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.highlights-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    max-width: 1350px;
    margin: 0 auto;
}

.highlight-card {
    flex: 1 1 230px;
    max-width: 300px;
    min-width: 220px;
    background: #121212;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

#videos .youtube-featured {
    flex: 0 0 380px;
    max-width: 380px;
    min-height: 420px;
    border: 2px solid #D4AF37;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: translateY(-8px);
}

#videos .youtube-featured:hover {
    transform: translateY(-14px) scale(1.02);
    border-color: #f0cf5a;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55), 0 0 0 6px rgba(212, 175, 55, 0.14);
}

.youtube-channel-button {
    display: inline-block;
    align-self: flex-start;
    margin-top: 1rem;
    padding: 0.65rem 1.1rem;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease;
}

#videos .youtube-featured:hover .youtube-channel-button {
    background: #D4AF37;
    color: #141414;
}

#videos .highlight-card:not(.youtube-featured) {
    flex: 0 0 220px;
    max-width: 220px;
    position: relative;
    top: 72px;
}

.highlight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.card-media-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-thumb-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 58%;
    overflow: hidden;
    background-color: #181818;
}

.youtube-bg { background-color: #9a2626a3; }
.instagram-bg { background-color: #170b2eab; }
.facebook-bg { background-color: #132c53; }
.tiktok-bg { background-color: #2c2c2cb0; }
.linkedin-bg { background-color: #0d1a26; }

.card-media-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.card-media-btn {
    width: 110px;
    height: 110px;
    background: rgba(30, 30, 30, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.highlight-card:hover .card-media-btn {
    transform: scale(1.08);
    background: rgba(212, 175, 55, 0.85);
    color: #0d0d0d;
}

.card-media-btn svg {
    width: 56px;
    height: 56px;
}

.card-media-btn.weekly-hero-btn {
    width: 80px;
    height: 80px;
}

.card-media-btn.weekly-hero-btn svg {
    width: 40px;
    height: 40px;
}

.card-media-btn.mini {
    width: 54px;
    height: 54px;
}

.card-media-btn.mini svg {
    width: 24px;
    height: 24px;
}

.card-body {
    padding: 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.platform-tag {
    display: inline-block;
    align-self: flex-start;
    background: transparent;
    color: #D4AF37;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding: 0;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
}

.playlist-series-title {
    display: block;
    margin-bottom: 0.45rem;
    color: #D4AF37;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

/* --- Section: Entrevistas Playlist (Horizontal Carousel) --- */
main section#entrevistas {
    background: #dcd0c0;
    padding: 7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.carousel-wrapper {
    position: relative;
    max-width: 1450px;
    margin: 0 auto 3rem auto;
    padding: 0 5vw;
    display: flex;
    align-items: center;
}

.playlist-row {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem;
    width: 100%;
    scrollbar-width: none;
}

.playlist-row::-webkit-scrollbar {
    display: none;
}

.playlist-card {
    flex: 0 0 calc(33.333% - 1.35rem);
    min-width: 310px;
    background: #161616;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(18, 18, 18, 0.9);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.carousel-arrow:hover {
    background: rgba(212, 175, 55, 0.9);
    color: #0d0d0d;
    border-color: #D4AF37;
}

.carousel-arrow.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.carousel-arrow.left {
    left: 2.5vw;
    transform: translate(-50%, -50%);
}

.carousel-arrow.right {
    right: 2.5vw;
    transform: translate(50%, -50%);
}

.playlist-loading {
    width: 100%;
    text-align: center;
    color: #b3ad9e;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

/* --- Section: Destaque da Semana --- */
main section#weekly-highlights {
    background: #dcd0c0;
    padding: 7rem 5vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.weekly-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.weekly-hero-card {
    width: 100%;
    max-width: 760px;
    background: #141414;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.weekly-hero-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.weekly-hero-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.weekly-media-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.weekly-hero-body {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.weekly-badge {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #D4AF37;
    text-transform: uppercase;
}

.weekly-badge.alt {
    color: #b8a992;
}

.weekly-hero-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.95rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.25;
}

.weekly-hero-desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: #b3ad9e;
    line-height: 1.65;
}

.weekly-watch-button {
    align-self: flex-start;
    margin-top: 0.45rem;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.65);
    color: #D4AF37;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease;
}

.weekly-hero-card:hover .weekly-watch-button {
    background: #D4AF37;
    color: #141414;
}

.weekly-side-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.weekly-side-card {
    background: #141414;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    flex: 1;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.weekly-side-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}

.weekly-side-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    height: 100%;
}

.weekly-side-media {
    position: relative;
    width: 42%;
    min-height: 140px;
    overflow: hidden;
}

.weekly-side-body {
    padding: 1.4rem 1.6rem;
    width: 58%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
}

.weekly-side-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.45rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
}

footer#social {
    background: #0d0d0d;
    padding: 8rem 2rem 4.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    gap: 1.8rem;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.contact-content h2 {
    color: #dcd0c0;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    line-height: 1.2;
}

.contact-description {
    color: #dcd0c0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.contact-cta {
    color: #d6b64c;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-cta span {
    display: inline-block;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.contact-cta:hover {
    color: #ffffff;
}

.contact-cta:hover span {
    transform: translateX(0.3rem);
}

.social-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.social-item {
    display: block;
    height: 52px;
    width: 56px;
    overflow: hidden;
    text-decoration: none;
    position: relative;
}

.icon-flip {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.social-item:hover .icon-flip {
    transform: translateY(-52px);
}

.icon-slide {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-slide svg {
    width: 28px;
    height: 28px;
}

.icon-default {
    color: #dcd0c0;
    opacity: 0.8;
}

.icon-hover {
    color: #d6b64c;
}

.social-divider {
    width: 1px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
}

.social-email {
    color: #f1eadc;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
    margin-top: 0.5rem;
}

.social-email:hover {
    color: #ceae47;
    border-color: #ceae47;
}

/* Responsiveness */
@media (max-width: 1024px) {
    main section#about-secondary {
        padding-left: 4vw;
        padding-right: 4vw;
    }

    .slider_container {
        height: 100svh;
        min-height: 0;
    }

    .about-secondary-images {
        gap: clamp(1.5rem, 5vw, 4rem);
        flex-wrap: nowrap;
    }

    .about-secondary-images .imgwrap.reveal {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
    }

    .slider_bg {
        position: absolute;
        height: 100%;
        background-size: cover;
        background-position: 72% center;
    }

    .slider_content {
        position: absolute;
        top: auto;
        bottom: 12vh;
    }

    .weekly-hero-desc {
        display: none;
    }

    .highlight-card {
        width: calc((100% - 2rem) / 2);
    }
    .playlist-card {
        flex: 0 0 calc(45% - 1.2rem);
    }
}

@media (max-width: 900px) {
    .highlight-card {
        width: auto;
    }

    #videos .youtube-featured {
        flex: 0 1 460px;
        max-width: 460px;
    }

    #videos .highlight-card:not(.youtube-featured) {
        flex: 0 1 280px;
        max-width: 280px;
        top: 0;
    }

    .weekly-container {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .weekly-side-link {
        flex-direction: column;
    }

    .weekly-side-media {
        width: 100%;
        padding-bottom: 50%;
    }

    .weekly-side-body {
        width: 100%;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    header, header.scrolled {
        padding: 0.9rem 5vw;
    }

    header nav {
        min-height: 2.5rem;
    }

    .nav-left {
        min-width: 0;
        gap: 0;
    }

    .brand-title {
        font-size: 1rem;
        letter-spacing: 0.14em;
        line-height: 1.25;
        white-space: nowrap;
    }

    .nav-right {
        margin-right: 0;
    }

    .nav-links {
        display: none;
    }

    .slider_wrapper {
        padding-left: 5vw;
    }

    .slider_content {
        width: 90%;
        left: 5vw;
    }

    .slider_content p {
        font-size: 1.25rem;
        line-height: 1.55;
    }

    main section {
        padding: 5rem 1.8rem;
    }

    main section#about, main section#videos, main section#weekly-highlights {
        padding: 5rem 1.8rem;
    }

    main section#entrevistas {
        padding: 5rem 0;
    }

    .about-secondary-images {
        gap: clamp(0.6rem, 2.5vw, 1.5rem);
        margin-top: 2rem;
        flex-wrap: nowrap;
    }

    .about-secondary-images .imgwrap.reveal {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
    }

    .carousel-wrapper {
        padding: 0 1.8rem;
    }

    .carousel-arrow.left {
        left: 0.9rem;
    }

    .carousel-arrow.right {
        right: 0.9rem;
    }

    .playlist-card {
        flex: 0 0 calc(85% - 1rem);
        min-width: 270px;
    }

    .card-body {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-media-btn {
        width: 80px;
        height: 80px;
    }

    .card-media-btn svg {
        width: 40px;
        height: 40px;
    }

    .social-container {
        gap: 1.8rem;
    }

}