:root {
    --bg-color: #0d0d12;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent: #22d3ee;
    --accent-hover: #06b6d4;
    --accent-gold: #fbbf24;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --whatsapp-color: #25D366;
    --instagram-color: #E1306C;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
}

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

/* Background Effects */
.bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

.effect-1 {
    top: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: rgba(34, 211, 238, 0.15);
}

.effect-2 {
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(251, 191, 36, 0.1);
}

/* Typography & Components */
.highlight {
    color: var(--accent);
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    width: fit-content !important;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
}

.benefits {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 50px;
    background: linear-gradient(180deg, var(--glass-bg) 0%, rgba(255,255,255,0) 100%);
    border-top: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 16px;
}

.benefits h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.benefits ul {
    list-style: none;
}

.benefits li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
}

.benefits .icon {
    color: var(--accent);
    margin-right: 12px;
    font-weight: bold;
}

/* CTA Button */
.cta-button {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.6);
}

.cta-button.whatsapp {
    background: var(--whatsapp-color);
    color: white;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.cta-button.whatsapp:hover {
    background: #128C7E;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

.cta-button.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.4);
}

.icon-svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hidden {
    display: none !important;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    position: relative;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.glass:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.card h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 1.1rem;
}

.authority-badge {
    text-align: center;
    padding: 20px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.authority-badge strong {
    color: var(--accent-gold);
}

/* Deliverables */
.deliverables {
    padding: 80px 0;
}

.check-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 40px;
}

.check-list li {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: flex-start;
}

.check {
    margin-right: 15px;
    font-size: 1.4rem;
}

.transition-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
}

.transition-text p {
    margin-bottom: 15px;
}

/* About Me Section */
.about-me {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(0deg, var(--bg-color) 0%, rgba(34, 211, 238, 0.03) 100%);
    border-top: 1px solid var(--glass-border);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: var(--accent);
    top: 15px;
    left: -15px;
    z-index: 0;
    opacity: 0.15;
}

.about-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: var(--accent-gold);
    bottom: -15px;
    right: -15px;
    z-index: 0;
    opacity: 0.1;
}

.profile-img {
    width: 100%;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    object-fit: cover;
}

.about-text {
    flex: 1.2;
}

.about-text .section-title.text-left {
    text-align: left;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.about-list {
    list-style: none;
}

.about-list li {
    font-size: 1.1rem;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    color: var(--text-primary);
    line-height: 1.5;
}

.about-list li .icon {
    color: var(--accent-gold);
    margin-right: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Form Section as Popup Overlay */
.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.form-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.form-container {
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.form-overlay.show .form-container {
    transform: translateY(0) scale(1);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.close-btn:hover {
    color: var(--text-primary);
}

.step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.option-label {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.option-label:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.option-label input {
    margin-right: 12px;
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.btn-group {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.next-btn, .submit-btn {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s;
    flex: 1;
}

.next-btn:hover, .submit-btn:hover {
    background: var(--accent-hover);
}

.prev-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s;
    flex: 1;
}

.prev-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.input-group input {
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent);
}

.result {
    text-align: center;
}

.result h3 {
    margin-bottom: 20px;
    line-height: 1.4;
}

.result p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .headline {
        font-size: 2.2rem;
    }
    .hero {
        padding: 60px 0 40px;
    }
    .benefits {
        padding: 20px;
    }
    .form-container {
        padding: 24px;
    }
    .cta-button {
        width: 100%;
        padding: 16px 20px;
    }
    .cta-button.mx-auto {
        max-width: 300px;
    }
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    .about-text .section-title.text-left {
        text-align: center;
    }
}
