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

/* Header Fixo */
.header-frete {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #F9A825;
    color: #000000;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.header-frete .icon {
    width: 24px;
    height: 24px;
}

/* Ajuste para o conteúdo não ficar embaixo do header */
body {
    padding-top: 35px;
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.4;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.hero {
    background-color: #000000;
    padding: 60px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* hero-banner styles removed */

.hero h1 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Estilos para o vídeo na seção hero */
.hero-video {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto 30px;
    box-shadow: 0 4px 15px rgba(249, 168, 37, 0.3);
    position: relative;
    background-color: #000;
    aspect-ratio: 16/9;
}

.hero-video video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.btn-primary {
    background-color: #F9A825;
    color: #000000;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #D68910;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 168, 37, 0.3);
}

/* Box Experience */
.box-experience {
    background-color: #121212;
    padding: 50px 0;
}

.experience-desc {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.experiences-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.experience-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: #000000;
    padding: 15px;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 10px;
}



/* Boxes Section */
.boxes {
    background-color: #121212;
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.box-card {
    background-color: #000000;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    will-change: transform;
    contain: layout style;
}

.box-card:hover {
    transform: translateY(-5px);
    border-color: #F9A825;
}

.box-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    background-color: #333;
}

.box-image img {
    width: 100%;
    height: auto;
    display: block;
}

.box-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #F9A825;
}

.box-price {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #F9A825;
}

.box-items {
    list-style: none;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.box-items li {
    padding: 3px 0;
    opacity: 0.8;
}

.btn-secondary {
    background-color: transparent;
    color: #F9A825;
    border: 2px solid #F9A825;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-secondary:hover {
    background-color: #F9A825;
    color: #000000;
}

.box-card .btn-secondary + .btn-secondary {
    margin-top: 10px;
}

/* Como Funciona */
.como-funciona {
    background-color: #000000;
    padding: 50px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    background-color: #F9A825;
    color: #000000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #F9A825;
}

.step p {
    font-size: 0.85rem;
}

/* Benefícios */
.beneficios {
    background-color: #121212;
    padding: 50px 0;
}

.beneficios-list {
    max-width: 500px;
    margin: 0 auto;
}

.beneficio-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px;
    background-color: #000000;
    border-radius: 8px;
    font-size: 0.9rem;
}

.beneficio-item .icon {
    width: 28px;
    height: 28px;
    margin-right: 12px;
}

/* Depoimentos */
.depoimentos {
    background-color: #000000;
    padding: 50px 0;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.depoimento-card {
    background-color: #121212;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #F9A825;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000000;
}

.stars {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.stars .icon {
    width: 22px;
    height: 22px;
}

.depoimento-texto {
    font-style: italic;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.depoimento-autor {
    font-weight: 600;
    color: #F9A825;
    font-size: 0.8rem;
}

/* FAQ */
.faq {
    background-color: #121212;
    padding: 50px 0;
}

.faq-item {
    background-color: #000000;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #000000;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.faq-question:hover {
    background-color: #1a1a1a;
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #1a1a1a;
    font-size: 0.85rem;
}

.faq-answer.active {
    padding: 15px;
    max-height: 150px;
}

.faq-toggle {
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
}

.faq-toggle.active {
    transform: rotate(180deg);
}

/* Rodapé */
.footer {
    background-color: #000000;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-content p {
    font-size: 0.7rem;
    opacity: 0.8;
    white-space: nowrap;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-frete {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .header-frete .icon {
        width: 22px;
        height: 22px;
    }

    body {
        padding-top: 35px;
    }

    .hero {
        padding: 40px 0;
        min-height: 50vh;
    }

    /* hero-banner media query styles removed */

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .boxes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .container {
        padding: 0 15px;
    }

    .box-card {
        padding: 20px;
    }

    .btn-primary, .btn-secondary {
        font-size: 1rem;
        padding: 12px 24px;
    }

    .box-experience {
        padding: 50px 0;
    }

    .experience-desc {
        font-size: 1.1rem;
        padding: 0 20px;
        line-height: 1.5;
    }

    .experiences-grid {
        gap: 20px;
    }

    .experience-card {
        flex: 0 0 280px;
        padding: 12px;
    }

    .experience-overlay h3 {
        font-size: 1.4rem;
    }

    .experience-subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 18px;
    }
    
    .faq-answer {
        font-size: 1rem;
    }
    
    .faq-answer.active {
        max-height: 200px;
        padding: 18px;
    }
    
    .box-title {
        font-size: 1.4rem;
    }
    
    .box-price {
        font-size: 1.6rem;
    }
    
    .box-items li {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .box-card p {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .header-frete {
        font-size: 0.85rem;
        padding: 7px 10px;
    }

    .header-frete .icon {
        width: 20px;
        height: 20px;
    }

    body {
        padding-top: 32px;
    }

    .hero h1 {
        font-size: 1.7rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .box-title {
        font-size: 1.3rem;
        margin-top: 12px;
    }

    .box-price {
        font-size: 1.5rem;
        margin: 12px 0;
    }

    .box-items {
        margin-bottom: 15px;
    }

    .box-items li {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .box-card {
        padding: 18px;
    }

    .box-card p {
        font-size: 0.95rem !important;
    }

    .btn-primary, .btn-secondary {
        font-size: 0.95rem;
        padding: 12px 20px;
        width: 100%;
        margin-top: 10px;
    }

    .experience-desc {
        font-size: 1rem;
        padding: 0 15px;
        line-height: 1.4;
    }
    
    .experiences-grid {
        gap: 15px;
    }
    
    .experience-card {
        flex: 0 0 240px;
    }
    
    .como-funciona {
        padding: 40px 0;
    }
    
    .step {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .step-number {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .step h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .step p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .beneficios {
        padding: 40px 0;
    }
    
    .beneficio-item {
        font-size: 1rem;
        margin-bottom: 12px;
        padding-left: 30px;
    }
    
    .beneficio-item:before {
        font-size: 1.1rem;
    }
    
    .depoimentos {
        padding: 40px 0;
    }
    
    .depoimento-card {
        padding: 15px;
    }
    
    .depoimento-texto {
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 12px 0;
    }
    
    .depoimento-autor {
        font-size: 0.9rem;
    }
    
    .faq {
        padding: 40px 0;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }
    
    .faq-answer {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .faq-answer.active {
        padding: 15px;
        max-height: 250px;
    }
    
    .footer {
        padding: 25px 0;
    }
    
    .footer-content p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .experiences-grid {
        gap: 12px;
    }

    .experience-card {
        flex: 0 0 220px;
        padding: 8px;
    }

    .experience-overlay h3 {
        font-size: 1.1rem;
    }

    .experience-subtitle {
        font-size: 0.8rem;
    }
}

.experience-card:hover img {
    transform: scale(1.02);
}

/* Visualização dos Produtos */
.produtos-view {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    z-index: 1001;
    overflow-y: auto;
    padding: 60px 20px 20px;
}

.produtos-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #121212;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #F9A825;
    z-index: 1002;
}

.produtos-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F9A825;
    margin: 0;
}

.close-produtos {
    font-size: 1.8rem;
    color: #F9A825;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-produtos:hover {
    background-color: rgba(249, 168, 37, 0.1);
    transform: rotate(90deg);
}

.produtos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.produto-card {
    background-color: #121212;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(249, 168, 37, 0.2);
    transition: transform 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-5px);
    border-color: #F9A825;
}

.produto-card img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 10px;
}

.produto-nome {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #F9A825;
}

.produto-preco {
    font-size: 1rem;
    color: #FFFFFF;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .produtos-view {
        padding: 60px 20px 20px;
    }

    .produtos-header {
        padding: 15px 20px;
    }

    .produtos-title {
        font-size: 1.4rem;
    }

    .close-produtos {
        font-size: 1.6rem;
        width: 40px;
        height: 40px;
    }

    .produtos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .produto-card {
        padding: 18px;
    }

    .produto-nome {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .produto-preco {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .produtos-view {
        padding: 55px 15px 15px;
    }
    
    .produtos-header {
        padding: 12px 15px;
    }
    
    .produtos-title {
        font-size: 1.3rem;
    }
    
    .close-produtos {
        font-size: 1.5rem;
    }
    
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .produto-card {
        padding: 15px;
        border-radius: 12px;
    }

    .produto-nome {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .produto-preco {
        font-size: 0.95rem;
    }
    
    .produto-card img {
        margin-bottom: 12px;
    }
}

/* Conteúdo principal sempre visível */
.main-content {
    opacity: 1;
    visibility: visible;
}

.main-content.show {
    opacity: 1;
    visibility: visible;
}

/* Estilos do vídeo na seção hero */
.hero-video {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 25px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background-color: #000;
    aspect-ratio: 16/9;
    box-shadow: 0 4px 15px rgba(249, 168, 37, 0.3);
}

.hero-video video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

/* Simplified video controls - removed unused Plyr CSS */

/* Botão de play personalizado como fallback */
.custom-play-button {
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 20;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-play-button:hover {
    opacity: 0.9;
}

/* Esconder botão personalizado quando vídeo começar */
.custom-play-button.hidden {
    display: none;
}

/* Barra de Progresso do YouTube */
.video-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 15;
}

.video-progress-fill {
    height: 100%;
    background-color: #ff0000;
    width: 0%;
    transition: width 0.1s ease;
}

/* Estilos de vídeo movidos para .hero-video */

/* Responsividade do vídeo na seção hero */
@media (max-width: 480px) {
    .hero-video {
        margin-bottom: 20px;
    }

    .custom-play-button {
        width: 100%;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 10;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .custom-play-button img {
        width: 100%;
        height: auto;
        display: block;
    }

    .video-progress-bar {
        height: 4px;
    }
}

/* Estilos do botão de ação do popup removidos */

/* Animação Pulse para o botão */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(249, 168, 37, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(249, 168, 37, 0.8);
    }
    100% {
        box-shadow: 0 4px 15px rgba(249, 168, 37, 0.4);
    }
}

/* Animação FadeIn para o botão aparecer */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}