* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    background-color: #F8F7F5;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== SEÇÃO 06 - Download ===== */
.secao-06 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 2rem;
    gap: 2rem;
    background-color: #F8F7F5;
}

.logo-escrita {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

.title-secion6 {
    text-align: center;
    font-size: 62px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin: 1rem 0;
}

.subtitle-secion6 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    background-color: #F8F7F5;
    margin: 1rem 0 0 0;
}

.imgs-lojas6 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: #F8F7F5;
    border: 2px solid #ddd;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
}

.btn-download:hover {
    border-color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    animation-play-state: paused;
}

.btn-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    background-color: transparent;
}

.btn-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    background-color: transparent;
    color: black;
}

.btn-text strong {
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: transparent;
}

.btn-text p {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0.25rem 0 0 0;
    font-family: Inter;
    background-color: transparent;
}

.img-loja {
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-loja:hover {
    transform: translateY(-5px);
}

.img-loja a {
    text-decoration: none;
}

/* ===== SEÇÃO CARROSSEL ===== */
.secao-carrossel {
    width: 100%;
    padding: 4rem 2rem;
    background-color: #F8F7F5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.titulo-carrossel {
    text-align: center;
    font-size: 5rem;
    font-weight: 300;
    color: #333;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-titulo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.carrossel-container {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    padding: 2rem 0;
}

.carrossel-track {
    display: flex;
    gap: 2rem;
    width: 100%;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.carrossel-item {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.carrossel-item img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    border-radius: 10px;
}

/* Item do centro (maior) */
.carrossel-item:nth-child(3) {
    opacity: 1;
    transform: scale(1.2);
}

@keyframes carrossel-auto {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 5 - 2rem * 5));
    }
}

/* Animação tablet */
@media (max-width: 768px) {
    @keyframes carrossel-auto-tablet {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-220px * 5 - 1.5rem * 5));
        }
    }
}

/* Animação mobile */
@media (max-width: 480px) {
    @keyframes carrossel-auto-mobile {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-180px * 5 - 1rem * 5));
        }
    }
}

/* Animação small mobile */
@media (max-width: 360px) {
    @keyframes carrossel-auto-small {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-140px * 5 - 0.8rem * 5));
        }
    }
}

/* ===== FOOTER ===== */
.footer {
    width: 100%;
    padding: 2rem;
    text-align: center;
    background-color: #F8F7F5;
}

.text-footer {
    font-size: 0.875rem;
    color: #999;
    line-height: 1.5;
}

/* ===== MEDIA QUERIES - TABLET (768px) ===== */
@media (max-width: 768px) {

    .secao-carrossel {
        padding: 3rem 1.5rem;
        gap: 2rem;
    }

    .titulo-carrossel {
        font-size: 3rem;
        gap: 0.8rem;
        padding: 1.2rem 1.5rem;
    }

    .icon-titulo {
        width: 40px;
        height: 40px;
    }

    .carrossel-track {
        gap: 1.5rem;
    }

    .carrossel-item {
        flex: 0 0 220px;
    }

    .carrossel-item img {
        max-width: 200px;
    }

    .secao-06 {
        padding: 1.5rem;
        gap: 1.5rem;
        min-height: auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .logo-escrita {
        max-width: 250px;
    }

    .title-secion6 {

        font-size: 48px;
    }

    .subtitle-secion6 {
        font-size: 0.95rem;
        background-color: #F8F7F5;
    }

    .imgs-lojas6 {
        gap: 0.8rem;
        max-width: 180px;
    }

    .btn-download {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .btn-icon {
        width: 35px;
        height: 35px;
    }

    .btn-text strong {
        font-size: 0.7rem;
    }

    .btn-text p {
        font-size: 0.95rem;
    }

    .footer {
        padding: 1.5rem;
    }

    .text-footer {
        font-size: 0.8rem;
    }
}

/* ===== MEDIA QUERIES - MOBILE (480px) ===== */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    .logo-escrita {

        margin-top: 4%;
        width: 120px;
        background-color: #F3F0ED;

    }

    .secao-06 {

        background-color: #F3F0ED;
    }

    .title-secion6 {
        color: #523A35;

        background-color: #F3F0ED;

    }

    .secao-carrossel {
        padding: 2rem 1rem;
        gap: 1.5rem;
        background-color: #F8A89D;
        margin-top: 4%;
        border-radius: 10px;

    }

    .titulo-carrossel {
        font-size: 1rem;
        font-weight: 400;
        color: #523A35;
        background-color: white;
        gap: 0.6rem;

    }

    .icon-titulo {
        width: 25px;
        height: 25px;
    }

    .carrossel-track {
        gap: 1rem;
        background-color: #F8A89D;

    }

    .carrossel-container {
        background-color: #F8A89D;
    }

    .carrossel-item {
        flex: 0 0 180px;
        background-color: #F8A89D;

    }

    .carrossel-item img {
        max-width: 160px;
    }

    .secao-06 {
        padding: 1rem;
        gap: 1.2rem;
        min-height: auto;
    }

    .logo-escrita {
        max-width: 200px;
    }

    .title-secion6 {
        font-size: 2.5rem;
        font-weight: 400;
    }

    .subtitle-secion6 {
        font-size: 1.3rem;
        line-height: 1.5;
        background-color: #F3F0ED;
    }

    .imgs-lojas6 {
        gap: 0.8rem;
        flex-direction: row;
        max-width: 280px;
    }

    .img-loja {
        max-width: 120px;
        width: 100%;
    }

    .btn-download {
        width: 100%;
        padding: 0.7rem 0.9rem;
    }

    .btn-icon {
        width: 32px;
        height: 32px;
    }

    .btn-text strong {
        font-size: 0.65rem;
    }

    .btn-text p {
        font-size: 0.9rem;
    }

    .footer {
        padding: 1rem;
        margin-top: 10%;
    }

    .text-footer {
        font-size: 1rem;
    }
}

/* ===== MEDIA QUERIES - SMALL MOBILE (360px) ===== */
@media (max-width: 360px) {
    html {
        font-size: 12px;
    }

    .secao-carrossel {
        padding: 1.5rem 0.8rem;
        gap: 1.2rem;
    }

    .titulo-carrossel {
        font-size: 1.2rem;
        background-color: white;
        gap: 0.5rem;
        padding: 0.8rem 1rem;
    }

    .icon-titulo {
        width: 28px;
        height: 28px;
    }

    .carrossel-track {
        gap: 0.8rem;
    }

    .carrossel-item {
        flex: 0 0 140px;
    }

    .carrossel-item img {
        max-width: 130px;
    }

    .secao-06 {
        padding: 0.8rem;
        gap: 1rem;
    }

    .logo-escrita {
        max-width: 180px;
    }

    .title-secion6 {
        font-size: 2.5rem;
    }

    .subtitle-secion6 {
        font-size: 0.85rem;
        background-color: #F8F7F5;
    }

    .imgs-lojas6 {
        gap: 0.7rem;
        max-width: 240px;
        flex-direction: row;
    }

    .img-loja {
        max-width: 100px;
    }

    .btn-download {
        width: 100%;
        padding: 0.65rem 0.8rem;
        gap: 0.7rem;
    }

    .btn-icon {
        width: 28px;
        height: 28px;
    }

    .btn-text strong {
        font-size: 0.6rem;
    }

    .btn-text p {
        font-size: 0.85rem;
    }
}