/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4 {
    font-weight: bold;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.highlight {
    color: #FFD700;
}

/* ===== BOTÕES ===== */
.btn-primary {
    background-color: #FFD700;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background-color: #FFD700;
    color: #000;
}

/* ===== SEÇÃO HERO ===== */
.hero {
    background: linear-gradient(135deg, #000 0%, #333 50%, #000 100%);
    color: white;
    padding: 90px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title h1 {
    margin-bottom: 24px;
    font-size: 3.5rem;
}

.hero-title p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    gap: 32px;
    color: #999;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.badge .icon {
    font-size: 1.2rem;
}

/* Espaço para Imagem do Produto no Hero */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-placeholder {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    padding: 15px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-hero {
    position: relative;
    z-index: 10;
    width: 100%;
    border-radius: 24px;
}

/* ===== SEÇÃO linhas CRUZADAS ===== */

.hero-transition-lines {
    position: absolute;
    bottom: -57px; /* deixa as linhas ultrapassarem a hero */
    left: 0;
    width: 100%;
    height: 150px;
    pointer-events: none;
    z-index: 20;
}

.diagonal-line {
    position: absolute;
    width: 120%;
    height: 50px;
    top: 50%;
    left: -10%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transform-origin: center;
    overflow: hidden; /* Esconde textos que saem da linha */
    flex-wrap: nowrap; /* Impede quebra de linha */
    animation: infinite-scroll 20s linear infinite; /* Animação de rolamento infinito */
}

.diagonal-1 {
    transform: rotate(1.6deg);
    filter: blur(2px); /* Ajuste o valor conforme desejado */
    background:#ebc700;
}

.diagonal-2 {
    transform: rotate(-1.6deg);
    background: #FFD700;
}

.line-text {
    background: transparent;
    padding: 0.25rem 1rem;
    font-weight: 700;
    color: black;
    white-space: nowrap;
    animation: scroll-slide 30s linear infinite;
    margin-right: 30px; /* Espaçamento entre textos */
    display: inline-block;
}

@keyframes scroll-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-300px); }
}

/* ===== SEÇÃO SOBRE ===== */
.about {
    padding: 100px 0;
    background: linear-gradient(to right, #000 0%, #333 50%, #000 100%);
}

.component-text {
  display: inline-block; /* Garante que o texto seja tratado como um bloco inline */
  white-space: normal; /* Permite quebra de linha controlada */
  flex: 1; /* Faz o texto ocupar o espaço disponível */
  color: white;
}

/* Tabs da seção About */
.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-button {
  padding: 12px 24px;
  border: 2px solid #FFD700;
  background: transparent;
  color: #FFD700;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
  background: #FFD700;
  color: #000;
  box-shadow: 0 4px 12px #D4AF37;
}

.tab-content {
  display: none;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.tab-content.active {
  display: block;
}

.tab-content ul {
  list-style: none;
  padding: 0;
}

.tab-content li {
  margin-bottom: 16px;
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #555;
}

.tab-content li::before {
  content: "✔";
  color: #FFD700;
  font-weight: bold;
}


.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    margin-bottom: 20px;
    color: #ffffff;
}

.section-header p {
    color: #ccc;
    font-size: 1.2rem;
}

/* Espaço para Banner 2800x1000 */
.banner-space {
    margin: 20px 0 50px 0;
    text-align: center; /* garante centralização */
}

.banner-space img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* centraliza */
    border-radius: 24px; /* mantém o estilo arredondado */
    box-shadow: 0 4px 12px #D4AF37;
}

.product-description {
    max-width: 800px;
    margin: 0 auto;
}

.product-description p {
    font-size: 1.2rem;
    color: #ccc;
    text-align: center;
}

/* ===== SEÇÃO MODO DE USO ===== */
.usage {
    padding: 100px 0;
    background: linear-gradient(to right, #000 0%, #333 50%, #000 100%);
}

.usage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

.instruction-steps {
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: white;
    margin-bottom: 12px;
}

.step-content p {
    color: #ccc;
}

.warning-box {
    background-color: #fff8e1;
    border: 1px solid #FFD700;
    border-radius: 12px;
    padding: 24px;
}

.warning-box h4 {
    color: #000;
    margin-bottom: 12px;
}

.warning-box p {
    color: #494949;
    font-size: 0.95rem;
}

/* Área de Mídia (Vídeo) */
.usage-media {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.video-placeholder {
    background: linear-gradient(135deg, #000, #333);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.video-placeholder h3 {
    margin-bottom: 12px;
}

.video-placeholder p {
    color: #ccc;
    margin-bottom: 8px;
}

.video-placeholder span {
    color: #999;
    font-size: 0.9rem;
}

.btn-primary-video {
   display: inline-block;
    background: #FFD700;
    color: black;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 4px 12px #D4AF37;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    width: 100%;
    text-align: center;
}

.btn-primary-video:hover {
    background: #ffd900;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px #D4AF37;
}

.btn-primary-video:active {
    transform: translateY(0);
}

.video-container {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px #ffd90075;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}


/* ===== SEÇÃO DEPOIMENTOS ===== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(to right, #000 0%, #333 50%, #000 100%);
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-container {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial {
    display: none;
}

.testimonial.active {
    display: block;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.testimonial blockquote {
    font-size: 1.3rem;
    color: #333;
    font-style: italic;
    margin-bottom: 32px;
    line-height: 1.6;
}

.author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden; /* para cortar a foto em círculo */
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.author-info {
    text-align: left;
}

.author-name {
    font-weight: bold;
    color: #000;
    margin-bottom: 4px;
}

.author-age {
    color: #666;
    font-size: 0.9rem;
}

/* Controles do Carrossel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #FFD700;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: #FFC700;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

/* Indicadores do Carrossel */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #FFD700;
}

/* ===== SEÇÃO VANTAGENS ===== */

.comprar-section {
    padding: 6rem 0;
    background: linear-gradient(to right, #000 0%, #333 50%, #000 100%);
}

.section-title {
    color: #ffffff;
}

.comprar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.comprar-info {
    padding: 1rem 0;
}

.preco-container {
    margin: 2rem 0;
    background-color: rgba(212, 175, 55, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.preco-original {
    font-size: 1.5rem;
    color: #ccc;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.preco-atual {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.preco-economia {
    display: inline-block;
    background-color: rgba(139, 0, 0, 0.2);
    padding: 0.5rem 1.8rem;
    border-radius: 8px;
    color: #FFD700;
    font-weight: 600;
    border: 1px solid rgba(139, 0, 0, 0.3);
}

.vantagens {
    margin: 2rem 0;
}

.vantagens p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: white;
}

.check-icon {
    color: #D4AF37;
    margin-right: 1rem;
}

.seguranca {
    display: flex;
    align-items: center;
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.shield-icon {
    color: #D4AF37;
    margin-right: 0.5rem;
}

.comprar-imagem {
    position: relative;
}

.produto-destaque {
    width: 80%;
    border-radius: 16px;
    box-shadow:  0 8px 24px rgba(0, 0, 0, 0.2);
}

.selo-exclusivo {
    position: absolute;
    top: 2rem;
    right: 7rem;
    background-color: rgba(139, 0, 0, 0.322);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transform: rotate(12deg);
    box-shadow:  0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #D4AF37;
}

.cta-button-large {
    display: inline-block;
    background: #FFD700;
    color: black;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 4px 12px #D4AF37;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    width: 100%;
    text-align: center;
}

.cta-button-large:hover {
    background: #ffd900;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px #D4AF37;
}

.cta-button-large:active {
    transform: translateY(0);
}


/* ===== SEÇÃO FAQ ===== */
.faq {
    padding: 100px 0;
    background: linear-gradient(to right, #000 0%, #333 50%, #000 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: transparent;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid #FFD700;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #FFD700;
    color: black;
}

.faq-icon {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #ccc;
    line-height: 1.6;
}


/* ===== FOOTER ===== */
.footer {
    background-color: #000;
    color: white;
    padding: 20px 0;
}

.footer-content {
    display: grid;
    gap: 60px;
    align-items: center;
    text-align: center;
}

.footer-brand h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.footer-brand p {
    color: #ccc;
    margin-bottom: 16px;
}

.copyright {
    color: #ccc;
    font-size: 0.9rem;
}

/* ===== RESPONSIVIDADE ===== */

/* Laptops pequenos / Tablets grandes (ex: iPad Pro) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px; /* Ajuste: Mais espaço lateral */
    }

    h1 {
        font-size: 2.8rem; /* Ajuste: Reduz tamanhos de títulos */
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-content {
        gap: 40px; /* Ajuste: Menos gap em grids */
    }

    .usage-content, .comprar-grid { /* Ajuste: Adiciona para advantages */
        grid-template-columns: 1fr;
    }

    .comprar-imagem { /* Ajuste: Centraliza imagem em advantages */
        text-align: center;
    }

    .selo-exclusivo { /* Ajuste: Reduz tamanho e posição do selo */
        top: 1rem;
        right: 1rem;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .video-placeholder { /* Ajuste: Reduz padding no video */
        padding: 40px 20px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Header */
    .nav-desktop {
        display: none;
    }
    
    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
        flex-direction: column; /* Ajuste: Empilha badges para evitar squeeze */
        gap: 16px;
    }

    .product-placeholder { /* Ajuste: Reduz max-width da imagem hero */
        max-width: 300px;
    }
    
    /* Linhas diagonais */
    .hero-transition-lines {
        height: 100px; /* Ajuste: Reduz altura para caber melhor */
        bottom: -40px;
    }

    .diagonal-line {
        height: 40px; /* Ajuste: Reduz tamanho das linhas */
        animation-duration: 15s; /* Ajuste: Acelera animação para mobile */
    }

    .line-text {
        font-size: 0.9rem; /* Ajuste: Reduz texto */
        margin-right: 20px;
    }
    
    /* About */
    .tabs {
        gap: 10px; /* Ajuste: Menos gap nos tabs */
        flex-direction: column; /* Ajuste: Empilha tabs em mobile */
    }

    .tab-button {
        width: 100%; /* Ajuste: Tabs full-width */
    }

    .tab-content li {
        font-size: 1rem; /* Reduz o tamanho da fonte para telas menores */
        flex-direction: column; /* Empilha o ícone e o texto */
        align-items: flex-start;
    }

    .component-text {
        width: 100%; /* Garante que o texto use toda a largura disponível */
    }
    
    /* Banner */
    .banner-placeholder {
        aspect-ratio: 16/9;
        padding: 40px 20px;
    }
    
    /* Seções com Grid */
    .usage-content,
    .advantages-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    /* Carrossel */
    .carousel-btn {
        display: none;
    }

    /* FAQ */
    .faq-question {
        font-size: 1rem; /* Ajuste: Reduz texto das perguntas */
        padding: 16px; /* Ajuste: Menos padding */
        word-break: break-word; /* Ajuste: Quebra linhas longas */
    }

    .faq-icon {
        font-size: 1.2rem; /* Ajuste: Reduz ícone */
    }
}

/* Mobile */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem; /* Ajuste: Reduz parágrafos gerais */
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .banner-space {
    display: none;
  }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card,
    .testimonial-container {
        padding: 30px 20px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }

    /* Ajustes adicionais para mobile pequeno */
    .section-header {
        margin-bottom: 40px; /* Ajuste: Menos margem em seções */
    }

    .about, .usage, .testimonials, .faq, .comprar-section {
        padding: 60px 0; /* Ajuste: Reduz padding vertical das seções */
    }

    .author { /* Ajuste: Empilha autor em testimonials */
        flex-direction: column;
        text-align: center;
    }

    .author-info {
        text-align: center; /* Ajuste: Centraliza texto do autor */
    }

    .preco-atual { /* Ajuste: Reduz preço em advantages */
        font-size: 2.5rem;
    }

    .cta-button-large, .btn-primary-video { /* Ajuste: Botões full-width e menores */
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .video-placeholder { /* Ajuste: Aspect-ratio mais quadrado para mobile */
        aspect-ratio: 4/3;
        padding: 30px 15px;
    }

    .play-button { /* Ajuste: Reduz botão de play */
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

}

/* Corrige posicionamento das linhas diagonais */
.hero {
  position: relative; /* referencia para .hero-transition-lines */
}

/* Ajuste específico para mobile */
@media (max-width: 480px) {
  .hero-transition-lines {
    bottom: -30px; /* sobe um pouco para alinhar certinho */
    height: 100px; /* reduz altura para não ocupar espaço demais */
  }
}

@media (max-width: 480px) {
  .diagonal-line {
    width: 100%;   /* em vez de 120% */
    left: 0;       /* centraliza */
  }
}

@media (max-width: 480px) {
  .step-number {
    display: none;
  }
  .tab-content li::before {
  content: "✔";
  color: #FFD700;
  font-weight: bold;
  display: none;
}
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}
