@import url("monumentextended.css"); /* Using a url */

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Coloca o vídeo atrás do conteúdo */
}

.monteiro-hero-section {
    color: #FFFFFF;
}

.monteiro-hero-section .title-content {
    font-family: 'Monument Extended', sans-serif;
    line-height: 50px;
}

.monteiro-hero-section .title-content h4 {
    font-family: 'Monument Extended', sans-serif !important;
    color: #FFFFFF;
    font-size: 65px;
    margin-bottom: 0;
}

.monteiro-hero-section .title-content h4.title-date {
    margin-bottom: -30px;
}

.monteiro-hero-section .title-content > span {
    display: flex;
    align-items: start;
}

.countdown-wrapper {
    max-width: 100%;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
}

.countdown-item:not(:last-of-type) {
    margin-right: calc(10px / 2);
}

.countdown-item {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #000000;
    border-radius: 15px 15px 15px 15px;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 20px 0;
    text-align: center;
    color: #fff;
}

.countdown-digits {
    color: #00678D;
    font-family: "Monument Extended", Sans-serif;
    font-size: 47px;
    font-weight: 800;
    display: block;
}

.countdown-headline {
    font-family: "Monument Extended", Sans-serif;
    display: flex;
    flex-direction: column;
    font-size: 47px;
}

@media (max-width: 1024px) {
    .countdown-digits {
        font-size: 37px;
    }
}

.countdown-label {
    color: #242424;
    font-size: 16px;
    display: block;
}

.countdown-headline svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: visible;
}

.event-card {
    --event-accent: var(--accent-color);
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 400px;
    color: #FFFFFF;
    overflow: hidden;
    align-items: stretch;
    position: relative;
    border-radius: 24px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(13, 14, 29, 0.96) 0%, rgba(13, 14, 29, 0.72) 100%) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.05) 100%) border-box;
    box-shadow: 0 14px 45px rgba(13, 14, 29, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    transform: translateZ(0);
}

.event-card.primary {
    --event-accent: #EA365D;
}

.event-card.secondary {
    --event-accent: #798aa8;
}

.event-card.info {
    --event-accent: #2596f4;
}

.event-card.success {
    --event-accent: #5fc433;
}

.event-card.danger {
    --event-accent: #e8343a;
}

.event-card.warning {
    --event-accent: #f09839;
}

.event-card .event-infos-container {
    width: 50%;
}

.event-card .event-thumb-container {
    width: 50%;
    position: absolute; /* Remove a imagem do fluxo normal e a ajusta ao lado direito */
    right: 0; /* Posiciona a imagem à direita da div pai */
    top: 0;
    bottom: 0;
}

.event-card .event-thumb-container::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(270deg, rgba(13, 14, 29, 0) 25%, rgba(13, 14, 29, 0.92) 100%);
}

.event-card .event-thumb-container img {
    width: 100%;
    height: auto;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(13, 14, 29, 0.35);
    background: linear-gradient(135deg, rgba(13, 14, 29, 0.96) 0%, rgba(13, 14, 29, 0.65) 100%) padding-box,
    linear-gradient(135deg, var(--event-accent) 0%, rgba(255, 255, 255, 0.12) 100%) border-box;
}

.event-card .event-item-infos {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    background-color: transparent;
    background-image: linear-gradient(220deg, rgba(13, 14, 29, 0.95) 0%, rgba(13, 14, 29, 0.72) 55%, rgba(13, 14, 29, 0.12) 100%);
    box-sizing: border-box;
}

.event-card .event-item-infos .tag-open-subscribe {
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #000b42;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
    max-width: fit-content;
}

.event-card .event-item-infos .event-date {
    font-weight: bold;
    font-size: 30px;
}

.event-card .event-item-infos .event-title {
    font-family: 'Monument Extended', sans-serif;
    color: #FFFFFF;
    font-size: 34px;
    line-height: 1.05em;
    margin: 20px 0;
}

.event-card .event-item-infos .event-location {
    font-size: 14px;
    display: inline-block;
    max-width: fit-content;
    margin-bottom: 20px;
}

.event-card .event-item-infos .event-button {
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    transition: all 0.35s ease;
}

.event-card .event-item-infos .event-button:hover {
    color: #FFFFFF;
    background-color: var(--event-accent);
    border-color: var(--event-accent);
}

.event-card .event-item-thumb {
    width: 100%;
    height: 100%;
}

.event-card .event-item-thumb a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.event-card .event-item-thumb a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f0f0f0;
    padding: 30px;
    text-align: left;
    z-index: 999;
}

#lgpd-banner p {
    font-size: 16px;
}

#lgpd-banner a {
    color: #0b0b0b;
    font-weight: 700;
}

#lgpd-banner a:hover {
    text-decoration: #0b0b0b;
}

#lgpd-banner .btn-dark {
    color: #FFFFFF;
    font-weight: 700;
}

#lgpd-banner .btn-dark:hover {
    opacity: .7;
}

.slick-slide,
.tekup-brand-slider-item
{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Timeline Presidentes */

.timeline-presidents {
    width: 100%;
    background-color: #fff;
    background-image: url("../images/presidents/bg-timeline.png");
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 5px 25px 5px rgba(0, 0, 0, 0.2);
}

.timeline-presidents .swiper-container {
    height: 600px;
    width: 100%;
    position: relative;
}

.timeline-presidents .swiper-wrapper {
    transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
}

.timeline-presidents .swiper-slide {
    position: relative;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.timeline-presidents .swiper-slide::after {
    content: "";
    position: absolute;
    z-index: 1;
    right: -115%;
    bottom: -10%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: -230px 0 150px 60vw rgba(0, 0, 0, 0.7);
    border-radius: 100%;
}

.timeline-presidents .swiper-slide-content {
    position: absolute;
    text-align: center;
    width: 80%;
    max-width: 310px;
    right: 50%;
    bottom: 13%;
    transform: translate(50%, 0);
    font-size: 12px;
    z-index: 2;
}

.timeline-presidents .swiper-slide-image {
    width: 200px;
    position: absolute;
    top: 100px;
    left: 25%;
    opacity: 0;
    transform: translate3d(20px, 0, 0);
    transition: 0.2s ease 0.3s;
    z-index: 2;
}

.timeline-presidents .swiper-slide-active .swiper-slide-image {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.4s ease 1.3s;
}

.timeline-presidents .swiper-slide .timeline-year {
    display: block;
    font-style: italic;
    font-size: 42px;
    margin-bottom: 10px;
    transform: translate3d(20px, 0, 0);
    color: #d4a024;
    font-weight: bold;
    opacity: 0;
    transition: 0.2s ease 0.4s;
}

.timeline-presidents .swiper-slide .timeline-title {
    font-weight: 800;
    font-size: 34px;
    margin: 0 0 10px;
    opacity: 0;
    transform: translate3d(20px, 0, 0);
    transition: 0.2s ease 0.5s;
    color: #FFFFFF;
}

.timeline-presidents .swiper-slide .timeline-text {
    line-height: 1.5;
    opacity: 0;
    transform: translate3d(20px, 0, 0);
    transition: 0.2s ease 0.6s;
}

.timeline-presidents .swiper-slide-active .timeline-year {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.4s ease 1.6s;
}

.timeline-presidents .swiper-slide-active .timeline-title {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.4s ease 1.7s;
}

.timeline-presidents .swiper-slide-active .timeline-text {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.4s ease 1.8s;
}

.timeline-presidents .swiper-pagination {
    right: 15% !important;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    z-index: 1;
}

.timeline-presidents .swiper-pagination::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(149, 149, 149, 0.2);
}

.timeline-presidents .swiper-pagination-bullet {
    width: auto;
    height: auto;
    text-align: center;
    opacity: 1;
    background: transparent;
    color: #d4a024;
    margin: 15px 0 !important;
    position: relative;
}

.timeline-presidents .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: 8px;
    left: -32.5px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #d4a024;
    transform: scale(0);
    transition: 0.2s;
}

.timeline-presidents .swiper-pagination-bullet-active {
    color: #d4a024;
}

.timeline-presidents .swiper-pagination-bullet-active::before {
    transform: scale(1);
}

.timeline-presidents .swiper-button-next,
.timeline-presidents .swiper-button-prev {
    background-size: 20px 20px;
    top: 15%;
    width: 20px;
    height: 20px;
    margin-top: 0;
    z-index: 2;
    transition: 0.2s;
}

.timeline-presidents .swiper-button-prev {
    left: 8%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
}

.timeline-presidents .swiper-button-prev:hover {
    transform: translateX(-3px);
}

.timeline-presidents .swiper-button-next {
    right: 8%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
}

.timeline-presidents .swiper-button-next:hover {
    transform: translateX(3px);
}

@media screen and (min-width: 768px) {
    .timeline-presidents .swiper-container {
        height: 1150px;
    }

    .timeline-presidents .swiper-slide::after {
        height: 100%;
    }

    .timeline-presidents .swiper-slide-image {
        width: 300px;
    }

    .timeline-presidents .swiper-slide::after {
        right: -30%;
        bottom: -8%;
        width: 240px;
        height: 50%;
        box-shadow: -230px 0 150px 50vw rgba(0, 0, 0, 0.7);
    }

    .timeline-presidents .swiper-slide-content {
        right: 30%;
        top: 40%;
        transform: translateY(-50%);
        width: 310px;
        font-size: 11px;
        text-align: right;
    }

    .timeline-presidents .swiper-slide .timeline-year {
        margin-bottom: 0;
        font-size: 32px;
    }

    .timeline-presidents .swiper-slide .timeline-title {
        font-size: 46px;
        margin: 0;
    }

    .timeline-presidents .swiper-pagination {
        display: flex;
    }

    .timeline-presidents .swiper-button-prev {
        top: 15%;
        left: auto;
        right: 15%;
        transform: rotate(90deg) translate(0, 10px);
    }

    .timeline-presidents .swiper-button-prev:hover {
        transform: rotate(90deg) translate(-3px, 10px);
    }

    .timeline-presidents .swiper-button-next {
        top: auto;
        bottom: 15%;
        right: 15%;
        transform: rotate(90deg) translate(0, 10px);
    }

    .timeline-presidents .swiper-button-next:hover {
        transform: rotate(90deg) translate(3px, 10px);
    }
}

@media screen and (min-width: 1024px) {
    .timeline-presidents .swiper-slide::after {
        right: -20%;
        bottom: -12%;
        width: 240px;
        height: 70%;
        box-shadow: -230px 0 150px 39vw rgba(0, 0, 0, 0.7);
    }

    .timeline-presidents .swiper-slide-content {
        right: 25%;
    }
}

/** Form Multisteps **/

.multisteps-form__progress {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(0, 1fr))
}

.multisteps-form__progress-btn {
    transition-property: all;
    transition-duration: .15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    position: relative;
    padding-top: 20px;
    color: #dee2e6;
    text-indent: -9999px;
    border: none;
    background-color: transparent;
    outline: none !important;
    cursor: pointer
}

@media (min-width: 500px) {
    .multisteps-form__progress-btn {
        text-indent: 0
    }
}

.multisteps-form__progress-btn:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 13px;
    height: 13px;
    content: "";
    transform: translateX(-50%);
    transition: all .15s linear 0s, transform .15s cubic-bezier(.05, 1.09, .16, 1.4) 0s;
    border: 2px solid currentColor;
    border-radius: 50%;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 3
}

.multisteps-form__progress-btn:after {
    position: absolute;
    top: 5px;
    left: calc(-50% - 13px / 2);
    transition-property: all;
    transition-duration: .15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    background-color: currentColor;
    z-index: 1
}

.multisteps-form__progress-btn:first-child:after {
    display: none
}

.multisteps-form__progress-btn.js-active {
    color: #344767
}

.multisteps-form__progress-btn.js-active span {
    color: #8392ab
}

.multisteps-form__progress-btn.js-active:before {
    transform: translateX(-50%) scale(1.2);
    background-color: currentColor
}

.multisteps-form__form {
    position: relative
}

.multisteps-form__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden
}

.multisteps-form__panel.js-active {
    height: auto;
    opacity: 1;
    visibility: visible
}

.multisteps-form__panel[data-animation=scaleIn] {
    transform: scale(.9)
}

.multisteps-form__panel[data-animation=scaleIn].js-active {
    transition-property: all;
    transition-duration: .2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    transform: scale(1)
}

.bg-gradient-dark {
    background-image: linear-gradient(310deg, #141727, #3a416f);
    color: #FFFFFF;
}

.btn.bg-gradient-dark:hover {
    background-color: #344767;
    border-color: #344767;
    color: #FFFFFF;
}

.btn:hover:not(.btn-icon-only) {
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .09), 0 2px 3px -1px rgba(0, 0, 0, .07);
    transform: scale(1.02);
}

.next-events-sidebar {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF33;
    background-color: #2D2D2DB3;
    border-radius: 10px;
    padding: 20px;
}

.next-events-sidebar .event-card {
    flex-direction: column;
    max-height: fit-content;
    margin-top: 20px;
}

.next-events-sidebar .event-card:first-child {
    margin-top: 0;
}

.next-events-sidebar .event-card .event-infos-container {
    width: 100%;
}

.next-events-sidebar .event-card .event-thumb-container {
    width: 100%;
    height: 200px;
    position: relative;
}

.live-badge {
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.tekup-modern-section {
    position: relative;
}

.tekup-modern-section:not(.tekup-section-padding):not(.tekup-section-padding2):not(.tekup-section-padding3):not(.tekup-section-padding4):not(.tekup-section-padding-top):not(.tekup-section-padding-bottom):not(.tekup-hero-section):not(.tekup-portfolio-section) {
    padding: 96px 0;
}

.tekup-modern-section.tekup-section-padding-bottom {
    padding-top: 96px;
}

@media (max-width: 991px) {
    .tekup-modern-section:not(.tekup-section-padding):not(.tekup-section-padding2):not(.tekup-section-padding3):not(.tekup-section-padding4):not(.tekup-section-padding-top):not(.tekup-section-padding-bottom):not(.tekup-hero-section):not(.tekup-portfolio-section) {
        padding: 78px 0;
    }

    .tekup-modern-section.tekup-section-padding-bottom {
        padding-top: 78px;
    }
}

@media (max-width: 767px) {
    .tekup-modern-section:not(.tekup-section-padding):not(.tekup-section-padding2):not(.tekup-section-padding3):not(.tekup-section-padding4):not(.tekup-section-padding-top):not(.tekup-section-padding-bottom):not(.tekup-hero-section):not(.tekup-portfolio-section) {
        padding: 64px 0;
    }

    .tekup-modern-section.tekup-section-padding-bottom {
        padding-top: 64px;
    }
}

.tekup-modern-section .tekup-section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.tekup-modern-section .tekup-section-title h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-color) 0%, rgba(1, 25, 255, 0) 100%);
}

.tekup-modern-section .tekup-section-title.center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.tekup-modern-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
            radial-gradient(700px 420px at 82% 22%, rgba(1, 25, 255, 0.35) 0%, rgba(1, 25, 255, 0) 58%),
            radial-gradient(560px 360px at 18% 78%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 60%);
}

.tekup-modern-event .tekup-modern-cta {
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(13, 14, 29, 0.46);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 70px rgba(13, 14, 29, 0.35);
}

.tekup-modern-event .tekup-modern-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 30%, rgba(1, 25, 255, 0.30) 0%, rgba(1, 25, 255, 0) 58%);
}

.tekup-modern-event .tekup-modern-cta > * {
    position: relative;
    z-index: 1;
}

.tekup-modern-logos .tekup-brand-slider-item {
    padding: 18px 22px;
    border-radius: 18px;
    border: 1px solid rgba(13, 14, 29, 0.10);
    background-color: var(--white-bg);
    box-shadow: 0 14px 40px rgba(13, 14, 29, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tekup-modern-logos .tekup-brand-slider-item img {
    max-height: 56px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.78;
    transition: all 0.35s ease;
}

.tekup-modern-logos .tekup-brand-slider-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(13, 14, 29, 0.12);
}

.tekup-modern-logos .tekup-brand-slider-item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.03);
}

.tekup-modern-programacao .tekup-service-thumb {
    border-radius: 22px;
    border: 1px solid transparent;
    background: linear-gradient(rgba(13, 14, 29, 0) 0%, rgba(13, 14, 29, 0) 100%) padding-box,
    linear-gradient(135deg, rgba(13, 14, 29, 0.12) 0%, rgba(1, 25, 255, 0.16) 100%) border-box;
    box-shadow: 0 18px 55px rgba(13, 14, 29, 0.10);
    transform: translateZ(0);
}

.tekup-modern-programacao .tekup-service-thumb::before,
.tekup-modern-programacao .tekup-service-thumb::after {
    border-radius: 22px;
}

.tekup-modern-programacao .tekup-service-thumb img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 22px;
}

.tekup-modern-programacao .tekup-service-data {
    padding: 26px;
}

.tekup-modern-pastor .tekup-thumb img,
.tekup-modern-member .tekup-thumb img,
.tekup-modern-agenda img,
.tekup-modern-mission img {
    border-radius: 24px;
    box-shadow: 0 22px 65px rgba(13, 14, 29, 0.12);
}

.tekup-modern-counters .tekup-counter-wrap.wrap2 {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid transparent;
    background: linear-gradient(var(--white-bg), var(--white-bg)) padding-box,
    linear-gradient(135deg, rgba(13, 14, 29, 0.10) 0%, rgba(1, 25, 255, 0.16) 100%) border-box;
    box-shadow: 0 18px 55px rgba(13, 14, 29, 0.08);
}

.tekup-modern-counters .tekup-counter-data2 {
    border-color: rgba(13, 14, 29, 0.10);
    transition: background-color 0.35s ease, transform 0.35s ease;
}

.tekup-modern-counters .tekup-counter-data2:hover {
    background-color: rgba(1, 25, 255, 0.04);
    transform: translateY(-2px);
}

.tekup-modern-mission {
    position: relative;
    overflow: hidden;
}

.tekup-modern-mission::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
            radial-gradient(600px 420px at 20% 35%, rgba(1, 25, 255, 0.22) 0%, rgba(1, 25, 255, 0) 60%),
            radial-gradient(520px 360px at 80% 70%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 62%);
}

.tekup-modern-mission .container {
    position: relative;
    z-index: 1;
}

.tekup-modern-agenda .row {
    align-items: center;
}

.tekup-modern-agenda img {
    width: 100%;
    object-fit: cover;
}

.tekup-modern-quote .tekup-cta-wrap {
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(13, 14, 29, 0.44);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 70px rgba(13, 14, 29, 0.35);
}

.tekup-modern-quote .tekup-cta-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 75% 45%, rgba(1, 25, 255, 0.26) 0%, rgba(1, 25, 255, 0) 60%);
}

.tekup-modern-quote .tekup-cta-wrap > * {
    position: relative;
    z-index: 1;
}

.tekup-modern-spotify iframe {
    border-radius: 18px !important;
    box-shadow: 0 22px 65px rgba(13, 14, 29, 0.10);
}

.tekup-videos-section {
    position: relative;
    overflow: hidden;
}

.tekup-videos-section::before,
.tekup-videos-section::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 1;
}

.tekup-videos-section::before {
    top: -260px;
    right: -240px;
    background: radial-gradient(circle, rgba(1, 25, 255, 0.16) 0%, rgba(1, 25, 255, 0) 60%);
}

.tekup-videos-section::after {
    bottom: -280px;
    left: -240px;
    background: radial-gradient(circle, rgba(13, 14, 29, 0.12) 0%, rgba(13, 14, 29, 0) 62%);
}

.tekup-videos-section .container {
    position: relative;
    z-index: 1;
}

/* Estilos para a seção de vídeos do YouTube */
.video-card {
    background: linear-gradient(var(--white-bg), var(--white-bg)) padding-box,
    linear-gradient(135deg, rgba(13, 14, 29, 0.10), rgba(13, 14, 29, 0.04)) border-box;
    border: 1px solid transparent;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(13, 14, 29, 0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 55px rgba(13, 14, 29, 0.12);
    background: linear-gradient(var(--white-bg), var(--white-bg)) padding-box,
    linear-gradient(135deg, rgba(1, 25, 255, 0.55), rgba(13, 14, 29, 0.10)) border-box;
}

.youtube-video-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail::before,
.video-thumbnail::after {
    content: "";
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 1;
    width: 100%;
    height: 100%;
    transition: all 0.35s ease;
    position: absolute;
    pointer-events: none;
}

.video-thumbnail::before {
    background: linear-gradient(180deg, rgba(13, 14, 29, 0) 35%, rgba(13, 14, 29, 0.92) 100%);
}

.video-thumbnail::after {
    opacity: 0;
    background: linear-gradient(180deg, rgba(1, 25, 255, 0) 35%, rgba(1, 25, 255, 0.85) 100%);
}

.youtube-video-link:hover .video-thumbnail::after {
    opacity: 1;
}

.video-thumbnail img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.youtube-video-link:hover .video-thumbnail img {
    transform: scale(1.08);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    font-size: 3.2rem;
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.86);
    border-radius: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.35s ease;
    box-shadow: 0 14px 35px rgba(13, 14, 29, 0.22);
    backdrop-filter: blur(8px);
}

.youtube-video-link:hover .play-button {
    background-color: var(--accent-color);
    color: var(--white-color);
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
}

.video-info {
    padding: 18px 18px 20px;
}

.video-title {
    color: var(--heading-color);
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 56px;
}

.video-date {
    color: rgba(13, 14, 29, 0.70);
    font-size: 18px;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.video-date i {
    margin-right: 0;
    color: var(--accent-color);
}

/* Estilos para o modal de vídeo */
.modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid #f0f0f0;
    background-color: #fafafa;
    padding: 15px 20px;
}

.modal-title {
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}

.modal-body {
    padding: 0;
}

.embed-responsive {
    background-color: #000;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.embed-responsive iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: 0;
}

.modal-dialog {
    max-width: 800px;
    margin: 30px auto;
    width: 90%;
}

.modal-footer {
    padding: 12px 20px;
    background-color: #f8f9fa;
}

@media (max-width: 767px) {
    .video-card {
        margin-bottom: 20px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .modal-dialog {
        margin: 10px auto;
        width: 95%;
    }
    
    .modal-title {
        font-size: 1rem;
    }
    
    .modal-header {
        padding: 12px 15px;
    }
    
    .modal-footer .btn {
        font-size: 0.9rem;
        padding: 0.375rem 0.75rem;
    }
}

.tekup-small-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}
