:root {
    --primary-color: #FF4081;
    --secondary-color: #3F51B5;
    --accent-color: #FFC107;
    --background-color: #f8f9fa;
    --text-color: #333;
    --white: #FFFFFF;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --font-family: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

/* SEÇÃO HERÓI */
.hero-section {
    background: linear-gradient(135deg, rgba(255, 64, 129, 0.9), rgba(63, 81, 181, 0.9)), 
                url('https://images.unsplash.com/photo-1594736797933-d0401ba2fe65?q=80&w=2000') center/cover;
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.95;
}

.video-container {
    margin: 40px 0;
}

.video-placeholder {
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    padding: 60px 20px;
    border: 2px dashed rgba(255,255,255,0.5);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: rgba(0,0,0,0.4);
    transform: scale(1.02);
}

.play-button {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), #e91e63);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 64, 129, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 64, 129, 0.4);
}

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

/* SEÇÕES GERAIS */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

/* PROBLEMA + SOLUÇÃO */
.problem-solution {
    padding: 80px 0;
    background: var(--white);
}

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

.problem-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.solution-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
}

.solution-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.solution-box p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* DEPOIMENTOS - ATUALIZADO PARA VÍDEOS INCORPORADOS */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-video {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Estilos para vídeos incorporados do YouTube */
.testimonial-video .video-container {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.testimonial-video .video-container iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.testimonial-video .video-container p {
    color: var(--text-color);
    font-family: var(--font-family);
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.testimonial-video .video-container strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-video .video-container small {
    color: #666;
    font-size: 0.95rem;
    display: block;
    margin-top: 5px;
}

/* Manter estilos antigos para compatibilidade com placeholders */
.testimonial-video .video-placeholder {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.testimonial-video .video-placeholder:hover {
    background: #2c3e50;
}

.results-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
}

/* SOBRE O DESTRAVA */
.about-destrava {
    padding: 80px 0;
    background: var(--white);
}

.destrava-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.destrava-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.destrava-intro {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.what-you-get {
    background: var(--light-gray);
    padding: 60px;
    border-radius: 20px;
}

.what-you-get h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* PREÇOS */
.pricing-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.pricing-description {
    color: #666;
    margin-bottom: 30px;
}

.pricing-price {
    margin-bottom: 10px;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.price-period {
    font-size: 1.2rem;
    color: #666;
}

.pricing-total {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.pricing-savings {
    color: var(--success-color);
    font-weight: 700;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-button {
    display: block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.pricing-button:hover {
    background: #2c3e50;
    transform: translateY(-2px);
}

.popular-button {
    background: var(--primary-color);
    animation: pulse 2s infinite;
}

.popular-button:hover {
    background: #e91e63;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pricing-guarantee {
    font-size: 0.9rem;
    color: #666;
}

.pricing-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

/* GARANTIA */
.guarantee-section {
    padding: 80px 0;
    background: var(--white);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.guarantee-seal {
    flex-shrink: 0;
}

.seal-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 64, 129, 0.3);
}

.guarantee-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.guarantee-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.urgency-box {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.urgency-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.urgency-box p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* SOBRE O GIAN */
.about-gian {
    padding: 80px 0;
    background: var(--light-gray);
}

.gian-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.gian-photo {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.gian-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.gian-text h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.gian-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.gian-credentials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.gian-credentials span {
    color: var(--success-color);
    font-weight: 600;
}

/* CTA FINAL */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-cta-button {
    font-size: 1.3rem;
    padding: 20px 50px;
    background: var(--accent-color);
    color: var(--text-color);
}

.final-cta-button:hover {
    background: #ffb300;
}

.final-guarantee {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.9;
}

/* RODAPÉ */
.footer {
    background: #2c3e50;
    color: var(--white);
    text-align: center;
    padding: 40px 0;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .destrava-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gian-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .results-stats {
        gap: 30px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .what-you-get {
        padding: 40px 20px;
    }
    
    /* Responsividade para vídeos incorporados */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-video {
        padding: 15px;
    }
    
    .testimonial-video .video-container iframe {
        height: 180px;
    }
}


/* MOBILE ONLY */
@media (max-width: 480px) {
  .pricing-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-card{
    padding: 20px 16px;
    border-radius: 16px;
  }

  .pricing-header h3{
    font-size: clamp(18px, 4.5vw, 22px);
    text-align: center;
  }
  .pricing-description{
    font-size: 13px;
    line-height: 1.3;
    margin-top: 4px;
    text-align: center;
  }

  .price-compare{
    display: block;
    font-size: 12px;
    margin: 8px auto 6px;
    text-align: center;
  }
  .popular .price-compare{
    color: #d97706; /* mantém o destaque no mais popular */
    font-weight: 700;
  }

  .pricing-price{
    justify-content: center;      /* centraliza o bloco do preço */
    align-items: flex-end;        /* mantém baseline consistente */
    gap: 6px;
    margin-bottom: 8px;
  }
  .price-label{
    font-size: 12px;
    color: #6b7280;
    margin-right: 2px;
  }
  .price-currency{
    font-size: 18px;
    align-self: flex-start;
    transform: translateY(6px);
  }
  .price-amount{
    font-size: clamp(32px, 12vw, 46px); /* responsivo p/ não “estourar” */
    font-weight: 800;
    line-height: 1;
  }
  .price-period{
    font-size: 14px;
    align-self: flex-end;
    margin-left: 2px;
  }

  .pricing-total,
  .pricing-savings{
    text-align: center;
    font-size: 14px;
    margin: 6px 0;
  }

  .pricing-features{
    font-size: 14px;
  }

  .pricing-button{
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }

  /* Badge “MAIS POPULAR” centralizada e menor */
  .popular .popular-badge{
    position: relative;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    padding: 6px 10px;
  }
}



