/* ============================================================
   LOVABLE AI — Landing Page Styles
   Go Up Treinamentos Profissionais
   Tema: Dark premium com acentos laranja/roxo
   ============================================================ */

/* ── CSS Variables ────────────────────────────────────────── */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a28;
    --bg-card-hover: #222236;
    --bg-input: #16162280;
    --border-color: #2a2a40;
    --border-focus: #FF6B35;

    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b80;

    --accent-orange: #FF6B35;
    --accent-orange-dark: #e55a28;
    --accent-purple: #7B2FBE;
    --accent-purple-light: #9B4FDE;
    --accent-green: #00C896;
    --accent-red: #ff4757;

    --gradient-main: linear-gradient(135deg, #FF6B35 0%, #7B2FBE 100%);
    --gradient-orange: linear-gradient(135deg, #FF6B35 0%, #ff9a6c 100%);
    --gradient-purple: linear-gradient(135deg, #7B2FBE 0%, #9B4FDE 100%);
    --gradient-green: linear-gradient(135deg, #00C896 0%, #00E6AC 100%);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow-orange: 0 0 30px rgba(255, 107, 53, 0.25);
    --shadow-glow-purple: 0 0 30px rgba(123, 47, 190, 0.25);

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Animated Background ──────────────────────────────────── */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-purple);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-orange);
    top: 50%;
    right: -10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: var(--accent-purple-light);
    bottom: -5%;
    left: 30%;
    animation-delay: -10s;
}

.shape-4 {
    width: 300px;
    height: 300px;
    background: var(--accent-orange);
    top: 30%;
    left: 50%;
    animation-delay: -15s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(40px, 30px) scale(1.05);
    }
}

/* ── Header ───────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding: 12px 0;
}

.header.scrolled {
    border-bottom-color: var(--border-color);
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-main) !important;
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px;
    transition: var(--transition) !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-orange);
}

.btn-nav::after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.4rem;
    color: var(--text-primary);
    padding: 8px;
}

/* ── Mobile Menu ──────────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 32px 32px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.6rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.close-menu:hover {
    color: var(--accent-orange);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--accent-orange);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    padding: 14px 32px;
    box-shadow: var(--shadow-glow-orange);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    padding: 14px 32px;
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.btn-submit {
    width: 100%;
    background: var(--gradient-main);
    color: #fff;
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow-orange);
    margin-top: 8px;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.4);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-cta-large {
    background: var(--gradient-main);
    color: #fff;
    padding: 18px 48px;
    font-size: 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow-orange);
    animation: pulse 2s infinite;
}

.btn-cta-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.5);
}

.btn-mode {
    width: 100%;
    padding: 14px 24px;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: var(--shadow-glow-orange);
    }

    50% {
        box-shadow: 0 0 50px rgba(255, 107, 53, 0.5);
    }
}

/* ── Text Gradient ────────────────────────────────────────── */
.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Section Commons ──────────────────────────────────────── */
.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Animate on Scroll ────────────────────────────────────── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 47, 190, 0.3) 0%, transparent 70%);
    top: -20%;
    right: -10%;
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite 3s;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--accent-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

#hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-feature i {
    color: var(--accent-orange);
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-lovable-logo {
    animation: fadeInUp 0.8s ease 1s both;
    opacity: 0.9;
}

.hero-lovable-logo img {
    height: 36px;
    width: auto;
}

/* ── About Section ────────────────────────────────────────── */
.section-about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 24px 0;
}

.highlight-box i {
    color: var(--accent-orange);
    font-size: 1.3rem;
    margin-top: 3px;
}

.highlight-box span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 28px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.features-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: sticky;
    top: 100px;
}

.features-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.features-list li i {
    color: var(--accent-orange);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* ── Content / Arguments Section ──────────────────────────── */
.section-content {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.arguments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.argument-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
    text-align: center;
}

.argument-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-orange);
}

.argument-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: #fff;
}

.argument-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ── Curriculum Section ───────────────────────────────────── */
.section-curriculum {
    padding: 100px 0;
}

.curriculum-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.curriculum-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.curriculum-card:hover {
    border-color: rgba(255, 107, 53, 0.2);
}

.practical-card {
    border-color: rgba(255, 107, 53, 0.25);
}

.curriculum-header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 18px 24px;
    color: var(--text-primary);
    font-size: 1rem;
    text-align: left;
    transition: var(--transition);
}

.curriculum-header:hover {
    background: var(--bg-card-hover);
}

.curriculum-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-purple);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.practical-number {
    background: var(--gradient-orange) !important;
}

.curriculum-header h3 {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
}

.accordion-icon {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.accordion-toggle[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.curriculum-list {
    padding: 0 24px 20px 76px;
}

.curriculum-list li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.curriculum-list li:last-child {
    border-bottom: none;
}

.curriculum-list li.practical {
    color: var(--accent-orange);
    font-weight: 600;
}

.practical-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--accent-orange);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 8px 0 12px 76px;
}

/* ── Modes Section ────────────────────────────────────────── */
.section-modes {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.modes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}

.mode-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-main);
}

.mode-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-orange);
}

.mode-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: #fff;
}

.mode-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.mode-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.mode-location i {
    color: var(--accent-orange);
    margin-right: 4px;
}

.mode-features {
    text-align: left;
    margin-bottom: 24px;
}

.mode-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.mode-features li i {
    color: var(--accent-green);
    font-size: 0.8rem;
}

/* ── Mode Pricing ─────────────────────────────────────────── */
.mode-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(255, 107, 53, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: var(--radius-md);
}

.price-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange);
}

.price-old {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-new {
    font-size: 1.6rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── EAD Notice ───────────────────────────────────────────── */
.ead-notice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(123, 47, 190, 0.08);
    border: 1px solid rgba(123, 47, 190, 0.2);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ead-icon i {
    color: var(--accent-purple);
    font-size: 1.3rem;
}

.ead-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Form Section ─────────────────────────────────────────── */
.section-form {
    padding: 100px 0;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.form-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-color);
}

.form-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.form-card-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.form-card-icon.orange {
    background: var(--gradient-orange);
}

.form-card-icon.green {
    background: var(--gradient-green);
}

.form-body {
    padding: 24px 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.form-group input.invalid {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.15);
}

.form-group input.valid {
    border-color: var(--accent-green);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0a0b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.error-message {
    font-size: 0.8rem;
    color: var(--accent-red);
    margin-top: 4px;
    font-weight: 500;
}

.hidden {
    display: none !important;
}

/* Card condicional animação */
.form-card.slide-in {
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
        max-height: 0;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 900px;
    }
}

/* ── Form Success & Error ─────────────────────────────────── */
.form-success {
    text-align: center;
    padding: 32px 24px;
    background: rgba(0, 200, 150, 0.06);
    border: 1px solid rgba(0, 200, 150, 0.2);
    border-radius: var(--radius-md);
    margin-top: 16px;
}

.success-icon i {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-green);
}

.form-success p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.pagamento-container {
    display: flex;
    justify-content: center;
    padding: 16px 0 8px;
}

.pagamento-container a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-main);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow-orange);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.pagamento-container a:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.5);
}

.form-error {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 71, 87, 0.08);
    border: 1px solid rgba(255, 71, 87, 0.2);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-top: 16px;
}

.form-error i {
    color: var(--accent-red);
    font-size: 1.2rem;
}

.form-error p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ── Location Section ─────────────────────────────────────── */
.section-location {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.location-item i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-top: 4px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.location-item div {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(123, 47, 190, 0.15), transparent 60%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-tag {
    background: rgba(123, 47, 190, 0.1);
    color: var(--accent-purple-light);
    border-color: rgba(123, 47, 190, 0.3);
}

.cta-content h2 {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-contact {
    margin-bottom: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact-item i {
    color: var(--accent-orange);
    width: 16px;
    text-align: center;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social-icons a:hover {
    color: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
}

.footer-links h3,
.footer-location h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-location p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ── WhatsApp Float ───────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .arguments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    #hero-title {
        font-size: 2.4rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .features-card {
        position: static;
    }

    .arguments-grid {
        grid-template-columns: 1fr;
    }

    .modes-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .shape {
        display: none;
    }

    .form-body {
        padding: 20px 16px;
    }

    .form-card-header {
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    #hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 16px;
    }

    .btn-cta-large {
        padding: 16px 28px;
        font-size: 1rem;
    }
}