@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffc82c;
    --primary-hover: #e6b427;
    --light-color: #f8f9fa;
    --dark-color: #1d1d1b;
    --text-color: #333;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    background: var(--dark-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 525px;
    animation: fadeIn 0.6s ease-out;
    color: var(--white);
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    max-width: 180px;
    height: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.2;
}

.subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 300;
}

#leadForm {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: #ccc;
}

input {
    width: 100%;
    padding: 1rem;
    background-color: #2a2a2a;
    border: 1px solid #3d3d3d;
    border-radius: 8px;
    font-family: inherit;
    color: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 200, 44, 0.1);
    background-color: #333;
}

.btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.whatsapp-btn {
    background-color: #25D366 !important;
    color: white !important;
}

.whatsapp-btn:hover {
    background-color: #128C7E !important;
}

.secondary-btn {
    background-color: transparent !important;
    border: 1px solid #444 !important;
    color: #888 !important;
}

.secondary-btn:hover {
    background-color: #2a2a2a !important;
    color: white !important;
}

.footer-links {
    margin-top: 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Legal Pages Styling */
.content-page {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.title_terms {
    color: var(--primary-color);
}

.content-page h2 {
    margin: 2rem 0 1rem;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--primary-hover);
    font-weight: 600;
    text-decoration: none;
}

/* Success Page Styling */
.success-card {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}
