/* Performance Optimizations */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Critical CSS - Above the fold */
:root {
    --primary-color: #4a2cdd;
    --secondary-color: #7928ef;
    --primary-gradient: linear-gradient(135deg, #4a2cdd 0%, #7928ef 100%);
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f5f5f5;
    --border-color: #e5e5e5;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --border-radius-large: 20px;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    --primary-color: #4a2cdd;
    --secondary-color: #7928ef;
    --primary-gradient: linear-gradient(135deg, #4a2cdd 0%, #7928ef 100%);
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f5f5f5;
    --border-color: #e5e5e5;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --border-radius-large: 20px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    border-bottom: 1px solid var(--border-color);
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-header-img {
    height: 30px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    border-radius: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 140px 0 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
    min-height: 70vh;
    position: relative;
    padding-top: 2rem;
}

.hero-title {
    font-size: 3.15rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 2rem;
}

.hero-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Hero Image - Laptop Mockup */
.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
    min-height: 600px;
    position: relative;
    padding-top: 0;
    overflow: visible;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    max-width: 720px;
    height: auto;
    object-fit: contain;
    align-self: flex-start;
    margin-top: -2rem;
    margin-right: -2rem;
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.how-it-works {
    padding: 20px 0 80px;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    z-index: 1;
    clear: both;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transform: none !important;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #000;
    transition: box-shadow 0.3s ease;
    z-index: 1;
    transform: none !important;
}

.video-wrapper:hover {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .thumbnail-img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 44, 221, 0.8) 0%, rgba(121, 40, 239, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .video-overlay {
    opacity: 1;
}

.video-info {
    text-align: center;
    color: white;
    padding: 2rem;
}

.video-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-info p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.play-button i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-left: 3px; /* Ajuste visual para centralizar o ícone */
}

#youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius-large);
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: white;
}

.logos-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.logos-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
    min-width: 120px;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-3px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Testimonial Highlight */
.testimonial-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}


.testimonial-content {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-content blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.author-avatar:hover {
    transform: scale(1.05);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: center;
}

.author-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.company-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.company-info i {
    font-size: 0.8rem;
}

/* Target Audience */
.target-audience {
    padding: 80px 0;
    background: white;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.audience-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.audience-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.signup-form {
    max-width: 500px;
    margin: 0 auto 2rem;
    display: grid;
    gap: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: white;
    color: var(--text-primary);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.cta-note {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

/* Footer Contact and Social Links */
.footer-section ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-section ul li a i {
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-section ul li a:hover i {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #cccccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Torna o logo branco */
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

/* Responsive Design */
/* Tablet - 1024px */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    /* Hero Section */
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-img {
        max-width: 600px;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        min-height: 220px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-card {
        min-height: auto;
        padding: 2rem;
    }
    
    .benefit-card h3 {
        min-height: auto;
        font-size: 1.25rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
    
    /* Results Grid */
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .result-card {
        padding: 2.25rem 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .result-number {
        font-size: 1.85rem;
    }
    
    .result-icon {
        width: 48px;
        height: 48px;
    }
    
    .result-icon i {
        font-size: 1.15rem;
    }
    
    /* Hide result card detailed text on tablet too */
    .result-card p {
        display: none;
    }
    
    /* Planos */
    .main-plans-grid {
        gap: 1.5rem;
        max-width: 900px;
    }
    
    .plans-modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .plan-card.module {
        min-height: 400px;
    }
    
    /* Logos */
    .logos-grid {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .logo-item {
        min-width: 110px;
    }
    
    .logo-img {
        width: 85px;
        height: 85px;
        padding: 7px;
    }
    
    .logo-name {
        font-size: 0.88rem;
    }
    
    /* Testimonial */
    .testimonial-highlight {
        padding: 2.5rem 2rem;
    }
    
    /* Audience */
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-container {
        justify-content: center;
    }
    
    .video-section {
        padding: 60px 0;
        position: relative;
        z-index: 1;
        clear: both;
        margin-top: 0;
    }
    
    .video-container {
        max-width: 100%;
        margin: 0 20px;
        position: relative;
        transform: none !important;
    }
    
    .video-wrapper {
        position: relative;
        z-index: 1;
        transform: none !important;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.4rem;
    }
    
    .video-info h3 {
        font-size: 1.2rem;
    }
    
    .video-info p {
        font-size: 0.9rem;
    }
    
    .logo-header-img {
        height: 45px;
        max-width: 250px;
    }
    
    .footer-logo-img {
        height: 50px;
        max-width: 120px;
    }
    
    /* Hero Section - Imagem acima do texto */
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
        overflow: hidden;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding-top: 0;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
        min-height: auto;
        height: auto;
        justify-content: center;
        padding-top: 0;
        margin-bottom: 1rem;
        transform: none !important;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-img {
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Como Funciona */
    .how-it-works {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
        min-height: 180px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    /* Results/Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        min-height: auto;
        padding: 2rem;
    }
    
    .benefit-card h3 {
        min-height: auto;
        font-size: 1.2rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    .results-section {
        padding: 60px 0;
        overflow-x: hidden;
        position: relative;
        z-index: 2;
    }
    
    .results-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        position: relative;
        z-index: 2;
    }
    
    .result-card {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .result-number {
        font-size: 1.8rem;
    }
    
    .result-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 0.75rem;
    }
    
    .result-icon i {
        font-size: 1.2rem;
    }
    
    .result-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0;
        text-align: center;
    }
    
    /* Hide result card detailed text on mobile */
    .result-card p {
        display: none !important;
    }
    
    /* Target Audience */
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-highlight {
        padding: 2rem 1.5rem;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Logos - sempre em linha com scroll */
    .logos-grid {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 1.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 1rem 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #ccc #f5f5f5;
    }
    
    .logos-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .logos-grid::-webkit-scrollbar-track {
        background: #f5f5f5;
        border-radius: 3px;
    }
    
    .logos-grid::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 3px;
    }
    
    .logos-grid::-webkit-scrollbar-thumb:hover {
        background: #999;
    }
    
    .logo-item {
        flex: 0 0 auto;
        min-width: 120px;
    }
    
    /* CTA Final */
    .final-cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .signup-form {
        padding: 0 20px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-section ul li a {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .logo-header-img {
        height: 35px;
        max-width: 180px;
    }
    
    .nav {
        padding: 0.75rem 0;
    }
    
    /* Hero Section */
    .hero {
        padding: 90px 0 30px;
        overflow: hidden;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-visual {
        order: 1;
        margin-bottom: 0.5rem;
        height: auto;
        min-height: auto;
        transform: none !important;
        justify-content: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-note {
        font-size: 0.85rem;
        text-align: center;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Features/Como Funciona */
    .how-it-works {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    /* Results Section */
    .results-section {
        padding: 40px 0;
        overflow-x: hidden;
        position: relative;
        z-index: 2;
    }
    
    .results-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        width: 100%;
        max-width: 100%;
        position: relative;
        z-index: 2;
    }
    
    .result-card {
        padding: 1.75rem 1.5rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
    
    .result-number {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .result-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 0.75rem;
    }
    
    .result-icon i {
        font-size: 1.2rem;
    }
    
    .result-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0;
        text-align: center;
    }
    
    /* Hide result card detailed text on mobile */
    .result-card p {
        display: none !important;
    }
    
    /* Video Section */
    .video-section {
        padding: 40px 0;
        position: relative;
        z-index: 1;
        clear: both;
        margin-top: 0;
        overflow: hidden;
    }
    
    .video-container {
        margin: 0 10px;
        position: relative;
        transform: none !important;
    }
    
    .video-wrapper {
        position: relative;
        z-index: 1;
        transform: none !important;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 1.2rem;
    }
    
    .video-info {
        padding: 1rem;
    }
    
    .video-info h3 {
        font-size: 1rem;
    }
    
    .video-info p {
        font-size: 0.85rem;
    }
    
    /* Social Proof */
    .social-proof {
        padding: 40px 0;
    }
    
    /* Logos - sempre em linha com scroll no mobile */
    .logos-grid {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 1.25rem;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 1rem 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #ccc #f5f5f5;
    }
    
    .logos-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .logos-grid::-webkit-scrollbar-track {
        background: #f5f5f5;
        border-radius: 3px;
    }
    
    .logos-grid::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 3px;
    }
    
    .logo-item {
        flex: 0 0 auto;
        min-width: 100px;
    }
    
    .logo-img {
        width: 75px;
        height: 75px;
    }
    
    .logo-name {
        font-size: 0.85rem;
    }
    
    /* Planos */
    .plans-section {
        padding: 40px 0;
    }
    
    .main-plans-section {
        margin: 2rem 0;
    }
    
    .main-plans-title {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .main-plans-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .main-plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .main-plans-grid .plan-card {
        min-height: auto;
    }
    
    .modules-section {
        margin: 3rem 0;
    }
    
    .modules-title {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .modules-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .plans-modules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-card {
        padding: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .plan-card.module {
        min-height: auto;
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }
    
    .plan-badge {
        font-size: 0.85rem;
        padding: 0.45rem 1.25rem;
    }
    
    .module-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }
    
    .plan-header h4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .plan-price {
        font-size: 1.4rem;
    }
    
    .plan-users {
        font-size: 0.95rem;
    }
    
    .plan-subtitle {
        font-size: 0.9rem;
    }
    
    .plan-content h5 {
        font-size: 1.05rem;
        margin-bottom: 0.9rem;
    }
    
    .plan-card ul {
        margin-bottom: 1.25rem;
    }
    
    .plan-card ul li {
        font-size: 0.92rem;
        padding: 0.35rem 0;
    }
    
    .btn-contratar {
        font-size: 1.05rem;
        padding: 0.85rem 1.5rem;
    }
    
    .custom-quote-section {
        padding: 2.25rem 1.75rem;
        margin: 2.5rem 0;
    }
    
    .custom-quote-section h3 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .custom-quote-section p {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .custom-quote-btn {
        font-size: 1.05rem;
        padding: 1rem 2rem;
    }
    
    .consulting-cta-simple {
        margin-top: 3rem;
        padding: 2.5rem 1.75rem;
    }
    
    .consulting-cta-simple h3 {
        font-size: 1.5rem;
    }
    
    .consulting-cta-simple p {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    
    /* Target Audience */
    .target-audience {
        padding: 40px 0;
    }
    
    .audience-card {
        padding: 1.5rem;
    }
    
    .audience-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* FAQ */
    .faq {
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    /* CTA Final */
    .final-cta {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .signup-form {
        padding: 0;
    }
    
    .form-group input {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-logo-img {
        height: 40px;
        max-width: 100px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.4rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Offset para header fixo */
section[id] {
    scroll-margin-top: 100px;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Focus States */
.btn:focus,
input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
} 


/* Pain Points Section */
.pain-points {
    padding: 5rem 0;
    background: var(--bg-light);
}

.pain-gain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pain-gain-card {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-gain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.pain-side, .gain-side {
    flex: 1;
    text-align: center;
    padding: 1rem;
}

.pain-side i {
    color: #dc3545;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.gain-side i {
    color: #28a745;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pain-side h3, .gain-side h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.arrow {
    padding: 0 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Results Section - Design Elegante */
.results-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    z-index: 2;
}

.results-section .section-header h2 {
    color: var(--text-primary);
}

.results-section .section-header p {
    color: var(--text-secondary);
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

/* Force 1 column on mobile/tablet */
@media (max-width: 1024px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .result-card {
        width: 100%;
        max-width: 100%;
    }
}

/* Result Cards - Design Limpo */
.result-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Result Number - Destaque Elegante */
.result-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

/* Result Icon */
.result-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(74, 44, 221, 0.2);
    transition: all 0.3s ease;
}

.result-card:hover .result-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(74, 44, 221, 0.3);
}

.result-icon i {
    font-size: 1.2rem;
    color: white;
}

/* Result Card Typography */
.result-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.result-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

.desire-benefits .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.desire-benefits .benefit-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.desire-benefits .benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Social Proof Amplified */
.testimonial-highlight {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.testimonial-highlight .testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-highlight .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-highlight .author-info h4 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-highlight .author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Plans Section */
.plans-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.plans-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

/* Seção dos planos principais - Free e 360 */
.main-plans-section {
    margin: 3rem 0;
    text-align: center;
}

.main-plans-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.main-plans-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.main-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.main-plans-grid .plan-card {
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.main-plans-grid .plan-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-plans-grid .plan-content ul {
    flex: 1;
    margin-bottom: 1.5rem;
}

.main-plans-grid .btn-contratar {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* Seção de módulos */
.modules-section {
    margin: 4rem 0;
    text-align: center;
}

.modules-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.modules-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid para os 4 módulos em linha */
.plans-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.plan-card.module {
    position: relative;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.module-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

.plan-card.module .plan-header {
    margin-bottom: 1.2rem;
    flex-shrink: 0;
}

.plan-card.module .plan-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-card.module .plan-content ul {
    text-align: left;
    margin-bottom: 1.5rem;
    flex: 1;
}

.plan-card.module .btn-contratar {
    width: 100%;
    margin-top: auto;
    justify-content: center;
    text-align: center;
}

/* Botão com gradiente para módulos */
.btn-gradient {
    background: var(--primary-gradient);
    border: none;
    color: white;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 44, 221, 0.3);
}

/* Botão outline para módulos */
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Layout antigo mantido para compatibilidade */
.plan-full-width {
    margin-bottom: 2rem;
}

.plan-full-width .plan-card {
    max-width: 800px;
    margin: 0 auto;
}

.plans-grid-middle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Layout antigo mantido para compatibilidade */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.plan-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    min-width: 260px;
    margin-bottom: 2rem;
    cursor: pointer;
}

.plan-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.plan-card.destaque {
    border: 2.5px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(74,44,221,0.12);
    z-index: 2;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
}

.plan-header {
    text-align: center;
    margin-bottom: 1.2rem;
}

.plan-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.plan-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
}

.plan-users {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.plan-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.7rem;
    text-align: center;
}

/* Novos estilos para estrutura atualizada dos planos */
.plan-price-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.plan-emoji {
    font-size: 1.5rem;
    text-align: center;
    margin: 1rem 0 0.5rem 0;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.plan-card:hover .plan-emoji {
    transform: scale(1.1);
}

.plan-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 0;
    line-height: 1.5;
    font-style: italic;
}

.plan-content {
    width: 100%;
}

.plan-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: left;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    width: 100%;
}

.plan-card ul li {
    padding: 0.4rem 0;
    color: var(--text-primary);
    font-size: 0.98rem;
    text-align: left;
    position: relative;
    padding-left: 1.5rem;
}

.plan-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.btn-contratar {
    width: 100%;
    margin-top: auto;
    font-size: 1.1rem;
    padding: 0.9rem 0;
    border-radius: var(--border-radius);
    font-weight: 700;
    justify-content: center;
    text-align: center;
}

/* CTA Orçamento Personalizado */
.custom-quote-section {
    margin: 3rem 0;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-large);
    border: 2px solid var(--border-color);
}

.custom-quote-section h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.custom-quote-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* CTA Consultoria Simples */
.consulting-cta-simple {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: var(--border-radius-large);
    position: relative;
    overflow: hidden;
}

.consulting-cta-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.consulting-cta-simple .cta-content {
    position: relative;
    z-index: 2;
}

.consulting-cta-simple h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.consulting-cta-simple p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.consulting-services {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
}

.consulting-services ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.consulting-services ul li {
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    padding-left: 2.5rem;
}

.consulting-services ul li:before {
    content: "→";
    position: absolute;
    left: 1rem;
    color: var(--primary-color);
    font-weight: bold;
}

.consulting-cta {
    text-align: center;
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* Updated CTA Section */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* Responsive adjustments for new sections */
@media (max-width: 1200px) {
    .main-plans-grid {
        gap: 1.5rem;
    }
    
    .main-plans-grid .plan-card {
        min-height: 420px;
    }
    
    .plans-modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .plan-card.module {
        min-height: 380px;
    }
}

@media (max-width: 900px) {
    .main-plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .main-plans-grid .plan-card {
        min-height: 400px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .plans-grid-middle {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .plans-modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .plan-card {
        min-width: 220px;
        padding: 2rem 1rem 1.5rem 1rem;
    }
    
    .plan-card.module {
        min-height: 400px;
        padding: 1.5rem 1rem 1rem 1rem;
    }
}

@media (max-width: 768px) {
    .pain-gain-card {
        flex-direction: column;
        text-align: center;
    }
    
    .arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .main-plans-grid {
        grid-template-columns: 1fr;
    }
    
    .main-plans-grid .plan-card {
        min-height: 380px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid-middle {
        grid-template-columns: 1fr;
    }
    
    .plans-modules-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card {
        min-width: 220px;
        padding: 2rem 1rem 1.5rem 1rem;
    }
    
    .plan-card.module {
        min-height: 400px;
    }
    
    .modules-title {
        font-size: 1.6rem;
    }
    
    .modules-subtitle {
        font-size: 1rem;
    }
    
    .consulting-services ul {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .pain-gain-card {
        padding: 1.5rem;
    }
    
    .plan-card {
        padding: 1.5rem;
        min-width: 0;
        width: 100%;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-modules-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.module {
        min-height: 320px;
        padding: 1.2rem 0.8rem 0.8rem 0.8rem;
    }
    
    .plan-card.horizontal {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .module-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .plan-emoji {
        font-size: 1rem;
        margin: 0.8rem 0 0.3rem 0;
    }
    
    .plans-grid-middle {
        grid-template-columns: 1fr;
    }
    
    .consulting-services {
        padding: 1.5rem;
    }
    
    .consulting-services ul li {
        padding: 0.5rem 0.75rem;
        padding-left: 2rem;
    }
} 

/* Carrossel de Logos */
.logos-carousel {
    margin: 3rem 0;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 50px; /* Add padding to accommodate arrows */
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    width: max-content;
}

.carousel-track .logo-item {
    flex: 0 0 200px;
    min-width: 200px;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    margin: 0 1rem;
    text-align: center;
}

.logo-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    padding: 8px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.logo-item:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.2;
    margin-top: 0.25rem;
}



/* Carrossel de Depoimentos */
.testimonials-carousel {
    margin: 3rem 0;
    overflow: hidden;
}

.testimonials-carousel .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: calc(200% + 2rem);
}

.testimonials-carousel .testimonial-card {
    min-width: 100%;
    margin: 0;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials-carousel .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonials-carousel .testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonials-carousel .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-carousel .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.testimonials-carousel .author-info h4 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonials-carousel .author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}



/* Navegação por setas */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-medium);
}

.carousel-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-arrow i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.carousel-arrow:hover i {
    color: white;
}

/* Responsive adjustments for arrows */
@media (max-width: 768px) {
    .carousel-container {
        padding: 0 40px;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
    }
    
    .carousel-prev {
        left: 0;
    }
    
    .carousel-next {
        right: 0;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 35px;
    }
    
    .carousel-arrow {
        width: 30px;
        height: 30px;
    }
    
    .carousel-prev {
        left: 0;
    }
    
    .carousel-next {
        right: 0;
    }
    
    .carousel-arrow i {
        font-size: 0.8rem;
    }
}

/* Responsive adjustments for carousels */
@media (max-width: 768px) {
    .logo-item {
        min-width: 150px;
    }
    
    .logo-circle {
        width: 60px;
        height: 60px;
    }
    
    
    .testimonials-carousel .testimonial-card {
        min-width: 280px;
        padding: 1.5rem;
    }
    
    .testimonials-carousel .testimonial-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-item {
        min-width: 120px;
    }
    
    .logo-circle {
        width: 50px;
        height: 50px;
    }
    
    
    .testimonials-carousel .testimonial-card {
        min-width: 250px;
        padding: 1rem;
    }
    
    .logos-grid {
        gap: 0.5rem;
        padding: 0.5rem 0;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin; /* Firefox */
        -ms-overflow-style: auto; /* IE and Edge */
    }
    
    .logos-grid::-webkit-scrollbar {
        display: block; /* Chrome, Safari and Opera */
        height: 4px;
    }
    
    .logos-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    .logos-grid::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 2px;
    }
    
    .logo-item {
        min-width: 80px;
    }
    
    .logo-img {
        width: 58px;
        height: 58px;
        padding: 4px;
    }
    
    .logo-name {
        font-size: 0.78rem;
    }
    
    .testimonial-highlight {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .quote-icon {
        font-size: 2rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1.1rem;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
    
    .author-info h4 {
        font-size: 1.1rem;
    }
    
    .author-info span {
        font-size: 0.9rem;
    }
    
    .company-info {
        font-size: 0.8rem;
    }
    
    .testimonials-carousel .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
} 



/* Melhorias na responsividade dos carrosséis */
@media (max-width: 768px) {
    .logo-item {
        min-width: 150px;
    }
    
    .testimonials-carousel .testimonial-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-item {
        min-width: 120px;
    }
    
    .testimonials-carousel .testimonial-card {
        min-width: 100%;
    }
} 

/* CONSULTORIA PERSONALIZADA - NOVO DESIGN */
.consulting-section {
    margin-top: 4rem;
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: var(--border-radius-large);
    position: relative;
    overflow: hidden;
}

.consulting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.consulting-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 4rem;
}

.consulting-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.consulting-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.consulting-timeline {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.consulting-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.consulting-service {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.consulting-service:nth-child(odd) {
    flex-direction: row;
}

.consulting-service:nth-child(even) {
    flex-direction: row-reverse;
}

.service-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(74, 44, 221, 0.4);
    z-index: 3;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.service-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(74, 44, 221, 0.3);
    transition: all 0.3s ease;
}

.service-content:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 44, 221, 0.4);
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-info h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features span {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.consulting-cta {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 4rem;
}

.btn-consulting {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-consulting::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-consulting:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
}

.btn-consulting:hover::before {
    left: 100%;
}

.btn-consulting:active {
    transform: translateY(-1px);
}

/* Responsive adjustments for consulting section */
@media (max-width: 768px) {
    .consulting-section {
        margin-top: 3rem;
        padding: 2rem 0;
    }
    
    .consulting-section h3 {
        font-size: 2rem;
    }
    
    .consulting-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .consulting-timeline::before {
        display: none;
    }
    
    .consulting-service {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .service-number {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 1rem;
    }
    
    .service-content {
        width: 100%;
        margin-top: 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-info h4 {
        font-size: 1.2rem;
    }
    
    .btn-consulting {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .consulting-section {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
    
    .consulting-section h3 {
        font-size: 1.6rem;
    }
    
    .consulting-desc {
        font-size: 0.9rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
    
    .service-info h4 {
        font-size: 1.1rem;
    }
    
    .service-info p {
        font-size: 0.9rem;
    }
    
    .service-features span {
        font-size: 0.8rem;
    }
    
    .btn-consulting {
        font-size: 0.9rem;
        padding: 0.9rem 1.8rem;
    }
}

/* PÁGINA DE CONSULTORIA - ESTILOS ESPECÍFICOS */

/* Hero Consultoria */
.hero-consultoria {
    padding: 6rem 0 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-consultoria::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-consultoria .hero-content {
    position: relative;
    z-index: 2;
}

.hero-consultoria .hero-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-consultoria .highlight {
    color: #F0C277!important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

.hero-consultoria .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.hero-consultoria .hero-note {
    color: rgba(255, 255, 255, 0.8);
}

/* Why Consulting Section */
.why-consulting {
    padding: 5rem 0;
    background: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.why-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Consulting Services Section */
.consulting-services-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

/* Process Section */
.consulting-process {
    padding: 5rem 0;
    background: var(--bg-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Consulting Testimonials */
.consulting-testimonials {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonial-highlight {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    margin-top: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-highlight blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-highlight blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 1rem;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Consulting CTA Section */
.consulting-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.consulting-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.consulting-cta-section .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.consulting-cta-section h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.consulting-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.consulting-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.consulting-form .form-group {
    margin-bottom: 1rem;
}

.consulting-form input,
.consulting-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.consulting-form input::placeholder,
.consulting-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.consulting-form input:focus,
.consulting-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.consulting-cta-section .cta-note {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

/* Nav Active State */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design for Consultoria Page */
@media (max-width: 1024px) {
    .hero-consultoria {
        padding: 140px 0 60px;
    }
    
    .hero-consultoria .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-consultoria .hero-visual {
        justify-content: center;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-consultoria {
        padding: 100px 0 40px;
        overflow: hidden;
    }
    
    .hero-consultoria .hero-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-consultoria .hero-visual {
        order: 1;
        margin-bottom: 1rem;
        height: auto;
        min-height: auto;
        transform: none !important;
        justify-content: center;
    }
    
    .hero-consultoria .hero-text {
        order: 2;
    }
    
    .hero-consultoria .hero-image {
        justify-content: center;
    }
    
    .hero-consultoria .hero-title {
        font-size: 2.25rem;
        line-height: 1.3;
    }
    
    .hero-consultoria .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-consultoria .hero-img {
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: none;
    }
    
    .why-card {
        padding: 1.75rem;
    }
    
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .why-card h3 {
        font-size: 1.3rem;
    }
    
    .consulting-services-section {
        padding: 60px 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .consulting-testimonials {
        padding: 60px 0;
    }
    
    .testimonial-highlight {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .testimonial-highlight blockquote {
        font-size: 1.15rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 1rem;
    }
    
    .consulting-cta-section {
        padding: 60px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .consulting-form {
        padding: 1.75rem;
    }
    
    .btn-consulting {
        font-size: 1.1rem;
        padding: 1.1rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-consultoria {
        padding: 90px 0 30px;
        overflow: hidden;
    }
    
    .hero-consultoria .hero-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-consultoria .hero-visual {
        order: 1;
        margin-bottom: 0.5rem;
        height: auto;
        transform: none !important;
        justify-content: center;
    }
    
    .hero-consultoria .hero-text {
        order: 2;
    }
    
    .hero-consultoria .hero-image {
        justify-content: center;
    }
    
    .hero-consultoria .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-consultoria .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-consultoria .hero-img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
    }
    
    .why-consulting {
        padding: 40px 0;
    }
    
    .why-card {
        padding: 1.5rem;
    }
    
    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .why-card h3 {
        font-size: 1.2rem;
    }
    
    .why-card p {
        font-size: 0.9rem;
    }
    
    .consulting-services-section {
        padding: 40px 0;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }
    
    .service-icon i {
        font-size: 1.6rem;
    }
    
    .service-info h4 {
        font-size: 1.2rem;
    }
    
    .service-info p {
        font-size: 0.95rem;
    }
    
    .service-features span {
        font-size: 0.85rem;
    }
    
    .consulting-process {
        padding: 40px 0;
    }
    
    .process-step {
        padding: 1.25rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }
    
    .process-step h3 {
        font-size: 1.15rem;
    }
    
    .process-step p {
        font-size: 0.9rem;
    }
    
    .consulting-testimonials {
        padding: 40px 0;
    }
    
    .testimonial-highlight {
        padding: 1.75rem 1.25rem;
        margin-top: 1.5rem;
    }
    
    .quote-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-highlight blockquote {
        font-size: 1.05rem;
    }
    
    .testimonial-highlight blockquote::before {
        font-size: 3rem;
        top: -0.75rem;
        left: -0.75rem;
    }
    
    .author-avatar {
        width: 55px;
        height: 55px;
    }
    
    .author-info h4 {
        font-size: 1.1rem;
    }
    
    .author-info span {
        font-size: 0.9rem;
    }
    
    .consulting-cta-section {
        padding: 40px 0;
    }
    
    .consulting-cta-section h2 {
        font-size: 1.75rem;
    }
    
    .consulting-cta-section p {
        font-size: 1rem;
    }
    
    .consulting-form {
        padding: 1.5rem;
    }
    
    .consulting-form input,
    .consulting-form textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    .btn-consulting {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
    font-size: 28px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-primary);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--text-primary);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive para WhatsApp flutuante */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        z-index: 9998;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 22px;
    }
}

/* Media query adicional para transição suave entre mobile e tablet */
@media (min-width: 481px) and (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        min-height: 200px;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .btn-large {
        padding: 0.95rem 1.75rem;
        font-size: 1.05rem;
    }
    
    .plan-card {
        padding: 2rem;
    }
    
    .plan-header h4 {
        font-size: 1.3rem;
    }
}