/* RESET E ESTILOS GERAIS SCOPED */

main#landPrincipal {
    width: 100%;
    position: relative;
    display: block;
    font-size: 16px;
    font-family: "Netshoes Ritmo Text Regular", sans-serif;
    overflow-x: hidden;
    color: #333;
    background: #fff;
}

main#landPrincipal div,
main#landPrincipal section,
main#landPrincipal header,
main#landPrincipal footer,
main#landPrincipal h1,
main#landPrincipal h2,
main#landPrincipal h3,
main#landPrincipal h4,
main#landPrincipal p,
main#landPrincipal a,
main#landPrincipal img,
main#landPrincipal form,
main#landPrincipal input {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

main#landPrincipal .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

main#landPrincipal .container-full-mobile {
    padding: 0;
}

main#landPrincipal .section-title {
    font-family: "Netshoes Ritmo Text Bold", sans-serif;
    font-size: 24px;
    text-align: center;
    margin: 30px 0 10px;
    color: #000;
}

main#landPrincipal .section-header-left {
    text-align: left;
    margin: 30px 0;
}

main#landPrincipal .section-header-left .section-title {
    text-align: left;
    margin-bottom: 5px;
    margin-top: 0;
}

main#landPrincipal .section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* FIRST FOLD LAYOUT */
main#landPrincipal .first-fold-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

/* HERO SECTION */
main#landPrincipal .copa-hero {
    flex: 12;
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #002776;
}

main#landPrincipal .copa-hero .container {
    height: 100%;
}

main#landPrincipal .hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* FEDERATIONS (FIRST FOLD BOTTOM) */
main#landPrincipal .copa-federations {
    flex: 3;
    padding: 10px 0;
    background: #fff;
    display: flex;
    align-items: center;
    width: 100%;
}

main#landPrincipal .copa-federations .container {
    width: 100%;
}

main#landPrincipal .hero-btn-container {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

main#landPrincipal .btn-hero {
    background: #009b3a;
    color: #ffdf00;
    padding: 10px 40px;
    font-weight: bold;
    border-radius: 0;
    display: inline-block;
    font-family: "Netshoes Ritmo Text Bold", sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

main#landPrincipal .btn-hero:hover {
    transform: scale(1.05);
    background: #fff;
    color: #000;
    transition: all 0.3s ease;
}

main#landPrincipal .fed-nav-title {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    font-family: "Netshoes Ritmo Text Regular", sans-serif;
    color: #333;
}

main#landPrincipal .federation-item {
    text-align: center;
}

main#landPrincipal .federation-item img {
    width: 80px !important;
    margin: 0 auto 10px;
    display: inline-block !important;
}

main#landPrincipal .federation-item span {
    display: block;
    font-size: 14px;
    color: #333;
}

/* Custom Navigation for Federations (Matching Balls) */
main#landPrincipal .federations-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

main#landPrincipal .federations-slider .owl-nav button {
    pointer-events: all;
    background: transparent !important;
    color: #333 !important;
    font-size: 30px !important;
}

main#landPrincipal .federations-slider .owl-nav button:hover {
    color: #ffdf00 !important;
}

/* Chevrons spacing pushed to edges via justify-content */

/* SELECOES HERO SLIDER - 3 LAYERS */
main#landPrincipal .selecoes-hero-section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Slide container: fills full viewport */
main#landPrincipal .jersey-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* LAYER 1: Static background image */
main#landPrincipal .jersey-bg {
    position: absolute;
    inset: -15%;
    /* Larger boundaries to allow for constant movement */
    background-size: cover;
    background-position: top;
    z-index: 1;
    animation: bgFluidPan 8s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes bgFluidPan {
    0% {
        transform: scale(1.2) translateX(-5%) translateY(-2%);
    }

    100% {
        transform: scale(1.2) translateX(5%) translateY(2%);
    }
}



/* LAYER 3: Foreground shirt + title */
main#landPrincipal .jersey-shirt {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 5vh;
}

main#landPrincipal .fed-item-title {
    display: inline-grid;
    text-transform: uppercase;
    font-family: "Netshoes Ritmo Text Bold", sans-serif;
    font-size: 8rem;
    line-height: 0.9;
    text-align: center;
    margin: 0 0 20px 0;
    z-index: 4;
    letter-spacing: -2px;
}

/* Color Classes for Titles */
main#landPrincipal .jersey-slide.argentina .fed-item-title,
main#landPrincipal .jersey-slide.portugal .fed-item-title,
main#landPrincipal .jersey-slide.espanha .fed-item-title,
main#landPrincipal .jersey-slide.italia .fed-item-title {
    color: #ffffff;
}

main#landPrincipal .jersey-slide.japao .fed-item-title {
    color: #ff0000;
}

main#landPrincipal .jersey-slide.alemanha .fed-item-title {
    color: #a23834;
}

main#landPrincipal .jersey-shirt img {
    height: 70vh !important;
    max-height: 600px !important;
    width: auto !important;
    max-width: 85vw !important;
    object-fit: contain;
    object-position: center;
    display: block !important;
    margin: 0 auto;
}

@media (max-width: 768px) {
    main#landPrincipal .fed-item-title {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    main#landPrincipal .jersey-shirt img {
        height: 60vh !important;
    }
}

/* Slider navigation arrows */
main#landPrincipal .selecoes-full-slider {
    position: relative;
}

main#landPrincipal .selecoes-full-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

main#landPrincipal .selecoes-full-slider .owl-nav button {
    pointer-events: all;
    background: rgba(0, 0, 0, 0.4) !important;
    color: #fff !important;
    font-size: 30px !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

main#landPrincipal .selecoes-full-slider .owl-prev {
    left: 20px;
    position: absolute;
}

main#landPrincipal .selecoes-full-slider .owl-next {
    right: 20px;
    position: absolute;
}

main#landPrincipal .selecoes-full-slider .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

main#landPrincipal .selecoes-full-slider .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    display: block;
    margin: 5px;
    border-radius: 50%;
}

main#landPrincipal .selecoes-full-slider .owl-dot.active span {
    background: #ffdf00;
}

/* CATEGORIES */
main#landPrincipal .copa-categories {
    padding: 30px 0;
}

main#landPrincipal .categories-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

main#landPrincipal .category-item img {
    width: 80px;
    border-radius: 50%;
    border: 2px solid #eee;
    margin-bottom: 10px;
}

main#landPrincipal .copa-product-grid {
    padding: 20px 0;
    margin-bottom: 20px;
}

main#landPrincipal .balls-section {
    background: #eee;
    padding-top: 20px;
}

main#landPrincipal .products-flex {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

main#landPrincipal .product-card {
    min-width: 180px;
    background: #fff;
    padding: 15px;
    border: 1px solid #eee;
    text-align: center;
}

main#landPrincipal .product-card .prod-name {
    font-size: 14px;
    margin: 10px 0;
    height: 40px;
    overflow: hidden;
}

main#landPrincipal .product-card .prod-price {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

main#landPrincipal .product-card .btn-comprar {
    background: #8241f9;
    color: #fff;
    padding: 5px 20px;
    display: block;
}

/* LIFESTYLE BANNERS - FADE EFFECT */
main#landPrincipal .copa-banner-lifestyle {
    position: relative;
    width: 100%;
    margin-bottom: 4px;
}

main#landPrincipal .banner-fader {
    position: relative;
    width: 100%;
    overflow: hidden;
}

main#landPrincipal .copa-banner-lifestyle img {
    width: 100%;
    height: auto;
    display: block;
}

main#landPrincipal .banner-fader img {
    width: 100%;
    display: block;
}

main#landPrincipal .banner-fader .img-top {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    animation: bannerFade 3s ease-in-out infinite;
}

main#landPrincipal .banner-fader .img-bottom {
    position: relative;
    z-index: 1;
}

@keyframes bannerFade {

    0%,
    45% {
        opacity: 1;
    }

    50%,
    95% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* BOOTS SLIDER SECTION */
main#landPrincipal .copa-boots-slider-section {
    width: 100%;
    overflow: hidden;
    /* margin-bottom: 20px; */
}

main#landPrincipal .boots-slider .boot-slide a {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 300px;
    /* Reduced to avoid extra top gap */
    padding: 0;
    margin: 0;
}

main#landPrincipal .boots-slider img {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Nav & Dots for Boots Slider */
main#landPrincipal .copa-boots-slider-section {
    position: relative;
}

main#landPrincipal .boots-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

main#landPrincipal .boots-slider .owl-nav button {
    pointer-events: all;
    background: transparent !important;
    color: #333 !important;
    font-size: 30px !important;
}

main#landPrincipal .boots-slider .owl-nav button:hover {
    color: #ffdf00 !important;
}

main#landPrincipal .owl-dots {
    display: none !important;
}

/* BOLAS E COUNTDOWN SECTION UNIFIED */
main#landPrincipal .copa-bolas-countdown {
    background: url('imgs/bolas-bg.png') no-repeat center top;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
    /* Remove fixed constraints */
}

/* NEW TRIONDA BALLS SECTION LAYOUT */
main#landPrincipal .copa-bolas-slider-section {
    padding: 60px 0;
    display: flex;
    align-items: center;
    background: url('imgs/bg-bolas.png') center/cover no-repeat;
}

@media (max-width: 768px) {
    main#landPrincipal .copa-bolas-slider-section {
        background: url('imgs/bg-bolas-mobile.png') center/cover no-repeat !important;
        padding: 40px 0;
    }
}

main#landPrincipal .container-bolas {
    max-width: 1000px !important;
    /* Tightened container for better centering on Index */
    margin: 0 auto;
    padding: 0 20px;
}

main#landPrincipal .trionda-top-text {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
    font-family: "Netshoes Ritmo Text Regular", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    text-align: center;
}

/* Slide Structure - More compact for Desktop */
main#landPrincipal .trionda-detail-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 10px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

main#landPrincipal .trionda-img-box {
    flex: 1;
    max-width: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

main#landPrincipal .trionda-img-box img {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    object-fit: contain;
}

main#landPrincipal .trionda-info-box {
    flex: 1;
    max-width: 400px;
    text-align: left;
}

main#landPrincipal .trionda-name {
    font-family: "Netshoes Ritmo Text Bold", sans-serif;
    font-size: 44px;
    color: #006b2b;
    margin: 0 0 5px 0;
    line-height: 1;
}

main#landPrincipal .trionda-superficie {
    font-family: "Netshoes Ritmo Text Regular", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin: 0 0 15px 0;
}

main#landPrincipal .trionda-desc {
    font-family: "Netshoes Ritmo Text Regular", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 25px;
}

main#landPrincipal .btn-confira-bola {
    background: #e9731b;
    color: #fff;
    font-family: "Netshoes Ritmo Text Bold", sans-serif;
    font-size: 30px;
    padding: 8px 35px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

main#landPrincipal .btn-confira-bola:hover {
    background: #d66518;
    color: #fff;
}

/* Nav */
main#landPrincipal .trionda-details-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 100;
}

main#landPrincipal .trionda-details-slider .owl-nav button {
    pointer-events: all;
    background: transparent !important;
    color: #333 !important;
    font-size: 50px !important;
    padding: 0 20px !important;
    opacity: 0.6;
    transition: opacity 0.3s;
}

main#landPrincipal .trionda-details-slider .owl-nav button:hover {
    opacity: 1;
}

/* Mobile Adjustments for Slider Refined */
@media (max-width: 768px) {
    main#landPrincipal .copa-bolas-slider-section {
        min-height: auto;
        padding: 40px 0;
        width: 100%;
        overflow: hidden;
        display: block !important;
    }

    main#landPrincipal .container-bolas {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
        margin: 0 auto;
        display: block !important;
    }

    main#landPrincipal .trionda-top-text {
        font-family: "Netshoes Ritmo Text Regular", sans-serif;
        font-size: 14px;
        margin: 0 auto 20px;
        padding: 0 10px;
        line-height: 1.4;
        color: #111;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    main#landPrincipal .trionda-details-slider {
        width: 100% !important;
        margin: 0 auto !important;
        position: relative;
    }

    main#landPrincipal .trionda-detail-slide {
        flex-direction: column;
        gap: 0;
        padding: 0;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        display: flex !important;
    }

    /* Ball Image Box refined - 200px for better fit */
    main#landPrincipal .trionda-img-box {
        max-width: 200px;
        margin: 0 auto;
        padding: 0;
        display: flex !important;
        justify-content: center;
    }

    /* Positioning Arrows on the Ball in Mobile - ENSURED VISIBILITY */
    main#landPrincipal .trionda-details-slider .owl-nav {
        position: absolute;
        top: 100px;
        /* Centered on the 200px ball */
        width: 100%;
        left: 0;
        right: 0;
        display: flex !important;
        justify-content: space-between;
        pointer-events: none;
        z-index: 101;
        padding: 0;
    }

    main#landPrincipal .trionda-details-slider .owl-nav button {
        pointer-events: all;
        font-size: 28px !important;
        color: #e9731b !important;
        opacity: 1 !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 50% !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 5px !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    /* Info Box - Closer to the reference layout */
    main#landPrincipal .trionda-info-box {
        text-align: left;
        max-width: 280px;
        width: 70%;
        margin: 10px auto 0;
        display: block;
        padding-top: 5px;
        right: 40px;
        position: relative;
    }

    main#landPrincipal .trionda-name {
        font-family: "Netshoes Ritmo Text Bold", sans-serif;
        font-size: 32px;
        color: #006b2b;
        margin: 0 0 5px 0;
        line-height: 1;
        font-weight: 800;
    }

    main#landPrincipal .trionda-superficie {
        font-family: "Netshoes Ritmo Text Bold", sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: #000;
        margin: 0 0 10px 0;
    }

    main#landPrincipal .trionda-desc {
        font-family: "Netshoes Ritmo Text Regular", sans-serif;
        font-size: 15px;
        line-height: 1.2;
        color: #111;
        margin-bottom: 15px;
        font-weight: 400;
    }

    main#landPrincipal .btn-confira-bola {
        background: #e9731b;
        color: #fff;
        font-family: "Netshoes Ritmo Text Bold", sans-serif;
        font-size: 28px;
        padding: 8px 0;
        text-decoration: none;
        display: block;
        width: 100%;
        text-align: center;
        border-radius: 0;
    }
}

/* NEWSLETTER */
main#landPrincipal .copa-newsletter {
    background: #8e18ff;
    padding: 50px 20px;
    text-align: center;
}

main#landPrincipal .news-title {
    font-family: "Netshoes Ritmo Text Regular", sans-serif;
    font-size: 24px;
    font-style: italic;
    color: #fff;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

main#landPrincipal #form-novo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

main#landPrincipal #form-novo .form-control {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    order: 1;
}

main#landPrincipal #form-novo input[type="text"],
main#landPrincipal #form-novo input[type="email"],
main#landPrincipal #form-novo input[type="tel"] {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: none;
    font-size: 18px;
    font-family: "Netshoes Ritmo Text Regular", sans-serif;
    color: #444;
    outline: none;
    box-sizing: border-box;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

main#landPrincipal #form-novo input::placeholder {
    color: #999;
    font-style: normal;
}

main#landPrincipal #buttonSubmit {
    width: 100%;
    padding: 16px;
    background: #ccff00;
    /* Destaque amarelo Netshoes */
    color: #8e18ff;
    /* Roxo do fundo, para contraste */
    border-radius: 12px;
    border: none;
    font-family: "Netshoes Ritmo Text Bold", sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s;
    order: 2;
    margin-left: 0;
    height: auto;
}

main#landPrincipal #buttonSubmit:hover:not(:disabled) {
    background-color: #e6ff66;
    /* Amarelo mais claro no hover */
    color: #8e18ff;
    transform: translateY(-2px);
}

main#landPrincipal #buttonSubmit:disabled {
    background: #ccc;
    color: #666;
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

main#landPrincipal #formMessage {
    margin-top: 10px;
    width: 100%;
    order: 3;
    font-size: 14px;
    display: block;
}

main#landPrincipal #formMessage.success-message {
    color: #ccff00;
}

main#landPrincipal #formMessage.error-message {
    color: #ffcccc;
}

main#landPrincipal .checkbox-wrapper {
    width: 100%;
    text-align: left;
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    align-items: flex-start;
    /* Alinhamento ao topo se quebrar linha */
    color: white;
    order: 4;
    line-height: 1.4;
}

main#landPrincipal .checkbox-wrapper label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

main#landPrincipal .checkbox-title {
    color: white !important;
}

main#landPrincipal .checkbox {
    position: relative;
    display: inline-block;
}

main#landPrincipal .checkbox input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

main#landPrincipal .checkbox-marker {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ccc;
    flex-shrink: 0;
}

main#landPrincipal .checkbox input:checked+.checkbox-marker::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #8e18ff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* HISTORY / TIMELINE */
main#landPrincipal .copa-history {
    background: transparent;
    padding: 0;
    margin: 0;
    line-height: 0;
}

main#landPrincipal .copa-history img {
    width: 100%;
    height: auto;
    display: block;
}

main#landPrincipal .history-title {
    font-size: 32px;
    font-family: "Netshoes Ritmo Text Bold", sans-serif;
    margin-bottom: 10px;
}

main#landPrincipal .history-subtitle {
    font-size: 14px;
    max-width: 300px;
    margin: 0 auto 40px;
    line-height: 1.4;
    opacity: 0.9;
}

main#landPrincipal .history-timeline {
    position: relative;
    padding: 20px 0;
}

main#landPrincipal .timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #fff;
    transform: translateY(-50%);
    opacity: 0.3;
}

main#landPrincipal .timeline-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

main#landPrincipal .timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

main#landPrincipal .timeline-item .year {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
    background: #009b3a;
    padding: 0 5px;
}

main#landPrincipal .timeline-item .trophy {
    font-size: 20px;
}

/* COUNTDOWN */
main#landPrincipal .copa-countdown {
    flex: 1;
    background: #d8b83a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
}

main#landPrincipal .cd-faltam {
    font-family: "Netshoes Ritmo Text Regular", sans-serif;
    color: #0280f9;
    font-size: 32px;
    margin-bottom: 5px;
    line-height: 1;
}

main#landPrincipal .countdown-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: baseline;
}

main#landPrincipal .cd-item {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

main#landPrincipal .cd-number {
    font-size: 46px;
    font-family: "Netshoes Ritmo Text Bold", sans-serif;
    color: #0280f9;
    line-height: 1;
}

main#landPrincipal .cd-label {
    font-size: 20px;
    font-family: "Netshoes Ritmo Text Regular", sans-serif;
    color: #0280f9;
    text-transform: lowercase;
}

/* PENTA JOURNEY SECTION */
main#landPrincipal .copa-penta-journey {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #fff;
    margin: 0;
    padding: 0;
}

main#landPrincipal .penta-block {
    width: 100%;
    position: relative;
    line-height: 0;
}

main#landPrincipal .penta-block img {
    width: 100%;
    height: auto;
    display: block;
}

main#landPrincipal .penta-2 {
    background-image: url('imgs/penta2.jpg');
    background-size: cover;
    background-position: center;
    aspect-ratio: 600 / 203;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main#landPrincipal .penta-moving-wrapper {
    width: 100%;
    flex: 1;
    /* take up the remaining space */
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    align-items: center;
    padding: 0 40px;
    /* Margens laterais vazias */
    white-space: nowrap;
    pointer-events: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

main#landPrincipal .penta-moving-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

main#landPrincipal .arraste {
    font-size: 11px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 25px;
    font-style: italic;
    opacity: 0.8;
    width: 90%;
    text-align: right;
}

main#landPrincipal .penta-moving-img {
    height: 65% !important;
    width: auto !important;
    max-width: none !important;
    display: block !important;
}

/* BANNER EDICAO 26 */
main#landPrincipal .copa-banner-edicao {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

main#landPrincipal .copa-banner-edicao img {
    width: 100%;
    height: auto;
    display: block;
}

/* BALLS TYPES SLIDER */
main#landPrincipal .copa-balls-types {
    padding: 20px 0;
    background: #fff;
    margin-bottom: 20px;
}

main#landPrincipal .balls-types-title,
main#landPrincipal .boots-types-title {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 500;
    text-align: center;
}

main#landPrincipal .federations-slider {
    padding: 0 40px;
    position: relative;
}

main#landPrincipal .federation-item {
    text-align: center;
}

main#landPrincipal .balls-types-slider {
    padding: 0 40px;
    position: relative;
}

main#landPrincipal .ball-type-item {
    text-align: center;
}

main#landPrincipal .ball-type-item img {
    width: 80px !important;
    margin: 0 auto 10px;
}

main#landPrincipal .ball-type-item span {
    display: block;
    font-size: 14px;
    color: #333;
}

/* Custom Navigation for Balls */
main#landPrincipal .balls-types-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

main#landPrincipal .balls-types-slider .owl-nav button {
    pointer-events: all;
    background: transparent !important;
    color: #333 !important;
    font-size: 30px !important;
}

main#landPrincipal .balls-types-slider .owl-nav button:hover {
    color: #ffdf00 !important;
}

/* RESPONSIVE DESKTOP */
@media screen and (min-width: 1024px) {
    main#landPrincipal .copa-hero {
        height: calc(100vh - 110px);
    }

    main#landPrincipal .hero-title {
        font-size: 80px;
    }

    main#landPrincipal .products-flex {
        justify-content: center;
        overflow: hidden;
        flex-wrap: wrap;
    }

    main#landPrincipal .product-card {
        min-width: 240px;
    }

    main#landPrincipal .categories-grid {
        justify-content: center;
        gap: 50px;
    }

    main#landPrincipal .news-form {
        display: flex;
        max-width: 600px;
        margin: 20px auto 0;
        gap: 10px;
    }

    main#landPrincipal .news-form input {
        margin-bottom: 0;
    }

    main#landPrincipal .news-form button {
        width: 200px;
        cursor: pointer;
    }

    /* Hover Effects */
    main#landPrincipal .btn-comprar:hover,
    main#landPrincipal .btn-hero:hover,
    main#landPrincipal .btn-highlight:hover {
        opacity: 0.9;
        transform: scale(1.05);
        transition: all 0.3s ease;
    }

    main#landPrincipal .category-item:hover img {
        border-color: #8241f9;
        transition: all 0.3s ease;
    }

    /* Container Dois Logic from Boilerplate */
    main#landPrincipal section.container-dois {
        width: 100vw;
        position: relative;
        left: 50%;
        margin-left: -50vw;
        float: left;
        clear: both;
    }
}

/* FAQ SECTION */
main#landPrincipal .copa-faq {
    background: #6100c1;
    padding: 60px 0;
    color: #fff;
}

main#landPrincipal .faq-item {
    border-bottom: 3px solid #ffdf00;
    margin-bottom: 30px;
}

main#landPrincipal .faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffdf00;
    font-size: 20px;
    font-family: "Netshoes Ritmo Text Bold", sans-serif;
    text-align: left;
    cursor: pointer;
    padding: 15px 0;
    text-transform: uppercase;
}

main#landPrincipal .faq-question i {
    font-size: 24px;
}

main#landPrincipal .faq-answer {
    display: none;
    padding: 20px 0 30px;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
}

main#landPrincipal .faq-answer p {
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    main#landPrincipal .faq-question {
        font-size: 16px;
    }
}