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

body {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Logo Image Styles */
.logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
}

.footer-logo {
    height: 45px;
    width: auto;
    max-width: 170px;
    margin-bottom: 1rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff5a8d;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff5a8d;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #ff5a8d;
}

.btn-header {
    background: #ff5a8d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-header:hover {
    background: #e54a7d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 90, 141, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Header Button - Escondido por padrão */
.btn-header-mobile {
    background: #ff5a8d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    display: none;
}

.btn-header-mobile:hover {
    background: #e54a7d;
}

/* Esconder botão mobile no desktop */
@media (min-width: 769px) {
    .btn-header-mobile {
        display: none !important;
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff5a8d, #e54a7d);
    width: 0%;
    transition: width 0.3s ease;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.highlight {
    color: #ff5a8d;
    position: relative;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

/* Estados iniciais para animações - previne flash */
.hero-title,
.hero-subtitle,
.hero-cta,
.hero-image,
.problem-header,
.problem-card,
.solution-header,
.solution-visual,
.solution-badge,
.solution-badge-2,
.feature-item,
.solution-cta,
.features-header,
.feature-card,
.proof-header,
.testimonial-card,
.cta-badge,
.cta-title,
.cta-subtitle,
.cta-actions,
.trust-item,
.stat-card,
.stat-symbol,
.card-metric {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Exceções para elementos que não devem ser transladados */
.hero-image {
    transform: scale(0.8);
}

.solution-badge {
    transform: rotate(-15deg) scale(0);
}

.solution-badge-2 {
    transform: translateX(-30px);
}

.feature-item {
    transform: translateX(-30px);
}

.stat-item {
    transform: translateY(30px) scale(0.8);
}

.stat-symbol {
    transform: scale(0.5) rotate(45deg);
}

.card-metric {
    transform: translateX(-20px);
}

/* Elementos que aparecem após carregamento */
body.loaded .hero-title,
body.loaded .hero-subtitle,
body.loaded .hero-cta,
body.loaded .hero-image {
    opacity: 1;
    transform: none;
    transition: none;
}

/* Desabilitar transições CSS durante animações JS para evitar conflitos */
body.loaded .hero-title,
body.loaded .hero-subtitle,
body.loaded .hero-cta,
body.loaded .hero-image,
body.loaded .problem-header,
body.loaded .problem-card,
body.loaded .solution-header,
body.loaded .solution-visual,
body.loaded .solution-badge,
body.loaded .solution-badge-2,
body.loaded .feature-item,
body.loaded .solution-cta,
body.loaded .features-header,
body.loaded .feature-card,
body.loaded .proof-header,
body.loaded .testimonial-card,
body.loaded .cta-badge,
body.loaded .cta-title,
body.loaded .cta-subtitle,
body.loaded .cta-actions,
body.loaded .trust-item,
body.loaded .stat-card,
body.loaded .stat-symbol,
body.loaded .card-metric {
    transition: none;
}

.btn-primary:hover {
    background: #e54a7d;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 90, 141, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
}

.btn-large {
    padding: 24px 48px;
    font-size: 1.2rem;
}

/* Hero Section - Mobile First */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 50%, #fff 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    padding: 100px 0 40px;
    overflow: hidden;
}

/* Animação do gradiente de fundo */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Elementos decorativos do background */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 90, 141, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
}

/* Padrão de pontos sutis */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 90, 141, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

/* Elementos flutuantes sutis */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 90, 141, 0.1);
    animation: floatGentle 20s ease-in-out infinite;
}

.floating-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.floating-3 {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 20%;
    animation-delay: 10s;
}

.floating-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-delay: 15s;
}

@keyframes floatGentle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.2;
    }
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .title-break {
    display: block;
    color: #333;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Hero Visual Section */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.dashboard-container {
    position: relative;
    width: 100%;
    perspective: 1000px;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
}

.conversas-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 45%;
    transform: rotateY(-15deg) rotateX(5deg);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.conversas-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid #fff;
}

.conversas-overlay:hover {
    transform: rotateY(-10deg) rotateX(3deg) scale(1.05);
}

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff5a8d, #ff8fab);
    top: -150px;
    left: -150px;
    animation: float 20s ease-in-out infinite;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ff5a8d, #ff6b95);
    bottom: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.decoration-dots {
    position: absolute;
    top: 50%;
    left: -50px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(255, 90, 141, 0.15) 2px, transparent 2px);
    background-size: 20px 20px;
}

/* Updated CTA styles */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Updated button with icon */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #ff5a8d;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(255, 90, 141, 0.3);
    text-align: center;
}

.btn-primary .btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(3px);
}

/* Updated benefits styles - minimal approach */
.cta-benefits {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.8rem;
    align-items: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: transparent;
    padding: 0 0.8rem;
    border-radius: 0;
    border: none;
    transition: opacity 0.2s ease;
    font-size: 0.7rem;
    color: #9ca3af;
    font-weight: 400;
    opacity: 0.8;
    position: relative;
}

.benefit-item:not(:last-child):after {
    content: '•';
    position: absolute;
    right: -0.1rem;
    color: #d1d5db;
    font-size: 0.5rem;
    opacity: 0.5;
}

.benefit-item:hover {
    opacity: 1;
}

.benefit-item:first-child {
    padding-left: 0;
}

.benefit-item:last-child {
    padding-right: 0;
}

.benefit-icon {
    font-size: 0.8rem;
    flex-shrink: 0;
    display: inline-block;
}

.benefit-text {
    white-space: nowrap;
    font-weight: 400;
    letter-spacing: 0.02em;
    font-size: 0.68rem;
}

/* Animação de entrada escalonada */
.benefit-item:nth-child(1) {
    animation: fadeInBenefit 0.4s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.benefit-item:nth-child(2) {
    animation: fadeInBenefit 0.4s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.benefit-item:nth-child(3) {
    animation: fadeInBenefit 0.4s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

@keyframes fadeInBenefit {
    to {
        opacity: 1;
    }
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #ff5a8d;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    mix-blend-mode: difference;
}

.custom-cursor.cursor-hover {
    transform: scale(1.5);
    background: rgba(255, 90, 141, 0.1);
}

/* Auto Demo Button */
.auto-demo-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.auto-demo-btn:hover {
    background: rgba(255, 90, 141, 0.8);
    transform: translateY(-2px);
}

/* Performance optimizations for mobile */
.is-mobile .feature-card:hover {
    transform: none;
}

.is-mobile .feature-item:hover {
    transform: none;
}

.reduced-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* Removed pulse animation for cleaner look */
.btn-primary:not(:disabled) {
    /* animation removed for cleaner aesthetic */
}

/* Loading states */
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    animation: none;
}

/* Improved focus states for accessibility */
.btn-primary:focus,
.btn-secondary:focus {
    outline: 2px solid #ff5a8d;
    outline-offset: 2px;
}

/* WhatsApp button special styling */
.btn-secondary[onclick*="WhatsApp"] {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.btn-secondary[onclick*="WhatsApp"]:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: white;
}



@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Stats Section */
.stats {
    padding: 6rem 0;
    background: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
    opacity: 0;
    transform: translateY(30px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff5a8d;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Problem Section - Modern Design */
.problem {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0f 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.problem::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 90, 141, 0.03) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.problem-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.problem-label {
    display: inline-block;
    background: rgba(255, 90, 141, 0.1);
    color: #ff5a8d;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 90, 141, 0.2);
}

.problem-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.highlight-danger {
    color: #ff4757;
    background: linear-gradient(135deg, #ff4757, #ff6b7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.problem-subtitle {
    font-size: 1.3rem;
    color: #999;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

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

.problem-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 90, 141, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 90, 141, 0.3);
    box-shadow: 0 20px 40px rgba(255, 90, 141, 0.2);
}

.problem-card:hover::before {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 90, 141, 0.15) 0%, rgba(255, 90, 141, 0.05) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 90, 141, 0.1);
}

.problem-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(255, 90, 141, 0.25) 0%, rgba(255, 90, 141, 0.1) 100%);
    transform: rotate(-5deg) scale(1.1);
    border-color: rgba(255, 90, 141, 0.2);
}

.card-icon svg,
.card-icon i {
    width: 36px;
    height: 36px;
    color: #ff5a8d;
    stroke-width: 1.5;
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.3;
}

.problem-card p {
    color: #999;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.card-metric {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: #ff4757;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.card-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 90, 141, 0.05) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.problem-card:hover .card-bg {
    opacity: 1;
    animation: pulse-bg 2s ease-in-out infinite;
}

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

.problem-cta {
    text-align: center;
    padding-top: 2rem;
}

.problem-cta p {
    font-size: 1.3rem;
    color: #ccc;
}

.problem-cta strong {
    color: #ff5a8d;
    font-weight: 600;
}

/* Solution Section - Modern Design */
.solution {
    padding: 8rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.solution-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solution-label {
    display: inline-block;
    background: rgba(255, 90, 141, 0.1);
    color: #ff5a8d;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 90, 141, 0.2);
}

.solution-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.solution-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 3rem;
    overflow: visible;
    padding-top: 20px;
}

.solution-visual {
    position: relative;
}

.solution-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.solution-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.solution-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #ff5a8d 0%, #e54a7d 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 90, 141, 0.3);
    transform: rotate(-5deg);
    animation: floatBadge 3s ease-in-out infinite;
    text-align: center;
    min-width: 120px;
}

@keyframes floatBadge {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-10px); }
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-badge-2 {
    position: absolute;
    bottom: 20px;
    left: -15px;
    background: #fff;
    color: #333;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideInBadge 0.8s ease-out;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes slideInBadge {
    from { 
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.solution-badge-2 svg,
.solution-badge-2 i {
    width: 18px;
    height: 18px;
    color: #ff5a8d;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 90, 141, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 90, 141, 0.1) 0%, rgba(255, 90, 141, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, rgba(255, 90, 141, 0.2) 0%, rgba(255, 90, 141, 0.1) 100%);
    transform: rotate(-5deg) scale(1.1);
}

.feature-icon svg,
.feature-icon i {
    width: 24px;
    height: 24px;
    color: #ff5a8d;
    stroke-width: 2;
}

.feature-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.solution-cta {
    text-align: center;
    padding-top: 2rem;
}

.solution-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 18px 36px;
    font-size: 1.1rem;
}

.solution-cta .btn-primary svg,
.solution-cta .btn-primary i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.solution-cta .btn-primary:hover svg,
.solution-cta .btn-primary:hover i {
    transform: translateX(5px);
}

.demo-time {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
}

/* Features Section - Modern Redesign */
.features {
    padding: 8rem 0;
    background: #fefefe;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 90, 141, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 90, 141, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 40% 40%, rgba(255, 90, 141, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.features-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 90, 141, 0.08) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(255, 90, 141, 0.08) 1.5px, transparent 1.5px),
        linear-gradient(rgba(255, 90, 141, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 90, 141, 0.03) 1px, transparent 1px);
    background-size: 
        50px 50px,
        50px 50px,
        10px 10px,
        10px 10px;
    background-position: 
        -1px -1px,
        -1px -1px,
        -1px -1px,
        -1px -1px;
    opacity: 1;
    animation: driftPattern 60s linear infinite;
    pointer-events: none;
}

.features-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #ff5a8d 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

@keyframes driftPattern {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 50px); }
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.features-label {
    display: inline-block;
    background: rgba(255, 90, 141, 0.1);
    color: #ff5a8d;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.features-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: linear-gradient(135deg, #fff 0%, #fcfcfc 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff5a8d, #ff8fab);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 90, 141, 0.2);
}

.feature-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

/* Criar variedade visual com diferentes alturas */
.feature-card:nth-child(1) .feature-image-wrapper {
    height: 240px;
}

.feature-card:nth-child(2) .feature-image-wrapper {
    height: 200px;
}

.feature-card:nth-child(3) .feature-image-wrapper {
    height: 220px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.1);
}

.feature-image-wrapper {
    cursor: pointer;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-overlay {
    opacity: 1;
}

.feature-overlay svg,
.feature-overlay i {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 1.5;
}

.feature-overlay span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-info {
    padding: 1.5rem;
}

.feature-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.3;
}

.feature-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Social Proof Section - Redesigned */
.social-proof {
    padding: 6rem 0;
    background: #f8f9fb;
    position: relative;
    overflow: hidden;
}

.proof-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 90, 141, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 90, 141, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.proof-header {
    text-align: center;
    margin-bottom: 4rem;
}

.proof-label {
    display: inline-block;
    background: rgba(255, 90, 141, 0.1);
    color: #ff5a8d;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.proof-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.proof-title .highlight {
    color: #ff5a8d;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}



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

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating svg,
.testimonial-rating i {
    width: 18px;
    height: 18px;
    fill: #ffcc00;
    color: #ffcc00;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    font-style: normal;
}



.testimonial-text strong {
    color: #ff5a8d;
    font-weight: 600;
}

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

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5a8d, #e54a7d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

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

.author-name {
    font-weight: 600;
    color: #0a0a0a;
    font-style: normal;
    font-size: 1.1rem;
}

.author-role {
    font-size: 0.9rem;
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #ff6b9d);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .faq-list {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(255, 90, 141, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle:hover {
    background: #ff4081;
    transform: scale(1.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #ff4081;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 25px 30px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
}

/* CTA Final Section - Redesigned */
.cta-final {
    padding: 6rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 90, 141, 0.3), transparent);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ff5a8d, #ff8fab);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff5a8d, #e54a7d);
    bottom: -150px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.cta-shape-3 {
    width: 250px;
    height: 250px;
    background: #ff5a8d;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: left;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 90, 141, 0.1);
    border: 1px solid rgba(255, 90, 141, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.cta-badge svg, .cta-badge i {
    width: 16px;
    height: 16px;
    color: #ff5a8d;
}

.cta-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #ff5a8d;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-title .highlight {
    background: linear-gradient(135deg, #ff5a8d, #ff8fab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    font-weight: 400;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ff5a8d, #e54a7d);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 90, 141, 0.3);
}

.cta-btn-primary svg, .cta-btn-primary i {
    width: 20px;
    height: 20px;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: white;
    padding: 1.2rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-btn-secondary svg, .cta-btn-secondary i {
    width: 20px;
    height: 20px;
}

.cta-trust {
    display: flex;
    gap: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

    .trust-item svg, .trust-item i {
        width: 18px;
        height: 18px;
        color: #ff5a8d;
    }

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    padding: 20px;
}

.cta-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: visible;
    padding-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.stat-featured {
    overflow: visible;
    border-color: rgba(255, 90, 141, 0.2);
}

.stat-featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 90, 141, 0.1), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-featured:hover::before {
    opacity: 1;
}

.stat-symbol {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    opacity: 0.9;
    animation: floatSymbol 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(255, 90, 141, 0.4))
            drop-shadow(0 0 30px rgba(255, 90, 141, 0.2));
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

@keyframes floatSymbol {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 90, 141, 0.3);
    transform: translateY(-5px);
}

.stat-featured:hover .stat-symbol {
    transform: translateY(-20px) rotate(15deg) scale(1.15);
    opacity: 1;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 90, 141, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon svg, .stat-icon i {
    width: 24px;
    height: 24px;
    color: #ff5a8d;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.stat-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: #000;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ff5a8d;
}

.footer-brand p {
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff5a8d;
}

/* Ajuste para problem section em tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problem-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .solution-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Desktop styles for Hero */
/* Extra large screens */
@media (min-width: 1400px) {
    .testimonials-grid {
        max-width: 1300px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 5rem;
    }
    
    .hero-content {
        flex: 1;
        text-align: left;
        max-width: none;
    }
    
    .hero-visual {
        flex: 1;
        max-width: none;
    }
    
    .hero-title {
        font-size: 3.5rem;
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        padding: 0;
        text-align: left;
    }
    
    .hero-cta {
        align-items: flex-start;
    }
    
    .dashboard-container {
        transform: perspective(1000px) rotateY(-5deg);
    }
    
    .conversas-overlay {
        width: 40%;
        bottom: -30px;
        right: -40px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    
    /* CTA Final Responsive */
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .cta-trust {
        justify-content: center;
    }
    
    .cta-actions {
        justify-content: center;
    }
    
    .cta-stats {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    /* Social Proof Responsive */
    
    .solution-visual {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .solution-features {
        text-align: left;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .solution-text h2 {
        font-size: 2.8rem;
    }
    
    .cta-final h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA Mobile */
    .cta-final {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
    }
    
    .cta-trust {
        gap: 1rem;
        margin-top: 2rem;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .trust-item {
        font-size: 0.8rem;
        gap: 0.4rem;
        flex: 1;
        justify-content: center;
        text-align: center;
        min-width: 0;
        white-space: normal;
    }
    
    .trust-item span {
        font-size: 0.72rem;
        white-space: normal;
        line-height: 1.2;
    }
    
    .cta-shape-1 {
        width: 300px;
        height: 300px;
    }
    
    .cta-shape-2 {
        width: 200px;
        height: 200px;
    }
    
    .cta-shape-3 {
        width: 150px;
        height: 150px;
    }
    
    .cta-visual {
        display: block;
        margin-top: 3rem;
        padding: 15px;
    }
    
    .cta-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 0 10px;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-symbol {
        width: 100px;
        height: 100px;
        top: -30px;
        right: -30px;
    }
    
    /* Social Proof Mobile */
    .social-proof {
        padding: 4rem 0;
    }
    
    .proof-title {
        font-size: 2.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    

    
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 120px 0 60px;
    }
    
    .hero-wrapper {
        gap: 2rem;
    }
    
    .hero-visual {
        max-width: 350px;
        margin: 0 auto;
    }
    
    /* Header Mobile */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu.active .btn-header-mobile {
        display: block;
    }
    
    .btn-header {
        display: none;
    }
    
    /* Hero mobile adjustments */
    
    .conversas-overlay {
        width: 50%;
        bottom: -15px;
        right: -15px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 2.6rem;
        margin-bottom: 3rem;
        line-height: 1.2;
    }
    
    .solution-text h2 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .solution-title {
        font-size: 2.8rem;
    }
    
    .solution-subtitle {
        font-size: 1.2rem;
    }
    
    .solution-content {
        gap: 3rem;
    }
    
    .feature-item {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
    }
    
    .feature-icon svg,
    .feature-icon i {
        width: 24px;
        height: 24px;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .cta-final h2 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .cta-final p {
        font-size: 1.4rem;
        line-height: 1.4;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-title {
        font-size: 2.5rem;
    }
    
    .feature-image-wrapper {
        height: 180px;
    }
    
    .feature-info h3 {
        font-size: 1.2rem;
    }
    
    .feature-info p {
        font-size: 0.9rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problem-title {
        font-size: 2.8rem;
    }
    
    .problem-subtitle {
        font-size: 1.2rem;
    }
    
    .problem-card {
        padding: 2rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon svg,
    .card-icon i {
        width: 32px;
        height: 32px;
    }
    
    .problem-card h3 {
        font-size: 1.4rem;
    }
    
    .metric-value {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    

    
    /* Ajustes para os benefícios em tablet */
    .cta-benefits {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .benefit-item {
        font-size: 0.75rem;
        padding: 0 0.7rem;
    }
    
    .benefit-text {
        font-size: 0.73rem;
    }
    
    .benefit-icon {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 40px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-wrapper {
        gap: 2rem;
        width: 100%;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .logo-img {
        height: 38px;
        max-width: 150px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }
    
    .hero-visual {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .dashboard-container {
        margin-top: 0;
    }
    
    .conversas-overlay {
        width: 55%;
        bottom: -10px;
        right: -10px;
    }
    
    .decoration-1,
    .decoration-2 {
        display: none;
    }
    
    .floating-element {
        display: none;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        margin: 0.8rem 0;
        font-size: 1.2rem;
        padding: 20px 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .feature-card p {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .problem-card p {
        font-size: 1.1rem;
    }
    
    .problem-cta p {
        font-size: 1.3rem;
    }
    
    .features-title {
        font-size: 2.2rem;
    }
    
    .feature-image-wrapper {
        height: 160px;
    }
    
    .feature-info {
        padding: 1.2rem;
    }
    
    .feature-info h3 {
        font-size: 1.1rem;
    }
    
    .feature-info p {
        font-size: 0.85rem;
    }
    
    .feature-overlay svg,
    .feature-overlay i {
        width: 28px;
        height: 28px;
    }
    
    /* Resetar alturas variadas no mobile */
    .feature-card .feature-image-wrapper {
        height: 160px !important;
    }
    
    .problem-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .problem-subtitle {
        font-size: 1.05rem;
        padding: 0 1rem;
    }
    
    .problem-label {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .problem-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .card-icon svg,
    .card-icon i {
        width: 24px;
        height: 24px;
    }
    
    .problem-card h3 {
        font-size: 1.2rem;
    }
    
    .problem-card p {
        font-size: 0.95rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .metric-label {
        font-size: 0.8rem;
    }
    
    .problem-cta p {
        font-size: 1.1rem;
    }
    
    .solution-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .solution-subtitle {
        font-size: 1.05rem;
    }
    
    .solution-label {
        font-size: 0.8rem;
    }
    
    .solution-content {
        gap: 2rem;
    }
    
    .feature-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon svg,
    .feature-icon i {
        width: 20px;
        height: 20px;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    .solution-cta .btn-primary {
        font-size: 1rem;
        padding: 16px 28px;
    }
    
    .demo-time {
        font-size: 0.85rem;
    }
    
    .solution-badge {
        top: -15px;
        right: -15px;
        padding: 1.2rem;
        min-width: 100px;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .solution-badge-2 {
        bottom: 15px;
        left: -10px;
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    
    .solution-badge-2 svg,
    .solution-badge-2 i {
        width: 16px;
        height: 16px;
    }
    
    /* Social Proof Extra Small Mobile */
    .proof-label {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .proof-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-rating svg,
    .testimonial-rating i {
        width: 16px;
        height: 16px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .author-photo,
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    .author-avatar {
        font-size: 1rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-role {
        font-size: 0.85rem;
    }
    

    

    
    .cta-guarantee {
        font-size: 1rem;
    }
    
    /* Ajustes para os benefícios em mobile */
    .cta-benefits {
        flex-direction: row;
        align-items: center;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .benefit-item {
        font-size: 0.8rem;
        padding: 0 0.6rem;
        min-width: auto;
        justify-content: center;
    }
    
    .benefit-text {
        font-size: 0.78rem;
    }
    
    .benefit-icon {
        font-size: 0.9rem;
    }
    
    .solution-badge {
        top: -10px;
        right: -10px;
        padding: 1rem;
        min-width: 90px;
    }
    
    .badge-number {
        font-size: 1.8rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .solution-badge-2 {
        bottom: 10px;
        left: -5px;
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .solution-badge-2 svg,
    .solution-badge-2 i {
        width: 14px;
        height: 14px;
    }
    
    /* CTA Extra Small Mobile */
    .cta-badge {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
    }
    
    .cta-badge svg, .cta-badge i {
        width: 14px;
        height: 14px;
    }
    
    .cta-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .cta-btn-primary svg,
    .cta-btn-secondary svg,
    .cta-btn-primary i,
    .cta-btn-secondary i {
        width: 18px;
        height: 18px;
    }
    
    .cta-trust {
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
        justify-content: space-between;
    }
    
    .trust-item {
        flex-direction: row;
        align-items: center;
        gap: 0.3rem;
        padding: 0 0.2rem;
    }
    
    .trust-item span {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .trust-item svg,
    .trust-item i {
        width: 16px;
        height: 16px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-desc {
        font-size: 0.8rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-icon svg,
    .stat-icon i {
        width: 20px;
        height: 20px;
    }
    
    .stat-symbol {
        width: 80px;
        height: 80px;
        top: -25px;
        right: -25px;
    }
    
    .cta-shape-1 {
        width: 200px;
        height: 200px;
    }
    
    .cta-shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .cta-shape-3 {
        width: 100px;
        height: 100px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 1;
}

#lightbox-image {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.lightbox.active #lightbox-image {
    transform: scale(1);
}

.lightbox-caption {
    color: white;
    font-size: 1rem;
    margin-top: 1.5rem;
    text-align: center;
    opacity: 0.8;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close svg,
.lightbox-close i {
    width: 24px;
    height: 24px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
}

.slide-left.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
}

.slide-right.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
} 