/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --vh: 1vh;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    flex-direction: column;
}

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

/* Seção Principal Minimalista */
.minimal-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

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

.main-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.highlight {
    color: #9b59b6;
    font-weight: 800;
}

.subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 32px;
    color: #34495e;
}

.pain-point {
    color: #9b59b6;
    font-weight: 700;
}

.description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #7f8c8d;
}

.description strong {
    color: #9b59b6;
    font-weight: 600;
}

/* Imagem Hero */
.hero-image {
    margin: 40px auto 48px;
    text-align: center;
    position: relative;
    max-width: 800px;
}

.results-image {
    max-width: 100%;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
    position: relative;
}

.results-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Efeito de destaque para a imagem */
.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #e74c3c, #9b59b6, #e74c3c);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.1;
        transform: scale(1);
    }
    100% {
        opacity: 0.2;
        transform: scale(1.02);
    }
}

/* Overlay das Estatísticas */
.stats-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 100px;
}

.stat-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #9b59b6;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Botão CTA */
.cta-button {
    display: inline-block;
    background: #9b59b6;
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.3);
    margin-bottom: 24px;
    border: 2px solid #9b59b6;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(155, 89, 182, 0.4);
    text-decoration: none;
    color: #ffffff;
    background: #8e44ad;
    border-color: #8e44ad;
}

.cta-button:active {
    transform: translateY(0);
}

/* Urgência */
.urgency {
    font-size: 14px;
    color: #9b59b6;
    font-weight: 500;
    margin-bottom: 32px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    opacity: 0.7;
    margin-top: 24px;
}

.trust-badges span {
    font-size: 12px;
    font-weight: 500;
    color: #7f8c8d;
    padding: 6px 12px;
    border: 1px solid #e0e6ed;
    border-radius: 16px;
    background: #f8f9fa;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Footer Minimalista */
.minimal-footer {
    background: #f8f9fa;
    color: #7f8c8d;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #e0e6ed;
}

.minimal-footer p {
    font-size: 12px;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    animation: fadeInUp 0.8s ease-out;
}

.stats {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.cta-button {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.urgency {
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.trust-badges {
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .minimal-section {
        padding: 30px 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .main-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .subtitle {
        font-size: 18px;
        margin-bottom: 24px;
        line-height: 1.4;
    }
    
    .description {
        font-size: 16px;
        margin-bottom: 32px;
        line-height: 1.6;
    }
    
    .hero-image {
        margin: 32px auto 40px;
    }
    
    .results-image {
        height: 300px;
        object-position: center top;
        border-radius: 12px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .hero-image::before {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        border-radius: 16px;
    }
    
    .stats-overlay {
        top: 16px;
        right: 16px;
        gap: 10px;
    }
    
    .stat-item {
        padding: 10px 14px;
        min-width: 90px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .cta-button {
        padding: 18px 24px;
        font-size: 16px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 20px;
        display: block;
        border-radius: 16px;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .urgency {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .trust-badges {
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .trust-badges span {
        font-size: 11px;
        padding: 6px 10px;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .minimal-section {
        padding: 20px 0;
    }
    
    .main-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .subtitle {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .description {
        font-size: 15px;
        margin-bottom: 28px;
        line-height: 1.6;
    }
    
    .hero-image {
        margin: 24px auto 32px;
    }
    
    .results-image {
        height: 250px;
        object-position: center top;
        border-radius: 10px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }
    
    .hero-image::before {
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
        border-radius: 14px;
    }
    
    .stats-overlay {
        top: 12px;
        right: 12px;
        gap: 8px;
    }
    
    .stat-item {
        padding: 8px 12px;
        min-width: 80px;
        border-radius: 10px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .cta-button {
        padding: 16px 20px;
        font-size: 15px;
        min-height: 52px;
        border-radius: 14px;
        max-width: 280px;
    }
    
    .urgency {
        font-size: 13px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .trust-badges {
        flex-direction: row;
        justify-content: center;
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .trust-badges span {
        font-size: 10px;
        padding: 5px 8px;
        border-radius: 12px;
    }
}

/* Estados de foco para acessibilidade */
.cta-button:focus {
    outline: 2px solid #9b59b6;
    outline-offset: 4px;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Efeitos de hover globais */
.stat-item,
.trust-badges span {
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.trust-badges span:hover {
    background: #e9ecef;
    transform: translateY(-1px);
    border-color: #d0d7de;
}

/* Melhorias específicas para mobile */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .main-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .subtitle {
        font-size: 15px;
    }
    
    .description {
        font-size: 14px;
    }
    
    .hero-image {
        margin: 20px auto 28px;
    }
    
    .results-image {
        height: 200px;
        object-position: center top;
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .hero-image::before {
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border-radius: 12px;
    }
    
    .stats-overlay {
        top: 8px;
        right: 8px;
        gap: 6px;
    }
    
    .stat-item {
        padding: 6px 10px;
        min-width: 70px;
        border-radius: 8px;
    }
    
    .cta-button {
        padding: 14px 16px;
        font-size: 14px;
        min-height: 48px;
        max-width: 260px;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .trust-badges {
        gap: 4px;
        flex-wrap: wrap;
    }
    
    .trust-badges span {
        font-size: 9px;
        padding: 4px 6px;
        border-radius: 10px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .cta-button {
        min-height: 56px;
        padding: 18px 24px;
    }
    
    .cta-button:active {
        transform: scale(0.98);
        background: #8e44ad;
    }
    
    .stat-item:active {
        transform: scale(0.98);
    }
    
    .trust-badges span:active {
        transform: scale(0.98);
        background: #e9ecef;
    }
}

/* Melhorias de performance para mobile */
@media (max-width: 768px) {
    .content {
        will-change: transform;
    }
    
    .cta-button {
        will-change: transform;
    }
    
    /* Reduzir animações em dispositivos com preferência por movimento reduzido */
    @media (prefers-reduced-motion: reduce) {
        .content,
        .stats,
        .cta-button,
        .urgency,
        .trust-badges {
            animation: none;
        }
        
        .stat-item,
        .trust-badges span {
            transition: none;
        }
    }
}