:root {
    --primary-color: #d4af37; /* Dourado */
    --primary-dark: #b5952f;
    --bg-dark: #0a0a0c;
    --text-light: #f5f5f5;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Efeitos de fundo */
body::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    filter: blur(80px);
}

body::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    filter: blur(80px);
}

.container {
    display: flex;
    max-width: 1200px;
    width: 90%;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    flex-direction: row;
}

/* Seção de Conteúdo e Produto */
.product-section {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    width: fit-content;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 800;
}

h1 span {
    color: var(--primary-color);
}

p.subtitle {
    font-size: 1.1rem;
    color: rgba(245, 245, 245, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.mockup-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.mockup-container:hover {
    transform: translateY(-10px) scale(1.02);
}

.mockup-container img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Seção do Formulário / Lead */
.form-section {
    flex: 1;
    padding: 4rem;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: rgba(245, 245, 245, 0.6);
    font-size: 0.95rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.8);
    font-weight: 500;
}

.input-group input {
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

button[type="submit"] {
    margin-top: 1rem;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button[type="submit"]:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.form-message.error {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* Responsividade */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        margin: 2rem 0;
    }
    
    .product-section {
        padding: 3rem 2rem 2rem 2rem;
        text-align: center;
    }

    .badge {
        margin: 0 auto 1.5rem auto;
    }

    h1 {
        font-size: 2.5rem;
    }

    .form-section {
        padding: 3rem 2rem;
    }
}
