/* Reset básico e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Header */
.header {
    background: #111111;
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-height: 50px;
    width: auto;
    filter: brightness(1.2);
}

/* Hero Section */
.hero-section {
    background: #0a0a0a;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #222;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.main-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 400;
    color: #cccccc;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
}

/* Banner de Teste Grátis - Hero */
.free-trial-banner {
    margin-top: 40px;
    padding: 0 20px;
}

.free-trial-content {
    background: linear-gradient(135deg, #00b894 0%, #00d2a0 100%);
    border-radius: 16px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 184, 148, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 184, 148, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(0, 184, 148, 0.5);
        transform: translateY(-2px);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 184, 148, 0.3);
    }
}

.free-trial-icon {
    font-size: 2.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.free-trial-text h3 {
    color: #ffffff;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.free-trial-text p {
    color: #ffffff;
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin: 0;
    opacity: 0.95;
}

/* Target Audience Section */
.target-audience {
    background: #111111;
    padding: 60px 20px;
    border-bottom: 1px solid #222;
}

.section-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.problems-grid {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.problem-item {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.problem-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.problem-item:hover {
    background: #222;
    border-color: #444;
    transform: translateX(5px);
}

.problem-icon {
    font-size: 1.2rem;
    color: #ff4444;
    flex-shrink: 0;
    font-weight: bold;
}

.problem-item p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Product Section */
.product-section {
    background: #0a0a0a;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #222;
}

.product-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 40px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-content {
    max-width: 800px;
    margin: 0 auto 50px;
}

.product-description,
.product-cta,
.product-story,
.product-benefits {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 25px;
    color: #cccccc;
}

.product-description strong {
    color: #ffffff;
    font-weight: 700;
}

.product-cta {
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    font-size: clamp(1.1rem, 2.2vw, 1.2rem);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:hover {
    background: #222;
    border-color: #444;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-item p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.4;
}

/* Screenshots Section */
.screenshots-section {
    background: #0a0a0a;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #222;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Vídeo de demonstração */
.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 50px;
    padding-bottom: 45%; /* Proporção 16:9 ajustada */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.video-container:hover {
    border-color: #555;
    transform: translateY(-3px);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Subtítulo das screenshots */
.screenshots-subtitle {
    margin-bottom: 40px;
}

.screenshots-subtitle h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.screenshots-subtitle p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #cccccc;
    max-width: 500px;
    margin: 0 auto;
}

.screenshots-gallery {
    margin-bottom: 40px;
}

.main-screenshot {
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.main-screenshot:hover {
    border-color: #555;
    transform: translateY(-5px);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.screenshot-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.screenshot-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.screenshot-item:hover {
    border-color: #555;
    transform: translateY(-3px);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    filter: brightness(0.9);
    cursor: pointer;
}

.screenshot-item:hover img {
    filter: brightness(1);
    transform: scale(1.02);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.screenshot-overlay h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.screenshot-overlay p {
    font-size: 0.9rem;
    color: #cccccc;
}

.cta-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.secondary {
    background: #00aa00;
    border: 2px solid #00aa00;
}

.cta-button.secondary:hover {
    background: #00cc00;
    border-color: #00cc00;
    box-shadow: 0 10px 25px rgba(0, 170, 0, 0.3);
}

/* Feature Item Bonus */
.featured-bonus {
    position: relative;
    border: 2px solid #fbbf24;
    background: #2d1b0a;
    transform: scale(1.02);
}

.featured-bonus .feature-icon {
    font-size: 2.5rem !important;
}

.featured-bonus h3 {
    color: #fbbf24;
}

.featured-bonus p {
    color: #e5e7eb;
}

.featured-bonus strong {
    color: #fbbf24;
    font-weight: 700;
}

.bonus-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fbbf24;
    color: #000;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bonus Section */
.bonus-section {
    background: #1a1a1a;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #222;
    border-top: 3px solid #fbbf24;
}

.bonus-content {
    max-width: 800px;
    margin: 0 auto;
}

.bonus-badge-large {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.bonus-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
}

.bonus-title .feature-icon {
    font-size: 2.5rem;
}

.bonus-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.5;
    margin-bottom: 30px;
    color: #cccccc;
    text-transform: uppercase;
    font-weight: 500;
}

.bonus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.bonus-feature {
    background: #2a2a2a;
    border: 1px solid #444;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.bonus-feature:hover {
    background: #333;
    border-color: #fbbf24;
}

.bonus-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.bonus-feature p {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    text-transform: uppercase;
}

.bonus-value {
    background: #2a2a2a;
    border: 2px solid #fbbf24;
    padding: 20px;
    border-radius: 10px;
}

.bonus-price {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #cccccc;
    text-transform: uppercase;
}

.bonus-free {
    font-size: 1.3rem;
    font-weight: 800;
    color: #00ff00;
    text-transform: uppercase;
}

/* Pricing Section */
.pricing-section {
    background: #111111;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #222;
}

.pricing-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.price-container {
    margin-bottom: 40px;
}

.price-box {
    display: inline-block;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 30px 40px;
    margin-bottom: 20px;
}

.price-main {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
}

.price-value {
    font-size: clamp(3.5rem, 7vw, 5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.price-period {
    font-size: 1.3rem;
    font-weight: 500;
    color: #cccccc;
}

.price-subtitle {
    font-size: 1rem;
    color: #cccccc;
    font-style: italic;
}

/* Destaque 7 dias grátis na seção de preços */
.free-trial-highlight {
    margin-top: 20px;
    text-align: center;
}

.free-trial-badge {
    background: linear-gradient(135deg, #00b894 0%, #00d2a0 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    animation: glow 2s ease-in-out infinite alternate;
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
}

@keyframes glow {
    from {
        box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
    }
    to {
        box-shadow: 0 8px 25px rgba(0, 184, 148, 0.6);
    }
}

.free-icon {
    font-size: 1.2rem;
}

.free-trial-desc {
    font-size: 0.9rem;
    color: #00d2a0;
    margin: 0;
    font-weight: 500;
}

/* CTA Button */
.cta-container {
    margin-bottom: 50px;
}

.cta-button {
    display: inline-block;
    background: #ff4444;
    color: white;
    padding: 20px 40px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #ff4444;
}

.cta-button:hover {
    background: #ff6666;
    border-color: #ff6666;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 68, 68, 0.3);
}

/* Guarantees */
.guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    padding: 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.guarantee-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.guarantee-item:hover {
    background: #222;
    border-color: #444;
}

.guarantee-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    color: #44ff44;
    font-weight: bold;
}

.guarantee-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.guarantee-content p {
    color: #cccccc;
    line-height: 1.4;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    background: #0a0a0a;
    padding: 60px 20px;
    border-bottom: 1px solid #222;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-item {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 25px 20px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-item:hover {
    background: #222;
    border-color: #444;
    transform: translateY(-5px);
}

.testimonial-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #cccccc;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #999999;
}

/* Footer */
.footer {
    background: #000000;
    color: #cccccc;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section,
    .target-audience,
    .product-section,
    .pricing-section,
    .testimonials-section {
        padding: 40px 15px;
    }
    
    .video-container {
        padding-bottom: 56.25%; /* Proporção 16:9 para mobile */
        margin-bottom: 40px;
    }
    
    /* Responsivo - Banner de teste grátis */
    .free-trial-content {
        flex-direction: column;
        gap: 15px;
        padding: 20px 25px;
        text-align: center;
    }
    
    .free-trial-icon {
        font-size: 2rem;
    }
    
    .free-trial-badge {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .free-icon {
        font-size: 1rem;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .screenshot-overlay {
        position: static;
        transform: none;
        background: rgba(0,0,0,0.9);
        border-radius: 0 0 8px 8px;
    }
    
    .problems-grid {
        max-width: 100%;
    }
    
    .problem-item {
        padding: 15px 20px;
        margin-bottom: 10px;
    }
    
    .features-grid,
    .guarantees,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cta-button {
        padding: 18px 35px;
        font-size: 1rem;
    }
    
    .price-box {
        padding: 25px 30px;
    }
}

@media (max-width: 480px) {
    .problem-item,
    .feature-item,
    .guarantee-item,
    .testimonial-item {
        padding: 15px;
    }
    
    .price-value {
        font-size: 3rem;
    }
    
    .currency {
        font-size: 1.5rem;
    }
    
    .price-period {
        font-size: 1.1rem;
    }
    
    .hero-section,
    .target-audience,
    .product-section,
    .pricing-section,
    .testimonials-section {
        padding: 30px 10px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Modal de Imagens */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.modal-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    border: 2px solid #333;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #333;
    color: #fbbf24;
    border-color: #fbbf24;
}

.modal-caption {
    color: #ffffff;
    font-size: 1rem;
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scroll smooth */
html {
    scroll-behavior: smooth;
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Estados de foco para acessibilidade */
.cta-button:focus,
.footer-link:focus {
    outline: 2px solid #ff4444;
    outline-offset: 2px;
}

/* Scrollbar personalizada para navegadores webkit */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Seleção de texto personalizada */
::selection {
    background: #ff4444;
    color: white;
}

::-moz-selection {
    background: #ff4444;
    color: white;
}

/* Loading states */
.logo {
    transition: opacity 0.3s ease;
}

.logo[src=""] {
    opacity: 0.5;
}

/* Print styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .cta-button,
    .footer {
        display: none;
    }
    
    .hero-section,
    .product-section,
    .testimonials-section,
    .target-audience,
    .pricing-section {
        background: white !important;
        color: black !important;
        border: none !important;
    }
    
    .problem-item,
    .feature-item,
    .guarantee-item,
    .testimonial-item {
        background: white !important;
        border: 1px solid #ccc !important;
        color: black !important;
    }
}

/* ===== MODAL DE FORMULÁRIO ===== */
.form-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.form-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    margin: 20px;
    padding: 0;
    border: 2px solid #333;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        transform: translateY(50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.form-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
    line-height: 1;
}

.form-modal-close:hover,
.form-modal-close:focus {
    color: #fff;
    transform: rotate(90deg);
}

.form-container {
    padding: 40px 35px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
}

.form-header p {
    color: #cccccc;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.5;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-group input {
    padding: 14px 18px;
    border: 2px solid #333;
    border-radius: 8px;
    background-color: #0a0a0a;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00b894;
    background-color: #111;
    box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.1);
}

.form-group input::placeholder {
    color: #666;
}

.form-submit-btn {
    padding: 16px 30px;
    background: linear-gradient(135deg, #00b894 0%, #00d2a0 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.form-footer-text {
    text-align: center;
    color: #999;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Página de Agradecimento */
.thank-you-container {
    padding: 50px 35px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00b894 0%, #00d2a0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin: 0 auto 25px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.thank-you-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.thank-you-content p {
    color: #cccccc;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 15px;
}

.thank-you-message {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(0, 184, 148, 0.1);
    border: 1px solid rgba(0, 184, 148, 0.3);
    border-radius: 8px;
}

.thank-you-info {
    font-size: 1.1rem !important;
    color: #00b894 !important;
    font-weight: 600;
    margin-top: 20px !important;
}

.close-thank-you-btn {
    padding: 14px 40px;
    background: linear-gradient(135deg, #00b894 0%, #00d2a0 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.close-thank-you-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3);
}

.close-thank-you-btn:active {
    transform: translateY(0);
}

/* Responsivo para Modal de Formulário */
@media (max-width: 768px) {
    .form-modal-content {
        margin: 15px;
        max-height: 95vh;
    }
    
    .form-container {
        padding: 35px 25px;
    }
    
    .thank-you-container {
        padding: 40px 25px;
    }
    
    .form-modal-close {
        font-size: 28px;
        top: 12px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 30px 20px;
    }
    
    .thank-you-container {
        padding: 35px 20px;
        min-height: 350px;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
        font-size: 40px;
    }
    
    .form-group input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .form-submit-btn,
    .close-thank-you-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}
