/* Cores */
:root {
    --green-main: #3e9281;
    --green-accent: #64c125;
    --button-color: #27695a;
    --dark-bg: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #d1d5db;
    --text-gray-dark: #9ca3af;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: var(--text-white);
    line-height: 1.6;
}

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

/* Header Banner */
.header-banner {
    width: 100%;
    padding: 0.5rem;
    text-align: center;
    background-color: var(--green-main);
    color: var(--text-white);
    font-weight: bold;
    font-size: 0.875rem;
    overflow: hidden;
}

.header-text {
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Grid Background */
.grid-background {
    position: fixed;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(62, 146, 129, 0.05) 25%, rgba(62, 146, 129, 0.05) 26%, transparent 27%, transparent 74%, rgba(62, 146, 129, 0.05) 75%, rgba(62, 146, 129, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(62, 146, 129, 0.05) 25%, rgba(62, 146, 129, 0.05) 26%, transparent 27%, transparent 74%, rgba(62, 146, 129, 0.05) 75%, rgba(62, 146, 129, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }
}

/* Hero Left */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Logo Container */
.logo-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 150px;
    }
}

.hero-content h1 {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.875rem;
    }
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 1.25rem;
    }
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Cores de Texto */
.green-main {
    color: var(--green-main);
}

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

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

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

.benefit-item h3 {
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.benefit-item p {
    color: var(--text-gray-dark);
    font-size: 0.95rem;
}

/* Social Proof */
.social-proof {
    padding: 1rem;
    border: 2px solid var(--green-main);
    border-radius: 0.5rem;
    background-color: rgba(62, 146, 129, 0.05);
}

.social-proof p {
    font-weight: bold;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Right - Form */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-card {
    padding: 2rem;
    border: 2px solid var(--green-main);
    border-radius: 0.5rem;
    background-color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(62, 146, 129, 0.15);
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--green-main);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-gray);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input {
    padding: 0.75rem;
    background-color: #1f2937;
    border: 1px solid rgba(62, 146, 129, 0.3);
    border-radius: 0.375rem;
    color: var(--text-white);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input::placeholder {
    color: #6b7280;
}

.form-group input:focus {
    outline: none;
    border-color: var(--green-main);
}

.error-message {
    padding: 0.75rem;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    border-radius: 0.375rem;
    color: #fca5a5;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit {
    padding: 1.5rem;
    background-color: var(--button-color);
    color: var(--text-white);
    border: none;
    border-radius: 0.375rem;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(62, 146, 129, 0.3);
    transition: opacity 0.3s;
}

.btn-submit:hover {
    opacity: 0.9;
}

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

.form-footer {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    margin-top: 1rem;
}

/* Security Badge */
.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
    position: relative;
    z-index: 10;
}

.benefits-section h2 {
    font-size: 1.875rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-card {
    padding: 1.5rem;
    border: 2px solid var(--green-main);
    border-radius: 0.5rem;
    background-color: #111111;
    box-shadow: 0 0 20px rgba(62, 146, 129, 0.05);
}

.benefit-emoji {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-gray-dark);
    line-height: 1.6;
}

/* Value Section */
.value-section {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.value-section h2 {
    font-size: 1.875rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
}

.value-section > .container > p {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #1f2937;
}

.value-item span:first-child {
    color: var(--text-gray);
}

.value-box {
    padding: 1.5rem;
    border: 2px solid var(--green-accent);
    border-radius: 0.5rem;
    background-color: rgba(100, 193, 37, 0.05);
    text-align: center;
}

.value-box p:first-child {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.value-total {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.value-highlight {
    color: var(--green-main);
    font-weight: bold;
    font-size: 1.125rem;
}

/* CTA Section */
.cta-section {
    padding: 3rem 0;
    text-align: center;
}

.btn-secondary {
    padding: 1.5rem 2rem;
    background-color: var(--button-color);
    color: var(--text-white);
    border: none;
    border-radius: 0.375rem;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(62, 146, 129, 0.3);
    transition: opacity 0.3s;
}

.btn-secondary:hover {
    opacity: 0.9;
}

/* Contador Regressivo de Urgência */
.urgency-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    padding: 1rem 0;
    position: relative;
    z-index: 11;
}

.urgency-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.urgency-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.125rem;
}

.urgency-icon {
    font-size: 1.5rem;
}

.countdown-timer {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
    min-width: 80px;
}

.countdown-value {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.25rem;
}

.countdown-separator {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

/* Badge de Garantia */
.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--green-main) 0%, var(--green-accent) 100%);
    border-radius: 0.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(62, 146, 129, 0.3);
}

.guarantee-icon {
    font-size: 2.5rem;
}

.guarantee-text {
    display: flex;
    flex-direction: column;
}

.guarantee-text strong {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.guarantee-text span {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Comparação Visual */
.comparison-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
    position: relative;
    z-index: 10;
}

.comparison-section h2 {
    font-size: 1.875rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-col {
    padding: 2rem;
    border-radius: 0.5rem;
    position: relative;
}

.comparison-expensive {
    background-color: rgba(255, 107, 107, 0.05);
    border: 2px solid #ff6b6b;
}

.comparison-filehub {
    background-color: rgba(62, 146, 129, 0.05);
    border: 2px solid var(--green-main);
    transform: scale(1.05);
}

.comparison-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.comparison-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.comparison-price {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--green-main);
    margin-bottom: 1.5rem;
}

.comparison-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.comparison-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

.comparison-savings {
    background: var(--green-accent);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 1rem;
}

.savings-label {
    display: block;
    font-size: 0.875rem;
    color: white;
    margin-bottom: 0.25rem;
}

.savings-value {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: white;
}

/* Depoimentos */
.testimonials-section {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.testimonials-section h2 {
    font-size: 1.875rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    padding: 2rem;
    background-color: var(--dark-bg);
    border: 2px solid rgba(62, 146, 129, 0.2);
    border-radius: 0.5rem;
}

.testimonial-stars {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--green-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-white);
    font-size: 1rem;
}

.author-info span {
    color: var(--text-gray-dark);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
    position: relative;
    z-index: 10;
}

.faq-section h2 {
    font-size: 1.875rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    border-bottom: 1px solid rgba(62, 146, 129, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: bold;
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--green-main);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--green-main);
    transition: transform 0.3s;
}

.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: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Garantia Section */
.guarantee-section {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.guarantee-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(62, 146, 129, 0.1) 0%, rgba(100, 193, 37, 0.1) 100%);
    border: 2px solid var(--green-main);
    border-radius: 0.5rem;
}

.guarantee-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.guarantee-box h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.guarantee-box p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transition: transform 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

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

/* Pop-up de Saída */
.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

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

.exit-popup-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid var(--green-main);
    border-radius: 1rem;
    padding: 2.5rem 2rem 2rem;
    max-width: 520px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 50px rgba(62, 146, 129, 0.3);
}

.exit-popup-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.exit-popup-close:hover {
    color: white;
    transform: scale(1.1);
}

.exit-popup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.exit-popup-content h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
}

.exit-popup-offer {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.highlight-price {
    color: var(--green-accent);
    font-weight: 900;
    font-size: 2rem;
}

.exit-popup-text {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.exit-popup-features {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.exit-feature {
    color: var(--text-gray);
    font-size: 0.95rem;
    padding: 0.75rem;
    background: rgba(62, 146, 129, 0.05);
    border-radius: 0.5rem;
    border-left: 3px solid var(--green-main);
}

.exit-popup-cta {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--green-accent) 0%, var(--button-color) 100%);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 900;
    font-size: 1.125rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(100, 193, 37, 0.3);
}

.exit-popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 193, 37, 0.4);
}

.exit-popup-small {
    color: var(--text-gray-dark);
    font-size: 0.75rem;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .comparison-filehub {
        transform: scale(1);
    }

    .urgency-content {
        flex-direction: column;
        gap: 1rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 0.5rem 0.75rem;
    }

    .countdown-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .header-text {
        font-size: 0.75rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 1rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .benefits-section h2,
    .value-section h2,
    .comparison-section h2,
    .testimonials-section h2,
    .faq-section h2 {
        font-size: 1.5rem;
    }

    .exit-popup-content {
        padding: 2rem 1.5rem;
        width: 95%;
        max-height: 90vh;
    }

    .exit-popup-close {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 1.75rem;
    }

    .exit-popup-icon {
        font-size: 3rem;
    }

    .exit-popup-content h2 {
        font-size: 1.5rem;
    }

    .exit-popup-offer {
        font-size: 1.125rem;
    }

    .highlight-price {
        font-size: 1.5rem;
    }

    .exit-popup-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .exit-popup-features {
        margin-bottom: 1.5rem;
    }

    .exit-feature {
        font-size: 0.85rem;
        padding: 0.65rem;
    }

    .exit-popup-cta {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 50px;
        height: 50px;
    }
}

/* Modal de Vídeo Invasivo */
.video-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #000;
    border-radius: 1rem;
    border: 3px solid var(--green-main);
    box-shadow: 0 0 50px rgba(62, 146, 129, 0.5);
    padding: 1rem;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.video-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--green-main);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10001;
    box-shadow: 0 4px 15px rgba(62, 146, 129, 0.4);
}

.video-modal-close:hover {
    background: var(--green-accent);
    transform: scale(1.1) rotate(90deg);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 0.5rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
}

@media (max-width: 768px) {
    .video-modal-content {
        max-width: 95%;
        padding: 0.75rem;
    }

    .video-modal-close {
        top: -12px;
        right: -12px;
        width: 40px;
        height: 40px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        border-radius: 0.5rem;
        padding: 0.5rem;
    }

    .video-modal-close {
        top: -10px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

