/* 
 * PRESELL PAGE - MINIMALISMO PREMIUM COM FOCO EM CONVERSÃO
 * Design Philosophy: Clareza visual máxima, hierarquia agressiva, foco no CTA
 * Tipografia: Poppins (display) + Inter (body)
 * Cores: Branco, Preto, Vermelho vibrante (#E63946)
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Container Principal */
.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.content-wrapper {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    animation: fadeIn 0.6s ease-out;
}

/* Animação de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Seção de Conteúdo (Esquerda) */
.content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    animation: slideInLeft 0.8s ease-out;
}

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

.content-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Título Principal */
.title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #000000;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    animation: slideInLeft 0.8s ease-out 0.1s both;
}

/* Descrição */
.description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.8;
    max-width: 500px;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

/* Features */
.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #2a2a2a;
    font-weight: 500;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #E63946;
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Botão CTA Principal */
.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #E63946;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    max-width: fit-content;
    animation: slideInLeft 0.8s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #d62828;
    transition: left 0.3s ease-out;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
}

.cta-button:active {
    transform: scale(0.98);
}

/* Disclaimer */
.disclaimer {
    font-size: 0.9rem;
    color: #888888;
    font-style: italic;
    margin-top: 1rem;
    animation: slideInLeft 0.8s ease-out 0.5s both;
}

/* Seção de Imagem (Direita) */
.image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease-out, filter 0.4s ease-out;
}

.product-image:hover {
    transform: translateY(-10px) scale(1.02);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.15));
}

/* Responsividade para Tablets */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    .title {
        font-size: 2.8rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .image-section {
        order: -1;
    }
    
    .product-image {
        max-width: 450px;
    }
}

/* Responsividade para Mobile */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
        height: auto;
        min-height: 100vh;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-section {
        padding: 1rem;
    }
    
    .title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .description {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .features {
        margin: 1rem 0;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .image-section {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .product-image {
        max-width: 280px;
    }
}

/* Responsividade para Celulares Pequenos */
@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }
    
    .content-section {
        padding: 0.5rem;
    }
    
    .title {
        font-size: 1.8rem;
        letter-spacing: -0.01em;
    }
    
    .description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .features {
        gap: 0.75rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .disclaimer {
        font-size: 0.8rem;
    }
    
    .product-image {
        max-width: 240px;
    }
}

/* Otimizações para Performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .cta-button {
        border: 2px solid #E63946;
    }
}
