/* Variáveis */
:root {
    --primary-color: #4056F4;
    --secondary-color: #FF6B6B;
    --accent-color: #00B8A9;
    --dark-color: #2A2A2A;
    --light-color: #F8F9FA;
    --text-color: #333333;
    --gray-color: #6c757d;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

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

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

/* Prevent layout shifts when modal is open */
body.modal-open {
    overflow: hidden;
    padding-right: 0 !important;
}

html {
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.8em;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #3248d9;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

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

/* Hero section specific button styling for better contrast */
#hero .btn-primary {
    border: 1px solid white;
}

#hero .btn-secondary {
    color: white;
    border: 1px solid white;
    background-color: rgba(255, 255, 255, 0.1);
}

#hero .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    margin-right: 5px;
}

.logo-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
}

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

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.btn-destaque {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
}

.btn-destaque:hover {
    background-color: #3248d9;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Mobile demo button - hidden by default */
.mobile-demo-btn {
    display: none;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-demo-btn:hover {
    background-color: #3248d9;
    color: white;
    transform: translateY(-1px);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.trust-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content h2 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.value-props {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.value-prop i {
    color: var(--success-color);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.urgency-banner {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--warning-color);
    font-size: 0.95rem;
    margin-top: 20px;
}

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

/* Benefits Section */
#benefits {
    background-color: var(--light-color);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.beneficio-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.beneficio-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.beneficio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Testimonials Section */
#testimonials {
    background-color: white;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* How It Works */
.processo-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Demo Section */
#demonstracao {
    background-color: var(--light-color);
}

.demo-content {
    text-align: center;
}

.demo-video {
    max-width: 700px; /* Reduzido para uma caixa mais pequena */
    margin: 0 auto; /* Centraliza o container */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    left: 50px; /* Desloca para compensar as margens negativas do iframe */
}

.demo-video iframe {
    margin: 0 -50px; /* Margens negativas no iframe em vez do container */
    width: calc(100% + 100px); /* Compensa as margens negativas */
    border-radius: 15px;
}

/* Special Offer Section */
#special-offer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff8a80 100%);
    color: white;
    text-align: center;
}

.offer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.offer-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 30px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
}

.countdown {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 16px 32px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Espaçamento específico para o botão na seção special-offer */
#special-offer .btn-primary.large {
    margin-top: 20px;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    height: 200px;
    background-color: var(--light-color);
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Contact Section */
#contact {
    background-color: var(--light-color);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contacto-info h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.guarantees {
    margin: 30px 0;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.guarantee-item i {
    color: var(--success-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.guarantee-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.guarantee-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.contacto-metodos {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contacto-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contacto-item p {
    margin: 0;
    line-height: 1.4;
}

.contacto-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.form-header p {
    color: var(--gray-color);
    margin: 0;
    font-size: 0.9rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(64, 86, 244, 0.1);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-color);
    margin-top: 15px;
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-badges span {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    display: inline-block;
}

.footer-links h3,
.footer-social h3 {
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Reduce header size on mobile */
    header {
        padding: 10px 0;
    }

    .logo-image {
        width: 100px;
        height: 100px;
    }

    /* Reduce top spacing in hero section on mobile */
    #hero {
        padding-top: 80px;
    }

    #hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-image {
        order: 2;
        margin-bottom: 30px;
    }

    /* Hide hero image on mobile */
    .hero-image {
        display: none;
    }

    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    .value-props {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Reorder contact section on mobile - form first, info second */
    .contacto-info {
        order: 3;
    }

    /* Hide the original title in contacto-info on mobile */
    .contacto-info h2 {
        display: none;
    }

    .contacto-form {
        order: 2;
    }

    /* Add mobile-specific title before the form */
    .contacto-grid::before {
        content: "Ready to 10x Your Business Growth?";
        display: block;
        order: 1;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--dark-color);
        text-align: center;
        margin-bottom: 20px;
        grid-column: 1 / -1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .trust-badges {
        align-items: center;
    }
    
    nav ul {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }

    /* Show mobile demo button on mobile */
    .mobile-demo-btn {
        display: block;
    }

    /* Show mobile menu when active */
    nav ul.active {
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: absolute;
        top: 100%; /* directly below header */
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    /* Add padding to mobile menu items */
    nav ul.active li {
        padding: 0 20px;
    }

    nav ul.active a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        text-align: center;
    }

    /* Style the "Get Free Demo" button in mobile menu */
    nav ul.active .btn-destaque {
        padding: 15px 30px;
        margin: 10px 20px;
        text-align: center;
        border-radius: var(--border-radius);
    }

    /* Animate hamburger into close icon */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    .hero-content p {
        font-size: 1rem;
    }
    
    .offer-features {
        grid-template-columns: 1fr;
    }
    
    .countdown {
        padding: 16px 32px;
        font-size: 1.1rem;
        margin: 20px 0;
        width: 100%;
        text-align: center;
        display: block;
    }
    
    /* Ajuste do vídeo para mobile */
    .demo-video {
        max-width: 100%;
        left: 0; /* Remove o deslocamento para centralizar */
        position: static; /* Remove posicionamento relativo no mobile */
    }
    
    .demo-video iframe {
        margin: 0; /* Remove margens negativas no mobile */
        width: 100%; /* Largura normal no mobile */
        height: 250px; /* Altura reduzida para mobile */
        position: relative;
        left: 0; /* Remove deslocamento no mobile */
    }
}

@media (max-width: 576px) {
    .btn-primary, .btn-secondary {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contacto-form {
        padding: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .countdown {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin: 15px 0;
    }
    
    /* Ajuste do vídeo para smartphones */
    .demo-video iframe {
        height: 200px; /* Altura ainda menor para smartphones */
    }
} 

/* Legal Sections */
.legal-section {
    background-color: var(--light-color);
    color: var(--text-color);
    padding: 80px 0;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin-top: 20px;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
} 

/* Legal Section Modal Overrides */
.legal-section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 60px 20px;
    overflow: auto;
    align-items: center;
    justify-content: center;
    z-index: 9999999; /* Increased to be above cookie popup */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legal-section.active {
    display: flex;
    opacity: 1;
}

.legal-section .container {
    background: #fff;
    color: var(--text-color);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.legal-section.active .container {
    transform: translateY(0);
}

.legal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #888;
    transition: var(--transition);
}

.legal-close:hover {
    color: #000;
} 