/* Recruify Landing Page - Estilo exclusivo */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

.lp-root {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* Hero */
.lp-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 45%, #0f172a 100%);
    color: #fff;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(255, 193, 7, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.lp-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(40, 167, 69, 0.1) 0%, transparent 55%);
    pointer-events: none;
}

.lp-hero .container {
    position: relative;
    z-index: 1;
}

.lp-hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
    animation: lp-fade-up 0.8s ease-out;
}

.lp-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    animation: lp-fade-up 0.8s ease-out 0.1s both;
}

.lp-hero h1 .lp-highlight {
    background: linear-gradient(135deg, #ffc107 0%, #ffdb4d 50%, #28a745 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 540px;
    margin-bottom: 2.5rem;
    animation: lp-fade-up 0.8s ease-out 0.2s both;
}

.lp-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: lp-fade-up 0.8s ease-out 0.3s both;
}

.lp-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}

.lp-btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.lp-btn-hero-primary {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #0f172a;
}

.lp-btn-hero-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.lp-btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Barra de busca do hero */
.lp-search-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 0.5rem;
    animation: lp-fade-up 0.8s ease-out 0.3s both;
    max-width: 780px;
}

.lp-search-main {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lp-search-input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.lp-search-icon {
    position: absolute;
    left: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.lp-search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.85rem 1rem 0.85rem 2.8rem;
    font-size: 1.05rem;
    color: #fff;
    transition: background 0.2s, border-color 0.2s;
    outline: none;
}

.lp-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.lp-search-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 193, 7, 0.4);
}

.lp-search-btn {
    flex-shrink: 0;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #0f172a;
    border: none;
    border-radius: 14px;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.lp-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.lp-search-filters {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0.6rem 0.5rem 0.25rem;
    flex-wrap: wrap;
}

.lp-filter-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
    min-width: 0;
}

.lp-filter-item > i {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.lp-filter-select {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.35rem 0.25rem;
    cursor: pointer;
    outline: none;
    width: 100%;
    min-width: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.25rem center;
    padding-right: 1.2rem;
}

.lp-filter-select option {
    background: #1e293b;
    color: #fff;
}

.lp-filter-select:focus {
    color: rgba(255, 255, 255, 0.95);
}

.lp-filter-select:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.lp-filter-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 0.6rem;
    flex-shrink: 0;
}

/* Cards de escolha (duas opções) */
.lp-choices {
    padding: 5rem 0;
    background: #f8fafc;
}

.lp-section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 0.5rem;
}

.lp-section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 3rem;
}

.lp-choice-card {
    height: 100%;
    border-radius: 20px;
    border: none;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: #fff;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

.lp-choice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
}

.lp-choice-card .card-body {
    padding: 2.5rem;
}

.lp-choice-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.lp-choice-icon.candidate {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #b45309;
}

.lp-choice-icon.company {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #047857;
}

.lp-choice-card .card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.lp-choice-card .card-text {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.lp-choice-card .btn {
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
}

/* Benefícios */
.lp-benefits {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
}

.lp-benefit-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.lp-benefit-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffc107 0%, #28a745 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-benefit-item h5 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.lp-benefit-item p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* CTA final */
.lp-cta-final {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    text-align: center;
}

.lp-cta-final h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.lp-cta-final p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.lp-cta-final .lp-hero-ctas {
    justify-content: center;
}

/* Footer da landing */
.lp-footer {
    padding: 2rem 0;
    background: #0f172a;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 0.9rem;
}

.lp-footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.lp-footer a:hover {
    color: #ffc107;
}

/* Animações */
@keyframes lp-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .lp-hero {
        min-height: auto;
        padding: 3rem 0 4rem;
    }
    .lp-hero-ctas {
        flex-direction: column;
    }
    .lp-btn-hero {
        width: 100%;
        justify-content: center;
    }
    .lp-choices .row > [class*="col-"] {
        margin-bottom: 1.5rem;
    }
    .lp-search-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .lp-filter-item {
        flex: 0 0 calc(50% - 0.5rem);
    }
    .lp-filter-divider {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .lp-hero {
        padding: 2rem 0 3rem;
    }
    .lp-hero h1 {
        font-size: 1.75rem;
    }
    .lp-hero .lead {
        font-size: 1rem;
    }
    .lp-section-title {
        font-size: 1.5rem;
    }
    .lp-choice-card .card-body {
        padding: 1.5rem;
    }
    .lp-footer {
        font-size: 0.85rem;
    }
    .lp-search-box {
        border-radius: 16px;
        padding: 0.4rem;
    }
    .lp-search-input {
        font-size: 0.95rem;
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    }
    .lp-search-btn {
        padding: 0.75rem 1rem;
    }
    .lp-filter-item {
        flex: 0 0 100%;
    }
}
