/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2D3436;
    overflow-x: hidden;
}

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

/* Cores */
:root {
    --primary-color: #FF6B9D;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --support-color: #95E1D3;
    --dark-color: #2D3436;
    --light-color: #F8F9FA;
    --white: #FFFFFF;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

/* Responsividade de imagens */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.img-mobile {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile: esconde a desktop, mostra a mobile */
@media (max-width: 768px) {
    .hero-image {
        display: none;
    }
    .img-mobile {
        display: block;
    }
}

.card-image img {
    width: 150px;
    height: 150px;
    border-radius: 30px;
    object-fit: contain;
    max-width: 100%;
}

.ingredients-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.testimonial-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    max-width: 100%;
    margin: 0 auto 1rem; /* Centraliza a imagem */
}

/* Responsividade adicional para mobile */
@media (max-width: 768px) {
    .card-image img {
        width: 120px;
        height: 120px;
    }
    
    .testimonial-item img {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem; /* Mantém centralização no mobile */
    }
    
    /* Pricing grid mobile - vertical stack */
    .pricing-grid {
        display: grid;
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 1rem;
        padding: 0;
    }
    
    .pricing-card {
        margin: 0 auto; /* Center cards */
        max-width: 350px; /* Limit card width */
        /* Internal design for each card */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }
    
    .pricing-card .card-header {
        order: 1;
        margin-bottom: 0.1rem;
        width: 100%;
        text-align: center;
    }
    
    .pricing-card .card-body {
        order: 2;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        width: 100%;
        gap: 1rem;
    }
    
    .pricing-card .card-image {
        flex-shrink: 0;
    }
    
    .pricing-card .card-image img {
        width: 100px;
        height: 150px;
    }
    
    .pricing-card .card-content {
        flex-grow: 1;
        text-align: left;
    }
    
    .pricing-card .price {
        margin: 0.1rem 0;
    }
    
    .pricing-card .amount {
        font-size: 3rem;
    }
    
    .pricing-card .currency {
        font-size: 1.5rem;
    }
    
    .pricing-card .features {
        margin: 0.1rem 0;
    }
    
    .pricing-card .features li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .pricing-card .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .pricing-card.popular {
        transform: none; /* Remove scale on mobile */
    }
}

@media (max-width: 480px) {
    .card-image img {
        width: 100px;
        height: 100px;
    }
    
    .testimonial-item img {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem; /* Mantém centralização no mobile pequeno */
    }
    
    .pricing-card {
        flex: 0 0 260px; /* Slightly smaller on very small screens */
        padding: 1.5rem;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.8), rgba(78, 205, 196, 0.6));
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Estilo para a seção "O que é a linha Mitolyn" */
.about-mitolyn {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #333;
  }
  
  .about-mitolyn .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
  }
  
  .about-mitolyn p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
  }
  

/* Seções */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
    opacity: 0.8;
}

/* Problema + Solução */
.problem-solution {
    padding: 5rem 0;
    background: var(--light-color);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-side h2,
.solution-side h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.problem-list,
.solution-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-item,
.solution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.problem-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.solution-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Pricing */
.pricing {
    padding: 5rem 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border-color: 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: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.card-image {
    margin: 1.5rem 0;
}

.card-image img {
    width: 150px;
    height: 150px;
    border-radius: 30px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    display: block;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.features {
    list-style: none;
    margin: 1.5rem 0;
}

.features li {
    padding: 0.5rem 0;
    color: var(--dark-color);
}

.features li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* About */
.about {
    padding: 5rem 0;
    background: var(--light-color);
}

.benefits {
    margin-bottom: 5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* Ingredientes */
.ingredients {
    margin-bottom: 5rem;
}

.ingredients-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.ingredients-image img {
    width: 100%;
    border-radius: 15px;
}

.ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ingredient-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ingredient-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.ingredient-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.ingredient-item p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.testimonial-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stars {
    color: var(--accent-color);
}

/* Offer */
.offer {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.offer .section-title {
    color: var(--white);
}

.timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.timer-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.timer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

.timer-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.bonus-section {
    margin: 3rem 0;
}

.bonus-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.bonus-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee i {
    font-size: 2rem;
    color: var(--accent-color);
}

.guarantee h3 {
    margin-bottom: 0.5rem;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: var(--dark-color);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* FAQ */
.faq {
    padding: 5rem 0;
    background: var(--light-color);
}

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

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question h3 {
    color: var(--dark-color);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--dark-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    background: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge img{
    width: 60px;
    height: 60px;
    object-fit: cover;

}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ingredients-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timer {
        gap: 1rem;
    }
    
    .timer-item {
        padding: 1rem;
    }
    
    .timer-number {
        font-size: 2rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Remove duplicate pricing grid styles - already handled above */
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Pricing cards already handled in previous media query */
}

.commitment-section {
    background-color: var(--light-color);
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
}

.commitment-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.commitment-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}




/* ===== BARRA DE OFERTA RELÂMPAGO ===== */
.flash-offer-bar {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF4757 50%, #FF3742 100%);
    color: white;
    padding: 12px 0;
    position: fixed;
    top: 70px; /* Altura do navbar */
    left: 0;
    right: 0;
    z-index: 999;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
}

.flash-offer-bar.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.flash-offer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.flash-offer-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.flash-icon {
    font-size: 24px;
    animation: flash-pulse 1.5s infinite;
}

@keyframes flash-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.flash-text {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.flash-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.flash-timer i {
    animation: tick 1s infinite;
}

@keyframes tick {
    0%, 50% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.flash-timer span {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #FFE66D;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.flash-offer-right {
    display: flex;
    align-items: center;
}

.flash-btn {
    background: linear-gradient(135deg, #FFE66D 0%, #FFA726 100%);
    color: #2D3436;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 230, 109, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flash-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 230, 109, 0.6);
    background: linear-gradient(135deg, #FFA726 0%, #FFE66D 100%);
}

.flash-btn i {
    animation: fire-flicker 1.5s infinite alternate;
}

@keyframes fire-flicker {
    0% { transform: scale(1) rotate(-2deg); }
    100% { transform: scale(1.1) rotate(2deg); }
}

/* Ajustar o hero para compensar a barra */
.hero {
    margin-top: 0;
}

/* Responsividade da barra de oferta */
@media (max-width: 768px) {
    .flash-offer-bar {
        padding: 6px 0;
        top: 60px; /* Altura menor do navbar mobile */
    }
    
    .flash-offer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 5px;
    }
    
    .flash-offer-left {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 5px;
        min-width: 0;
    }
    
    .flash-offer-right {
        flex: 0 0 auto;
        max-width: 80px;
    }
    
    .flash-icon {
        font-size: 14px;
    }
    
    .flash-text {
        font-size: 10px;
        white-space: nowrap;
    }
    
    .flash-timer {
        font-size: 8px;
        padding: 2px 4px;
        white-space: nowrap;
    }
    
    .flash-btn {
        padding: 4px 8px;
        font-size: 8px;
        white-space: nowrap;
        min-width: 60px;
    }
}

@media (max-width: 480px) {
    .flash-offer-bar {
        padding: 4px 0;
    }
    
    .flash-offer-content {
        gap: 3px;
    }
    
    .flash-offer-left {
        gap: 3px;
    }
    
    .flash-offer-right {
        max-width: 70px;
    }
    
    .flash-icon {
        font-size: 12px;
    }
    
    .flash-text {
        font-size: 8px;
    }
    
    .flash-timer {
        font-size: 7px;
        padding: 1px 3px;
    }
    
    .flash-btn {
        padding: 3px 6px;
        font-size: 7px;
        min-width: 50px;
    }
}

/* Efeito de brilho na barra */
.flash-offer-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}



/* ===== POPUP DE REDIRECIONAMENTO ===== */
.redirect-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.redirect-popup.show {
    display: flex;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

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

.popup-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.popup-header h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 0;
    font-weight: 700;
}

.popup-body p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.loading-container {
    margin: 30px 0;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.loading-text {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.badge {
    background: linear-gradient(135deg, var(--secondary-color), var(--support-color));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge i {
    font-size: 0.9rem;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsividade do Popup */
@media (max-width: 768px) {
    .popup-content {
        padding: 30px 25px;
        margin: 20px;
    }
    
    .popup-header h3 {
        font-size: 1.3rem;
    }
    
    .popup-body p {
        font-size: 1rem;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .popup-content {
        padding: 25px 20px;
    }
    
    .popup-icon {
        font-size: 2.5rem;
    }
    
    .popup-header h3 {
        font-size: 1.2rem;
    }
    
    .loading-spinner {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
}



.card-image {
    text-align: center;
}



.card-image {
    text-align: center;
}



.pricing-card .card-image {
    text-align: center;
}

