* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FE4521;
    color: white;
    padding-top: 40px;
}

.header {
    background-color: #000;
    text-align: center;
    padding: 8px;
    font-weight: 600;
    font-size: 12px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header img {
    color: #FFD700;
    font-size: 14px;
    margin: 0 8px;
}

.main-content {
    text-align: center;
    padding: 20px 15px;
}

.logo {
    /* Dimensões fixas para evitar CLS */
    width: 180px;
    height: 84px;
    margin: 0 auto 20px auto;
    object-fit: contain;
    display: block;
    /* Reserva espaço antes do carregamento */
    background-color: transparent;
    /* Força dimensões específicas */
    min-width: 180px;
    min-height: 84px;
    max-width: 180px;
    max-height: 84px;
}

.main-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.platforms {
    background-color: #FFD700;
    color: #FE4521;
    font-size: 18px;
    font-weight: 700;
    padding: 12px;
    margin: 20px 0;
    border-radius: 8px;
    text-transform: uppercase;
}

.description {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 20px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

.highlight {
    font-weight: 700;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #FFD700;
}

.products-section {
    background-color: #FFD700;
    padding: 15px 0;
    /* Força altura mínima para evitar CLS */
    min-height: 110px;
    /* Reserva espaço antes do carregamento */
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    overflow-x: hidden;
    /* Força altura fixa para evitar mudancas */
    height: 80px;
    width: 100%;
}

.product-item {
    /* Dimensões absolutamente fixas */
    width: 80px !important;
    height: 80px !important;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    flex-shrink: 0;
    /* Reserva espaço para evitar CLS */
    min-width: 80px !important;
    min-height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    /* Força dimensões para prevenir layout shift */
    box-sizing: border-box;
    /* Garante que o elemento ocupe espaço sempre */
    position: relative;
}

.product-item:nth-child(n+7) {
    display: none;
}

.product-item img {
    /* Dimensões fixas específicas para evitar qualquer layout shift */
    width: 70px !important;
    height: 70px !important;
    object-fit: contain;
    display: block;
    /* Previne mudanças durante carregamento */
    background-color: transparent;
    /* Posicionamento absoluto para evitar push/pull de outros elementos */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Garante que a imagem não cause layout shift */
    max-width: 70px !important;
    max-height: 70px !important;
}

@media (max-width: 768px) {
    .header {
        font-size: 12px;
        padding: 8px;
    }

    .main-content {
        padding: 25px 15px;
    }

    .logo {
        /* Dimensões fixas para tablet */
        width: 200px;
        height: 93px;
        margin: 0 auto 25px auto;
        min-width: 200px;
        min-height: 93px;
        max-width: 200px;
        max-height: 93px;
    }

    .main-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .platforms {
        font-size: 20px;
        padding: 15px;
        margin: 25px 0;
    }

    .description {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .price {
        font-size: 22px;
    }

    .products-section {
        padding: 20px 0;
    }

    .products-container {
        gap: 4px;
        padding: 0 12px;
    }

    .product-item {
        width: 70px;
        height: 70px;
        padding: 2px;
        min-width: 70px;
        min-height: 70px;
    }
    
    .product-item img {
        width: 66px !important;
        height: 66px !important;
    }
}

@media (max-width: 480px) {
    .header {
        font-size: 13px;
        padding: 10px 6px;
    }

    .main-content {
        padding: 25px 12px;
    }

    .logo {
        /* Dimensões fixas para mobile */
        width: 160px;
        height: 74px;
        margin: 0 auto 20px auto;
        min-width: 160px;
        min-height: 74px;
        max-width: 160px;
        max-height: 74px;
    }

    .main-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .platforms {
        font-size: 18px;
        padding: 12px;
        margin: 20px 0;
    }

    .description {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .price {
        font-size: 20px;
    }

    .products-section {
        padding: 15px 0;
    }

    .products-container {
        gap: 4px;
        padding: 0 10px;
        justify-content: center;
    }

    .product-item {
        width: 65px;
        height: 65px;
        padding: 2px;
        min-width: 65px;
        min-height: 65px;
    }
    
    .product-item img {
        width: 61px !important;
        height: 61px !important;
    }
    
    /* Ocultar Gimbal (1º) e Secador de Cabelo (3º) no mobile */
    .product-item:nth-child(1),
    .product-item:nth-child(3) {
        display: none;
    }
}

.location-section {
    text-align: center;
    padding: 30px 20px;
}

.location-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.location-info img {
    color: #FFD700;
    font-size: 32px;
}

.location-title {
    font-weight: 800;
}

.location-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.purchase-button {
    background-color: #FFD700;
    color: #000;
    border: none;
    padding: 20px 60px;
    font-size: 24px;
    font-weight: 800;
    border-radius: 15px;
    cursor: pointer;
    text-transform: uppercase;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    transition: transform 0.2s ease;
}

.purchase-button:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .location-section {
        padding: 25px 15px;
    }

    .location-info {
        font-size: 16px;
        gap: 8px;
    }

    .location-info img {
        font-size: 28px;
    }

    .location-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .purchase-button {
        font-size: 20px;
        padding: 18px 80px;
    }
}

@media (max-width: 480px) {
    .location-section {
        padding: 25px 12px;
    }

    .location-info {
        font-size: 17px;
        gap: 8px;
        margin-bottom: 15px;
        align-items: center;
        text-align: center;
    }

    .location-info img {
        font-size: 30px;
    }

    .location-subtitle {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .purchase-button {
        font-size: 16px;
        padding: 16px 70px;
        border-radius: 10px;
    }
}

.video-section {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 4px solid #FFD700;
    border-bottom: 4px solid #FFD700;
}

.video-header {
    text-align: center;
    margin-bottom: 30px;
}

.video-header h2 {
    color: white;
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

.video-header h2 span {
    color: #FFD700;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    border: 3px solid #FFD700;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    aspect-ratio: 16/9;
    /* Garantir tamanho fixo para evitar CLS */
    min-height: 200px;
}

.video-container video {
    width: 100%;
    height: 100%;
    display: block;
    background-color: #000;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

/* Forçar ocultação dos controles nativos */
.video-container video::-webkit-media-controls {
    display: none !important;
}

.video-container video::-webkit-media-controls-panel {
    display: none !important;
}

.video-container video::-webkit-media-controls-play-button {
    display: none !important;
}

.video-container video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.video-container video::-webkit-media-controls-overlay-play-button {
    display: none !important;
}

.video-container video::-webkit-media-controls-overlay-enclosure {
    display: none !important;
}

.video-container video::-moz-media-controls {
    display: none !important;
}

.video-container video {
    -webkit-media-controls: none;
    -moz-media-controls: none;
    -ms-media-controls: none;
    -o-media-controls: none;
    media-controls: none;
}

/* Regras adicionais para ocultar todos os controles */
video::-webkit-media-controls,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-overlay-play-button,
video::-webkit-media-controls-overlay-enclosure {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

video::-moz-media-controls {
    display: none !important;
}

/* Garantir que nenhum controle apareça */
#customVideo[controls] {
    -webkit-media-controls: none !important;
    -moz-media-controls: none !important;
    controls: none !important;
}

/* Remover todos os controles em todos os estados */
video {
    -webkit-media-controls: none !important;
    -moz-media-controls: none !important;
    -ms-media-controls: none !important;
    -o-media-controls: none !important;
    media-controls: none !important;
}

video[controls] {
    -webkit-media-controls: none !important;
    -moz-media-controls: none !important;
    -ms-media-controls: none !important;
    -o-media-controls: none !important;
    media-controls: none !important;
}

/* Ocultar controles específicos do WebKit */
video::-webkit-media-controls,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-overlay-play-button,
video::-webkit-media-controls-overlay-enclosure,
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display,
video::-webkit-media-controls-timeline,
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-fullscreen-button {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Ocultar controles do Firefox */
video::-moz-media-controls {
    display: none !important;
}

/* Remover qualquer sobreposição de controles */
.video-container video::before,
.video-container video::after {
    display: none !important;
}

/* Força a remoção de qualquer elemento de controle */
video * {
    display: none !important;
}

.video-container video:hover {
    opacity: 0.9;
}


@media (max-width: 768px) {
    .video-section {
        padding: 30px 15px;
    }

    .video-header {
        margin-bottom: 25px;
    }

    .video-header h2 {
        font-size: 24px;
    }

    .video-container {
        border-width: 2px;
    }

}

@media (max-width: 480px) {
    .video-section {
        padding: 25px 12px;
    }

    .video-header {
        margin-bottom: 20px;
    }

    .video-header h2 {
        font-size: 20px;
    }

}

.info-section {
    background-color: #FE4521;
    padding: 40px 20px;
    text-align: center;
    border-top: 4px solid #FFD700;
    border-bottom: 4px solid #FFD700;
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.info-header img {
    color: #FFD700;
    font-size: 28px;
}

.info-header h2 {
    color: white;
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.info-header h2 span {
    color: #FFD700;
}

.info-text {
    color: white;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
    max-width: 100%;
    margin-left: 10px;
    margin-right: 10px;
}

.info-text .highlight {
    color: #FFD700;
    font-weight: 700;
}

.info-text .price-highlight {
    color: #FFD700;
    font-weight: 800;
    font-size: 20px;
}

.final-cta-button {
    background-color: #FFD700;
    color: #000;
    border: none;
    padding: 20px 40px;
    font-size: 28px;
    font-weight: 800;
    border-radius: 15px;
    cursor: pointer;
    text-transform: uppercase;
    width: 100%;
    max-width: 600px;
    margin: 20px auto 0 auto;
    transition: transform 0.2s ease;
}

.final-cta-button:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .info-section {
        padding: 30px 15px;
    }

    .info-header {
        gap: 12px;
        margin-bottom: 25px;
    }

    .info-header img {
        font-size: 26px;
    }

    .info-header h2 {
        font-size: 24px;
    }

    .info-text {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 15px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .info-text .price-highlight {
        font-size: 18px;
    }

    .final-cta-button {
        font-size: 22px;
        padding: 18px 30px;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 25px 12px;
    }

    .info-header {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
    }

    .info-header img {
        font-size: 24px;
    }

    .info-header h2 {
        font-size: 20px;
    }

    .info-text {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 12px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .info-text .price-highlight {
        font-size: 18px;
    }

    .final-cta-button {
        font-size: 20px;
        padding: 16px 25px;
    }

    .prizes-grid {
        gap: 8px;
        padding: 0 12px;
    }

    .prize-row {
        gap: 10px;
    }

    .prize-image {
        width: 110px;
        max-width: 110px;
    }
}

.testimonial-section {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 4px solid #FFD700;
    border-bottom: 4px solid #FFD700;
}

.testimonial-title {
    color: white;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.testimonial-title span {
    color: #FFD700;
}

.clients-carousel-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.clients-carousel {
    display: flex;
    transition: transform 0.3s ease;
    width: 400%;
    cursor: grab;
}

.clients-carousel:active {
    cursor: grabbing;
}

.client-slide {
    width: 25%;
    flex-shrink: 0;
}

.client-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.clients-text {
    color: white;
    font-size: 18px;
    font-weight: 800;
    margin-top: 30px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clients-text .highlight-yellow {
    color: #FFD700;
}

.prizes-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 20px auto 0;
    padding: 0 20px;
}

.prize-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.prize-image {
    width: 180px;
    height: auto;
    max-width: 180px;
    object-fit: contain;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 30px 15px;
    }

    .testimonial-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .clients-carousel-container {
        max-width: 350px;
    }

    .clients-text {
        font-size: 16px;
        margin-top: 25px;
    }

    .prizes-grid {
        gap: 12px;
        padding: 0 15px;
    }

    .prize-row {
        gap: 15px;
    }

    .prize-image {
        width: 140px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .testimonial-section {
        padding: 25px 12px;
    }

    .testimonial-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .clients-carousel-container {
        max-width: 300px;
        border-radius: 10px;
    }

    .clients-text {
        font-size: 20px;
        margin-top: 20px;
    }
}

.delivery-section {
    background-color: #FE4521;
    padding: 40px 20px;
    text-align: center;
    border-top: 4px solid #FFD700;
    border-bottom: 4px solid #FFD700;
}

.delivery-title {
    color: #FFD700;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.delivery-text {
    color: white;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.delivery-logo-container {
    background-color: white;
    border-radius: 20px;
    padding: 25px;
    max-width: 200px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.delivery-logo {
    width: 120px;
    height: 120px;
    max-width: 120px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .delivery-section {
        padding: 30px 15px;
    }

    .delivery-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .delivery-text {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .delivery-logo-container {
        padding: 20px;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .delivery-section {
        padding: 25px 12px;
    }

    .delivery-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .delivery-text {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .delivery-logo-container {
        padding: 15px;
        max-width: 160px;
        border-radius: 15px;
    }
}

.warranty-section {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 4px solid #FFD700;
    border-bottom: 4px solid #FFD700;
}

.warranty-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.warranty-seal {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}

.warranty-text {
    flex: 1;
    text-align: left;
}

.warranty-title {
    color: #FFD700;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
}

.warranty-title .days {
    color: white;
}

.warranty-description {
    color: white;
    font-size: 18px;
    line-height: 1.4;
    max-width: 600px;
}

@media (max-width: 768px) {
    .warranty-section {
        padding: 30px 15px;
    }

    .warranty-content {
        flex-direction: column;
        gap: 20px;
    }

    .warranty-seal {
        width: 120px;
        height: 120px;
    }

    .warranty-text {
        text-align: center;
    }

    .warranty-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .warranty-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .warranty-section {
        padding: 25px 12px;
    }

    .warranty-content {
        gap: 15px;
    }

    .warranty-seal {
        width: 100px;
        height: 100px;
    }

    .warranty-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .warranty-description {
        font-size: 17px;
    }
}

.kit-selection-section {
    background-color: #000;
    padding: 50px 20px 40px 20px;
    text-align: center;
    border-top: 4px solid #FFD700;
    border-bottom: 4px solid #FFD700;
}

.kit-selection-title {
    color: white;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.kit-selection-title .highlight-red {
    color: #FE4521;
}

.kit-container {
    border: 3px solid white;
    max-width: 350px;
    margin: 20px auto 30px auto;
    border-radius: 20px;
    overflow: visible;
    background-color: #000;
    position: relative;
}


.kit-container.popular {
    border-color: #FFD700;
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.kit-container.popular .kit-top-section {
    padding-top: 18px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #000;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.popular-badge img {
    font-size: 10px;
}

.kit-top-section {
    background-color: #FE4521;
    padding: 8px;
    text-align: center;
    margin: -3px -3px 0 -3px;
    border-radius: 17px 17px 0 0;
    position: relative;
}


.kit-logo {
    width: 100%;
    height: auto;
    max-width: 140px;
}

.kit-content {
    padding: 12px;
    text-align: center;
}

.kit-name {
    color: white;
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 6px 0;
    text-transform: uppercase;
}

.kit-box-info {
    background-color: #FE4521;
    color: white;
    font-size: 14px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 15px;
    display: inline-block;
    margin: 0 0 10px 0;
}

.box-image-container {
    margin: 4px 0;
}

.box-image {
    width: 100%;
    max-width: 250px;
    height: auto;
}

.price-info {
    margin: 10px 0;
}

.original-price {
    color: #888;
    font-size: 18px;
    font-weight: 600;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.current-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    color: #FE4521;
    font-size: 32px;
    font-weight: 900;
}

.price-amount {
    color: white;
    font-size: 40px;
    font-weight: 900;
}

.savings-badge {
    background-color: #03CF05;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px;
    margin-top: 5px;
    display: inline-block;
    text-transform: uppercase;
}

.buy-now-button {
    background-color: #03CF05;
    color: white;
    border: none;
    padding: 8px 20px;
    font-size: 22px;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    width: 95%;
    max-width: 245px;
    margin: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.buy-now-button:hover {
    transform: scale(1.05);
    background-color: #02B504;
}

.buy-now-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.buy-now-button:active::before {
    width: 300px;
    height: 300px;
}

@media (max-width: 768px) {
    .kit-selection-section {
        padding: 40px 12px 25px 12px;
    }

    .kit-selection-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .kit-container {
        max-width: 90%;
        margin: 0 auto 20px auto;
    }

    .kit-top-section {
        padding: 6px;
    }

    .kit-content {
        padding: 12px;
    }

    .kit-logo {
        max-width: 120px;
    }

    .kit-name {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .kit-box-info {
        font-size: 12px;
        padding: 2px 8px;
        margin-bottom: 8px;
    }

    .box-image {
        max-width: 190px;
    }

    .box-image-container {
        margin: 3px 0;
    }

    .price-info {
        margin: 8px 0;
    }

    .price-currency {
        font-size: 28px;
    }

    .price-amount {
        font-size: 36px;
    }

    .original-price {
        font-size: 16px;
    }

    .savings-badge {
        font-size: 11px;
        padding: 3px 6px;
    }

    .buy-now-button {
        font-size: 20px;
        padding: 6px 16px;
        margin: 6px 0;
        max-width: 200px;
        width: 90%;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .kit-selection-section {
        padding: 25px 12px;
    }

    .kit-selection-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .kit-container {
        max-width: 85%;
        margin: 0 auto 15px auto;
        border-radius: 15px;
    }
    
    .kit-container.popular {
        margin: 25px auto;
    }

    .kit-top-section {
        padding: 6px;
        margin: 0;
        border-radius: 12px 12px 0 0;
    }

    .kit-content {
        padding: 10px;
    }

    .kit-logo {
        max-width: 110px;
    }

    .kit-name {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .kit-box-info {
        font-size: 13px;
        padding: 2px 6px;
        margin-bottom: 6px;
    }

    .box-image {
        max-width: 170px;
    }

    .box-image-container {
        margin: 0;
    }

    .price-info {
        margin: 6px 0;
    }

    .price-currency {
        font-size: 24px;
    }

    .price-amount {
        font-size: 30px;
    }

    .original-price {
        font-size: 14px;
    }

    .savings-badge {
        font-size: 10px;
        padding: 3px 5px;
    }

    .buy-now-button {
        font-size: 18px;
        padding: 12px 10px;
        margin: 4px 0;
        max-width: none;
        width: 98%;
        border-radius: 6px;
        gap: 6px;
    }

    .popular-badge {
        font-size: 11px;
        padding: 4px 12px;
        top: -15px;
    }
}

.pickup-section {
    background-color: #FE4521;
    padding: 40px 20px;
    text-align: center;
    border-top: 4px solid #FFD700;
    border-bottom: 4px solid #FFD700;
}

.pickup-title {
    color: #FFD700;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.pickup-title .white {
    color: white;
}

.pickup-image-container {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 20px;
    padding: 3px;
    max-width: 600px;
    margin: 0 auto 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.pickup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.pickup-info {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pickup-info img {
    color: #FFD700;
    font-size: 28px;
    margin-top: 3px;
    flex-shrink: 0;
}

.pickup-info-text {
    color: white;
    font-size: 18px;
    line-height: 1.4;
}

.pickup-info-text .highlight {
    color: #FFD700;
    font-weight: 700;
}

.pickup-how-title {
    color: #FFD700;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.pickup-how-title .white {
    color: white;
}

.pickup-steps {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.pickup-step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.pickup-step img {
    color: #FFD700;
    font-size: 26px;
    flex-shrink: 0;
    width: 26px;
    text-align: center;
}

.pickup-step-text {
    color: white;
    font-size: 16px;
    line-height: 1.4;
    flex: 1;
    text-align: left;
}

.pickup-step:last-child {
    margin-bottom: 0;
}

.main-content > *:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .pickup-section {
        padding: 30px 15px;
    }

    .pickup-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .pickup-image-container {
        padding: 3px;
        margin-bottom: 25px;
    }

    .pickup-info {
        margin-bottom: 30px;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .pickup-info img {
        font-size: 26px;
    }

    .pickup-info-text {
        font-size: 16px;
        text-align: center;
    }

    .pickup-how-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .pickup-step {
        margin-bottom: 8px;
    }

    .pickup-step img {
        font-size: 24px;
        width: 24px;
    }

    .pickup-step-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pickup-section {
        padding: 25px 12px;
    }

    .pickup-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .pickup-image-container {
        padding: 2px;
        margin-bottom: 20px;
    }

    .pickup-info {
        margin-bottom: 25px;
    }

    .pickup-info-text {
        font-size: 17px;
    }

    .pickup-how-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .pickup-step {
        margin-bottom: 6px;
    }

    .pickup-step-text {
        font-size: 16px;
    }
}

.faq-section {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 4px solid #FFD700;
    border-bottom: 4px solid #FFD700;
}

.faq-title {
    color: white;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.faq-title .highlight-yellow {
    color: #FFD700;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid white;
    margin-bottom: 2px;
    background-color: #000;
}

.faq-question {
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 20px;
    text-align: left;
    background-color: transparent;
    border: none;
    width: 100%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-question::before {
    content: "+";
    color: white;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
    content: "-";
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px 20px;
    color: white;
    font-size: 16px;
    line-height: 1.5;
    background-color: #000;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 30px 15px;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px;
        gap: 12px;
    }

    .faq-question::before {
        font-size: 20px;
    }

    .faq-answer {
        padding: 0 18px 18px 18px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 25px 12px;
    }

    .faq-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .faq-question {
        font-size: 16px;
        padding: 15px;
        gap: 10px;
    }

    .faq-question::before {
        font-size: 20px;
    }

    .faq-answer {
        padding: 0 15px 15px 15px;
        font-size: 16px;
    }
}


.footer {
    background-color: #FE4521;
    padding: 40px 20px;
    text-align: center;
}

.footer-logo-container {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-logo {
    max-width: 100px;
    height: auto;
    display: block;
    margin: 0;
}

.footer-cnpj {
    color: white;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-address {
    color: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-text {
    color: white;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 15px;
    }

    .footer-logo {
        max-width: 120px;
    }

    .footer-cnpj {
        font-size: 16px;
    }

    .footer-address {
        font-size: 14px;
    }

    .footer-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 12px;
    }

    .footer-logo {
        max-width: 100px;
    }

    .footer-cnpj {
        font-size: 14px;
    }

    .footer-address {
        font-size: 12px;
    }

    .footer-text {
        font-size: 12px;
    }
}

.transparency-section {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 4px solid #FFD700;
    border-bottom: 4px solid #FFD700;
}

.transparency-title {
    color: white;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.transparency-title .highlight-yellow {
    color: #FFD700;
}

.transparency-text {
    color: white;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cnpj-image-container {
    margin: 30px 0 5px 0;
}

.cnpj-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {
    .transparency-section {
        padding: 30px 15px;
    }

    .transparency-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .transparency-text {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .cnpj-image {
        max-width: 500px;
    }

}

@media (max-width: 480px) {
    .transparency-section {
        padding: 25px 12px;
    }

    .transparency-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .transparency-text {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .cnpj-image {
        max-width: 350px;
    }

}
