* {
    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 i {
    color: #FFD700;
    font-size: 14px;
    margin: 0 8px;
}

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

.logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.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;
}

.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;
}

.product-item {
    width: 80px;
    height: 80px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    flex-shrink: 0;
}

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

.product-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

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

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

    .logo {
        max-width: 200px;
        margin-bottom: 25px;
    }

    .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;
    }
}

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

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

    .logo {
        max-width: 160px;
        margin-bottom: 20px;
    }

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

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

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

    .price {
        font-size: 18px;
    }

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

    .products-container {
        gap: 2px;
        padding: 0 10px;
    }

    .product-item {
        width: 58px;
        height: 58px;
        padding: 1px;
    }
}

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

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

.location-info i {
    color: #FFD700;
    font-size: 20px;
}

.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 i {
        font-size: 18px;
    }

    .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: 14px;
        gap: 6px;
        margin-bottom: 15px;
        align-items: flex-start;
    }

    .location-info i {
        font-size: 16px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .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;
}

.video-container video {
    width: 100%;
    height: 100%;
    display: block;
    background-color: #000;
    object-fit: cover;
}

.video-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #FE4521;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 69, 33, 0.4);
}

.play-btn:hover {
    transform: scale(1.1);
    background-color: #e63c1c;
}

.play-btn i {
    color: white;
    font-size: 24px;
    margin-left: 3px;
}

.play-btn.playing {
    opacity: 0;
    pointer-events: none;
}

@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;
    }

    .play-btn {
        width: 70px;
        height: 70px;
    }

    .play-btn i {
        font-size: 20px;
    }
}

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

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

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

    .play-btn {
        width: 60px;
        height: 60px;
    }

    .play-btn i {
        font-size: 18px;
    }
}

.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 i {
    color: #FFD700;
    font-size: 48px;
}

.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 i {
        font-size: 36px;
    }

    .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 i {
        font-size: 32px;
    }

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

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

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

    .final-cta-button {
        font-size: 18px;
        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;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.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: 18px;
        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: 20px;
    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: 15px;
    }

    .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: 12px;
    }

    .delivery-text {
        font-size: 14px;
        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: 14px;
    }
}

.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);
}

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

.popular-badge i {
    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;
}

.prize-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 50px;
    background-color: #FFD700 !important;
    background: #FFD700 !important;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    z-index: 15;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 4px 10px rgba(255, 215, 0, 0.3);
    border: none;
    transition: transform 0.3s ease;
}

.prize-badge:hover {
    transform: scale(1.05);
    background-color: #FFD700 !important;
    background: #FFD700 !important;
}

.prize-badge .percentage {
    color: #000;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    margin-bottom: 2px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.prize-badge .label {
    color: #000;
    font-size: 9px;
    font-weight: 800;
    line-height: 0.9;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.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;
}

.price-currency {
    color: #FE4521;
    font-size: 24px;
    font-weight: 800;
}

.price-amount {
    color: white;
    font-size: 32px;
    font-weight: 800;
}

.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-block;
    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: 20px;
    }

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

    .buy-now-button {
        font-size: 20px;
        padding: 6px 16px;
        margin: 6px 0;
        max-width: 200px;
        width: 90%;
    }
    
    .prize-badge {
        width: 85px;
        height: 40px;
        top: -12px;
        left: -12px;
    }
    
    .prize-badge .percentage {
        font-size: 12px;
    }
    
    .prize-badge .label {
        font-size: 7px;
    }
}

@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-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: 11px;
        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: 18px;
    }

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

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

    .popular-badge {
        font-size: 8px;
        padding: 2px 8px;
        top: -6px;
    }
    
    .prize-badge {
        width: 75px;
        height: 35px;
        top: -10px;
        left: -10px;
    }
    
    .prize-badge .percentage {
        font-size: 11px;
    }
    
    .prize-badge .label {
        font-size: 6px;
    }
}

.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 i {
    color: #FFD700;
    font-size: 24px;
    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 i {
    color: #FFD700;
    font-size: 24px;
    flex-shrink: 0;
    width: 24px;
    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;
}

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

.kit-container:last-child {
    margin-bottom: 0;
}

.transparency-seals:last-child {
    margin-bottom: 0;
}

.info-text:last-child {
    margin-bottom: 0;
}

.client-slide:last-child {
    margin-bottom: 0;
}

.product-item: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 i {
        font-size: 20px;
    }

    .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 i {
        font-size: 20px;
        width: 20px;
    }

    .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: 14px;
    }

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

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

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

.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: 14px;
        padding: 15px;
        gap: 10px;
    }

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

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


.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: 14px;
        margin-bottom: 20px;
    }

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

}
