.sec-initial{
    margin-bottom: 0!important;
}

.sec-initial .slide,
.sec-initial .banner {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 1080px;
}

.sec-initial .banner::before{
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background-color: var(--black);
}

.sec-initial .content {
    padding-top: 330px;
    padding-bottom: 200px;
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.sec-initial .txt {
    color: var(--white);
}

.sec-initial .txt h1 {
    font-family: 'Metropolitano', sans-serif;
    font-size: 2.9rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

.sec-initial .txt p:first-of-type {
    margin-top: 15px;
}

.sec-initial .txt p {
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 0px;
}

.sec-initial .btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.sec-initial .slick-arrow {
    color: var(--light-gray);
}

.sec-initial .slick-arrow.slick-next{
    right: 200px;
}

.sec-initial .slick-arrow.slick-prev{
    left: 200px;
}

.sec-initial .slick-arrow:hover {
    color: var(--tertiary);
}

.sec-initial .slick-dots{
    bottom: 50px;
    padding: 0 200px 0;
    text-align: right;
}

.sec-initial .slick-dots li {
    width: 15px;
    height: 5px;
    margin: 0;
}

.sec-initial .slick-dots li button {
    width: 15px;
    height: 5px;
    padding: 0;
    border-radius: 0;
    background: var(--white);
    transition: background 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.sec-initial .slick-dots li button::before {
    display: none;
}

.sec-initial .slick-dots li.slick-active button {
    background: var(--primary);
    opacity: 1;
}

@media (max-width: 1200px) {

    .sec-initial .slide,
    .sec-initial .banner {
        aspect-ratio: unset;
        min-height: 100svh;
    }

    .sec-initial .content {
        padding: 190px 60px 150px;
        gap: 20px;
    }

    .sec-initial .txt {
        width: 100%;
    }

    .sec-initial .txt h1 {
        font-size: 2.4rem;
    }

    .sec-initial .btns{
        flex-direction: column;
        align-items: flex-start;
    }

    .sec-initial .slick-arrow.slick-prev {
        left: 8px;
    }

    .sec-initial .slick-arrow.slick-next {
        right: 20px;
    }

    .sec-initial .slick-dots {
        padding: 0;
        text-align: center;
    }
}

/* ── Modo Vídeo YouTube ─────────────────────────────── */
.sec-initial.sec-video {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.sec-video .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 */
}

.sec-video .video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

/* ── sec-experiences ─────────────────────────────── */
.sec-experiences {
    position: relative;
    padding: 60px 0 80px;
    background-color: var(--white);
}

.sec-experiences .container {
    max-width: var(--container-narrow);
}

.sec-experiences .experiences-header {
    text-align: center;
}

.sec-experiences .btn-video {
    position: relative;
    top: -40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 77px;
    height: 109px;
    border-radius: 0;
    color: var(--primary);
    background-color: var(--white);
    box-shadow: 9px 9px 20px 0px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sec-experiences .btn-video:hover {
    background-color: var(--primary);
    color: var(--white);
}

.sec-experiences .btn-video.youtube-video-link::after{
    font-family: "bootstrap-icons";
    content: "\F4F4";
    font-size: 25px;
    color: currentColor;
}

.sec-experiences .experiences-title {
    font-family: 'Metropolitano', sans-serif;
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1;
    color: var(--primary);
    margin: 0 auto 30px;
}

.sec-experiences hr{
    width: 70px;
    height: 4px;
    background-color: var(--tertiary);
    border: none;
    margin: 0 auto;
    opacity: 1;
}

.sec-experiences .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 50px 0 70px;
}

.sec-experiences .social-links a {
    color: var(--primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.sec-experiences .social-links a svg {
    transition: all 0.3s ease;
}

.sec-experiences .social-links a:hover svg{
    color: var(--tertiary);
}

.sec-experiences .experiences-slider {
    position: relative;
    padding: 0;
}

.sec-experiences .experiences-slider .slide {
    padding: 0 20px;
}

.sec-experiences .item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.sec-experiences .icon {
    width: 100%;
    height: 110px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    padding: 30px;
    flex-shrink: 0;
}

.sec-experiences .icon .img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sec-experiences .item-title {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--black);
    font-weight: 400;
}

.sec-experiences .experiences-slider .slick-arrow i{
    font-size: 20px;
    color: var(--primary);
}

.sec-experiences .experiences-slider .slick-arrow:hover i{
    color: var(--tertiary);
}

.sec-experiences .experiences-slider .slick-arrow{
    top: 55px;
}

.sec-experiences .experiences-slider .slick-prev {
    left: -30px;
}

.sec-experiences .experiences-slider .slick-next {
    right: -30px;
}

.sec-experiences .slick-dots{
    bottom: -60px;
}

.sec-experiences .slick-dots li {
    width: 15px;
    height: 5px;
    margin: 0;
}

.sec-experiences .slick-dots li button {
    width: 15px;
    height: 5px;
    padding: 0;
    border-radius: 0;
    background: var(--primary);
    transition: background 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.sec-experiences .slick-dots li button::before {
    display: none;
}

.sec-experiences .slick-dots li.slick-active button {
    background: var(--tertiary);
    opacity: 1;
}

@media (max-width: 1200px) {
    .sec-experiences {
        padding: 60px 0;
    }

    .sec-experiences .container{
        padding: 0 3rem;
    }

    .sec-experiences .experiences-title {
        font-size: 1.4rem;
        line-height: 1.3;
        padding: 0 20px;
    }
    .sec-experiences .experiences-slider .slick-next{
        right: 0px;
    }

    .sec-experiences .experiences-slider .slick-prev{
        left: 0;
    }
}

@media (max-width: 768px) {

    .sec-experiences::after{
        bottom: -30px;
        width: 120px;
        height: 30px;
    }

    .sec-experiences::before{
        display: none;
    }

    .sec-experiences .experiences-slider {
        padding: 0 36px;
    }

    .sec-experiences .slick-dots{
        bottom: -40px;
        left: 0;
    }

}

/* ── sec-about ──────────────────────────────────────────── */
.sec-about {
    background-color: var(--tertiary);
    padding: 100px 0;
}

.sec-about .about-video-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 60px;
}

.sec-about .about-video-bg iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.sec-about .row{
    background-image: repeating-linear-gradient(
        to bottom,
        rgba(37, 53, 119, 0.1) 0px,
        rgba(37, 53, 119, 0.1) 38px,
        transparent 38px,
        transparent calc(38px + 15px)
    );
    background-image: repeating-linear-gradient(
        to bottom,
        color-mix(in srgb, var(--secondary), transparent 90%) 0px,
        color-mix(in srgb, var(--secondary), transparent 90%) 38px,
        transparent 38px,
        transparent calc(38px + 15px)
    );
}

.sec-about .about-content{
    position: relative;
    padding: 0 40px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.sec-about .about-logo {
    height: 50px;
    width: auto;
    margin-bottom: 25px;
}

.sec-about .about-text {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 28px;
}

.sec-about .about-text p {
    margin-bottom: 0;
}

.sec-about .about-btns {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sec-about .btn-secondary{
    color: var(--white);
    background-color: var(--primary);
}

.sec-about .btn-secondary:hover{
    color: var(--primary);
    background-color: var(--white);
}

.sec-about .about-signature {
    display: block;
    height: 40px;
    width: auto;
}

.sec-about .about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .sec-about .about-content{
        padding: 0;
    }

    .sec-about .about-img {
        margin-top: 40px;
        height: 350px;
    }
}

/* ── sec-event-type ──────────────────────────────────────── */
.sec-event-type {
    padding: 80px 0;
    margin-top: -1px;
    background-color: var(--primary);
    background: url(../img/buffet-background.png) no-repeat center center/cover;
}

/* cabeçalho */
.sec-event-type .event-type-header {
    text-align: center;
    margin-bottom: 50px;
}

.sec-event-type .event-type-title {
    font-family: 'Metropolitano', sans-serif;
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
    margin: 0 auto 50px;
    max-width: 260px;
}

.sec-event-type .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.sec-event-type .social-links a {
    color: var(--white);
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.sec-event-type .social-links a:hover {
    color: var(--tertiary);
}

/* coluna esquerda */
.sec-event-type .event-type-text {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-right: 30px;
}

.sec-event-type .event-type-text p {
    margin-bottom: 0;
}

/* coluna central */
.sec-event-type .event-type-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

/* coluna direita */
.sec-event-type .event-type-content {
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.sec-event-type .event-types {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sec-event-type .event-type {
    border-bottom: 1px solid var(--tertiary);
}

.sec-event-type .event-type:last-child {
    border-bottom: 0;
}

.sec-event-type .event-type a {
    display: block;
    padding: 14px 0;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s ease;
}

.sec-event-type .event-type a:hover,
.sec-event-type .event-type.active a {
    color: var(--tertiary);
}

@media (max-width: 992px) {
    .sec-event-type .event-type-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .sec-event-type .event-type-img {
        height: 380px;
        margin-bottom: 40px;
    }

    .sec-event-type .event-type-content {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .sec-event-type {
        padding: 60px 0;
    }

    .sec-event-type .event-type-img {
        height: 280px;
    }

    .sec-event-type .event-type a{
        font-size: 1.7rem;
    }
}

/* ── sec-cta ────────────────────────────────────────────── */
.sec-cta {
    position: relative;
    overflow: hidden;
    height: 500px;
    margin-top: -1px;
}

.sec-cta .cta-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    text-align: center;
}

.sec-cta .cta-text {
    font-family: 'Metropolitano', sans-serif;
    color: var(--white);
}

.sec-cta .cta-text p {
    margin: 0;
}

@media (max-width: 768px) {
    .sec-cta .cta-text {
        font-size: 0.95rem;
    }
}