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

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #252525;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent: #00ff88;
    --accent-hover: #00cc6a;
    --error: #ff4444;
    --success: #00ff88;
    --border: #333333;
    --pix-color: #32BCAD;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

/* Botão de Link do Checkout */
.checkout-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #000;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.checkout-link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 255, 136, 0.4);
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
}

.checkout-link-button span {
    letter-spacing: 0.5px;
}

.checkout-link-button svg {
    transition: transform 0.3s ease;
}

.checkout-link-button:hover svg {
    transform: translateX(5px);
}

/* Estilos do Carrossel */
.testimonial-carousel {
    position: relative;
    width: 100%;
    margin: 20px auto;
    overflow: visible; /* Permite que os botões fiquem visíveis fora do container */
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 400px; /* Limita largura para manter proporção vertical */
    margin: 0 auto;
    aspect-ratio: 9/16; /* Proporção 9:16 (vertical) */
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
}

.carousel-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    display: block;
}

/* Botões de navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 15px;
}

.carousel-btn-next {
    right: 15px;
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(68, 68, 68, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: #363636;
    width: 24px;
    border-radius: 5px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .carousel-container {
        max-width: 90vw; /* Em mobile, usa 90% da largura da viewport */
        max-height: 70vh; /* Limita altura para não quebrar o layout */
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    .carousel-indicators {
        bottom: 10px;
    }
}

/* Desktop - imagens maiores */
@media (min-width: 769px) {
    .carousel-container {
        max-width: min(400px, 50vh); /* Ajusta baseado na altura da viewport */
        max-height: 60vh; /* Limita altura para desktop */
    }
}

/* Touch/swipe visual feedback */
.carousel-track.dragging {
    transition: none;
    cursor: grabbing;
}

.checkout-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

.checkout-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.checkout-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 0.9rem;
}

.checkout-wrapper {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border);
}

.product-summary {
    margin-bottom: 30px;
}

.product-card {
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.product-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.product-price-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
}

.price-breakdown {
    margin-top: 20px;
    padding: 15px;
    background: var(--bg-primary);
    border-radius: 8px;
    font-size: 0.9rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-secondary);
}

.breakdown-item:first-child {
    padding-top: 0;
}

.breakdown-item + .breakdown-item {
    border-top: 1px solid var(--border);
}

.email-section {
    margin-bottom: 30px;
}

.email-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-primary);
}

.form-group input::placeholder {
    color: var(--text-secondary);
}

.order-bumps {
    margin-bottom: 30px;
}

.order-bumps h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: center;
}

.bump-item {
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.bump-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.bump-item.selected {
    border-color: var(--accent);
    background: rgba(0, 255, 136, 0.1);
}

.bump-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.bump-checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.bump-content {
    flex: 1;
}

.bump-header {
    margin-bottom: 8px;
}

.bump-title {
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.4;
    display: block;
    margin-bottom: 5px;
}

.bump-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price-discount {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}


.bump-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkout-footer {
    text-align: center;
}

.order-total {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.order-total span:last-child {
    color: var(--accent);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--pix-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pix-icon {
    width: 24px;
    height: 24px;
}

.btn-submit:hover {
    background: #2a9d8f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(50, 188, 173, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.payment-security {
    margin-top: 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Resumo do Pedido */
.order-summary {
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.order-summary h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

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

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.summary-item:last-child {
    border-bottom: none;
}

.item-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.item-name {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.item-quantity {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.item-price {
    color: var(--accent);
    font-weight: bold;
    font-size: 0.95rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid var(--border);
    font-size: 1.2rem;
    font-weight: bold;
}

.summary-total span:last-child {
    color: var(--accent);
}

.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--accent);
    max-width: 400px;
    width: 100%;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 20px;
}

.modal-content h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.modal-content p {
    color: var(--text-secondary);
}

#countdown {
    color: var(--accent);
    font-weight: bold;
}

/* Responsividade para Mobile */
@media (max-width: 640px) {
    .order-summary {
        padding: 15px;
    }

    .order-summary h3 {
        font-size: 1rem;
    }

    .summary-item {
        padding: 8px 0;
    }

    .item-name {
        font-size: 0.9rem;
    }

    .item-quantity {
        font-size: 0.8rem;
    }

    .item-price {
        font-size: 0.9rem;
    }

    .summary-total {
        font-size: 1.1rem;
    }
    .checkout-container {
        padding: 15px;
        max-width: 100%;
    }

    .checkout-header h1 {
        font-size: 1.5rem;
    }

    .checkout-wrapper {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .product-card {
        padding: 15px;
    }

    .product-card h2 {
        font-size: 1.2rem;
    }

    .product-price-tag {
        font-size: 1rem;
        padding: 6px 16px;
    }

    .email-section h3 {
        font-size: 1rem;
    }

    .form-group input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .order-bumps h3 {
        font-size: 1rem;
    }

    .bump-item {
        padding: 15px;
    }

    .bump-checkbox {
        gap: 12px;
    }

    .bump-checkbox input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }

    .bump-title {
        font-size: 0.95rem;
    }

    .bump-description {
        font-size: 0.85rem;
    }

    .price-original {
        font-size: 0.85rem;
    }

    .price-discount {
        font-size: 1rem;
    }

    .order-total {
        font-size: 1.3rem;
    }

    .btn-submit {
        padding: 15px;
        font-size: 1rem;
    }

    .pix-icon {
        width: 20px;
        height: 20px;
    }

    .payment-security {
        font-size: 0.85rem;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .modal-content h2 {
        font-size: 1.2rem;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 380px) {
    .checkout-header h1 {
        font-size: 1.3rem;
    }

    .bump-price {
        /*flex-direction: column;
        align-items: flex-start;
        gap: 5px;*/
    }

    .order-total {
        font-size: 1.2rem;
    }
}

/* Hero Section Styles */
.hero-section {
    margin-bottom: 40px;
    text-align: center;
}

.urgency-banner {
    background: linear-gradient(90deg, #ff4444, #ff6b6b);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

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

.hero-content {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid var(--border);
}

.hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 800;
}

.text-danger {
    color: #ff4444;
}

.highlight {
    background: linear-gradient(90deg, var(--accent), #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item {
    background: var(--bg-tertiary);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: left;
    display: flex;
    gap: 1rem;
}

.benefit-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

.benefit-item strong {
    color: var(--text-primary);
}

.social-proof {
    background: var(--bg-tertiary);
    border-radius: 12px;
    margin-bottom: 30px;
}

.bonus-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.bonus-section h2 {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.bonus-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.bonus-item {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.bonus-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.bonus-badge {
    position: absolute;
    top: 20px;
    right: -45px;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 255, 136, 0.5);
}

.bonus-item h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-right: 40px;
}

.bonus-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bonus-price {
    display: block;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.price-from {
    display: block;
    color: #ff6666;
    text-decoration: line-through;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.price-to {
    display: block;
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: bold;
    background: rgba(0, 255, 136, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    animation: pulse 2s ease-in-out infinite;
}

.bonus-warning {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: bold;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    animation: warning-pulse 2s ease-in-out infinite;
}

@keyframes warning-pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .bonus-section {
        padding: 2rem 1rem;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bonus-section h2 {
        font-size: 1.5rem;
    }
}

.testimonial {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

.testimonial em {
    color: var(--accent);
    font-style: normal;
}

.scarcity-box {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.scarcity-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.original-price {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.strikethrough {
    text-decoration: line-through;
    color: #ff4444;
}

.special-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.discount-badge {
    background: #ff4444;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: normal;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--bg-tertiary);
    padding: 15px 25px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Mobile Responsiveness for Hero Section */
@media (max-width: 640px) {
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 1.65rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .special-price {
        font-size: 2rem;
    }
    
    .guarantee-badge {
        font-size: 0.85rem;
        padding: 12px 20px;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .special-price {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
}

/* Seção de Garantia de 30 Dias */
.guarantee-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 60px 20px;
    margin-top: 40px;
    border-top: 1px solid var(--border);
}

.guarantee-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-shield {
    display: inline-block;
    margin-bottom: 30px;
    animation: shield-pulse 2s ease-in-out infinite;
}

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

.guarantee-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.highlight-green {
    color: #4CAF50;
    font-weight: bold;
}

.guarantee-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.guarantee-content {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

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

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
    border-color: #4CAF50;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.2);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.guarantee-item p {
    margin: 0;
    text-align: left;
    color: var(--text-primary);
}

.guarantee-message {
    background: var(--bg-tertiary);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border);
    border-left: 5px solid #4CAF50;
}

.guarantee-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
}

.guarantee-signature {
    text-align: right;
    color: var(--text-secondary);
    font-weight: 600;
}

.guarantee-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.guarantee-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
}

.guarantee-cta:active {
    transform: translateY(0);
}

.guarantee-note {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .guarantee-section {
        padding: 40px 15px;
    }
    
    .guarantee-title {
        font-size: 2rem;
    }
    
    .guarantee-subtitle {
        font-size: 1.1rem;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
    }
    
    .guarantee-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Seção de Depoimentos do Facebook */
.fb-testimonials-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 60px 20px;
    border-top: 1px solid var(--border);
}

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

.fb-testimonials-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-primary);
}

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

.fb-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.fb-testimonial-item {
    position: relative;
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 20px 10px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    overflow: hidden;
}

.fb-testimonial-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fb-testimonial-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.fb-testimonial-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 255, 136, 0.9);
    color: var(--bg-primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.highlight-testimonial {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, rgba(0, 255, 136, 0.1) 100%);
}

.success-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--bg-primary);
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.fb-testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

.fb-testimonials-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .fb-testimonials-section {
        padding: 40px 5px;
    }
    
    .fb-testimonials-title {
        font-size: 2rem;
    }
    
    .fb-testimonials-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .fb-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fb-testimonial-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .success-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .fb-testimonials-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Seção FAQ */
.faq-section {
    background: var(--bg-primary);
    padding: 60px 20px;
    border-top: 1px solid var(--border);
}

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

.faq-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-primary);
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-tertiary);
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-answer strong {
    color: var(--accent);
}

.faq-cta-wrapper {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 2px solid var(--accent);
}

.faq-cta-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.faq-cta-text strong {
    color: var(--accent);
}

.faq-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.faq-cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
}

.faq-urgency {
    color: #ff4444;
    font-weight: bold;
    font-size: 1rem;
    animation: urgency-blink 2s ease-in-out infinite;
}

@keyframes urgency-blink {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 15px 20px;
    }
    
    .faq-icon {
        font-size: 1.2rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    .faq-cta-button {
        font-size: 1rem;
        padding: 15px 30px;
    }
}

/* Banner de Urgência do Checkout */
.checkout-banner {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 12px;
    border: 1px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.checkout-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: shine 3s ease-in-out infinite;
}

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

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 2rem;
    opacity: 0.8;
}

.banner-text {
    flex: 1;
    min-width: 200px;
}

.banner-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.banner-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

.banner-subtitle .strikethrough {
    text-decoration: line-through;
    opacity: 0.7;
    color: var(--text-secondary);
}

.banner-subtitle .highlight-price {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.2rem;
}

.banner-timer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: auto;
}

.timer-box {
    background: var(--bg-primary);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
    border: 1px solid var(--border);
}

.timer-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.timer-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer-separator {
    color: var(--text-secondary);
    font-size: 1.6rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .checkout-banner {
        padding: 20px 15px;
    }
    
    .banner-content {
        text-align: center;
    }
    
    .banner-icon {
        font-size: 2.5rem;
    }
    
    .banner-title {
        font-size: 1.2rem;
    }
    
    .banner-timer {
        justify-content: center;
        width: 100%;
    }
    
    .timer-box {
        min-width: 50px;
        padding: 8px 10px;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
}

/* Estilos para Checkout - Provas Sociais */
.checkout-social-proof {
    background: var(--bg-secondary);
    padding: 40px 0;
    margin-bottom: 30px;
    border-radius: 12px;
}

.social-proof-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-proof-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

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

.testimonial-card {
    background: var(--bg-tertiary);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.testimonial-badge {
    font-size: 0.85rem;
    color: var(--accent);
}

.stats-row {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    text-align: center;
}

.stat-item {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Estilos para Checkout - Garantia */
.checkout-guarantee {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 40px 20px;
    margin-top: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.checkout-guarantee .guarantee-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.checkout-guarantee .guarantee-shield {
    display: inline-block;
    margin-bottom: 20px;
}

.checkout-guarantee .guarantee-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.checkout-guarantee .highlight-green {
    color: #4CAF50;
}

.checkout-guarantee .guarantee-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.checkout-guarantee .guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.checkout-guarantee .guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-guarantee .check-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

.checkout-guarantee .guarantee-note {
    font-size: 1rem;
    color: var(--text-secondary);
    padding: 15px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}