/* assets/css/home-conversion.css */
:root {
    --primary: #f15a24;
    --dark: #0f172a;
    --slate: #475569;
    --white: #ffffff;
    --soft-orange: rgba(241, 90, 36, 0.1);
    --font: 'Plus Jakarta Sans', sans-serif;
}

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

body { font-family: var(--font); color: var(--dark); overflow-x: hidden; }

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

/* HERO SECTION */
.hero-section {
    padding: 80px 0;
    background: radial-gradient(circle at 90% 10%, #fff5f2 0%, #ffffff 50%);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LADO ESQUERDO */
.hero-info { flex: 1.1; }

.badge-new {
    display: inline-flex;
    align-items: center;
    background: var(--soft-orange);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 25px;
    gap: 10px;
}

.pulse-icon {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(241, 90, 36, 0.4);
    animation: pulse 2s infinite;
}

.hero-info h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-info .highlight { color: var(--primary); }

.hero-info p {
    font-size: 1.2rem;
    color: var(--slate);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 540px;
}

/* SEARCH BOX */
.search-container {
    background: white;
    padding: 8px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    max-width: 550px;
    margin-bottom: 40px;
}

.search-form { display: flex; align-items: center; gap: 10px; }
.search-form i { padding-left: 15px; color: var(--primary); }

.search-form input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 10px;
}

.search-form button {
    background: var(--dark);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.search-form button:hover { background: var(--primary); }

/* STATS */
.hero-stats-group { display: flex; gap: 30px; align-items: center; }
.stat strong { display: block; font-size: 1.5rem; color: var(--dark); }
.stat span { font-size: 0.85rem; color: var(--slate); font-weight: 600; }
.divider { width: 1px; height: 40px; background: #e2e8f0; }

/* LADO DIREITO (VISUAL) */
.hero-visual { flex: 0.9; position: relative; }
.image-box { position: relative; width: 100%; }

.main-student {
    width: 100%;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.1));
}

.blob-bg {
    position: absolute;
    top: 10%; right: -10%;
    width: 110%; height: 100%;
    background: var(--soft-orange);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
    animation: blobMorph 10s infinite alternate;
}

/* FLOATING TAGS */
.floating-tag {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 10;
    font-weight: 800;
    font-size: 0.9rem;
    animation: floatAnim 4s ease-in-out infinite;
}

.tag-premium { top: 20%; left: -40px; color: var(--primary); }
.tag-price { bottom: 15%; right: -20px; color: #10b981; animation-delay: 2s; }

.icon-circle {
    width: 30px; height: 30px;
    background: currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-circle i { color: white; font-size: 0.8rem; }

/* ANIMAÇÕES */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(241, 90, 36, 0.7); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(241, 90, 36, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(241, 90, 36, 0); }
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes blobMorph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .hero-wrapper { flex-direction: column; text-align: center; }
    .hero-info h1 { font-size: 2.8rem; }
    .hero-info p { margin: 0 auto 30px; }
    .search-container { margin: 0 auto 40px; }
    .hero-stats-group { justify-content: center; }
    .hero-visual { width: 80%; margin-top: 50px; }
    .tag-premium { left: 0; }
}