/* ============================================= */
/* FLUJO DE PERSONAS PAGE - STYLES               */
/* ============================================= */

/* ---- STATS ROW ---- */
.fp-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 640px) {
    .fp-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fp-stat {
    background: rgba(16, 19, 25, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.fp-stat:hover {
    border-color: rgba(0, 202, 0, 0.3);
}

.fp-stat__number {
    display: block;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.fp-stat__label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ---- SECTIONS ---- */
.fp-section {
    margin-top: clamp(3rem, 7vw, 5.5rem);
}

.fp-section--dark {
    background: rgba(10, 12, 17, 0.6);
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3.5rem);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ---- CARDS GRID ---- */
.fp-cards-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-top: 2rem;
}

@media (min-width: 600px) {
    .fp-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .fp-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fp-card {
    background: rgba(16, 19, 25, 0.75);
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.fp-card:hover {
    border-color: rgba(0, 202, 0, 0.25);
    transform: translateY(-4px);
}

.fp-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 202, 0, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.fp-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.fp-card h3 {
    margin: 0 0 0.6rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
}

.fp-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ---- STEPS ---- */
.fp-steps {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .fp-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fp-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .fp-step {
        position: relative;
    }

    .fp-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 1.5rem;
        right: -1rem;
        width: 2rem;
        height: 2px;
        background: linear-gradient(to right, var(--accent), transparent);
    }
}

.fp-step__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.7;
    line-height: 1;
}

.fp-step__content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.fp-step__content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ---- DECISIONS ---- */
.fp-decisions {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .fp-decisions {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fp-decision {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: rgba(16, 19, 25, 0.75);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease;
}

.fp-decision:hover {
    border-color: rgba(0, 202, 0, 0.2);
}

.fp-decision__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(0, 202, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-decision__icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.fp-decision h3 {
    margin: 0 0 0.4rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.fp-decision p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- PRIVACY ---- */
.fp-section--privacy {
    background: linear-gradient(135deg, rgba(0, 202, 0, 0.06), rgba(74, 144, 226, 0.06));
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3.5rem);
    border: 1px solid rgba(0, 202, 0, 0.15);
}

.fp-privacy-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

@media (max-width: 640px) {
    .fp-privacy-content {
        flex-direction: column;
    }
}

.fp-privacy__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(0, 202, 0, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-privacy__icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.fp-privacy-content h2 {
    margin: 0 0 0.75rem 0;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.fp-privacy-content > div > p {
    color: var(--text-muted);
    margin: 0 0 1.25rem 0;
    line-height: 1.65;
}

.fp-privacy__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.fp-privacy__list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.fp-privacy__list svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ---- TRIAL SECTION ---- */
.fp-trial-section {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.fp-trial-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem auto;
}

.fp-trial-header h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin: 0.5rem 0 1rem 0;
    font-weight: 700;
}

.fp-trial-subtext {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.fp-trial-form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    background: rgba(16, 19, 25, 0.85);
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid rgba(0, 202, 0, 0.2);
    box-shadow: 0 0 0 1px rgba(0, 202, 0, 0.05), 0 24px 60px rgba(0, 0, 0, 0.4);
}

.fp-trial-form .form-group {
    margin-bottom: 1.25rem;
}

.fp-trial-form label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}

.fp-trial-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: var(--bg-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 0.95rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
}

.fp-trial-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 202, 0, 0.1);
}

.fp-trial-form input::placeholder {
    color: rgba(148, 150, 163, 0.6);
    font-size: 0.88rem;
}

.fp-trial-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 0.75rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(0, 202, 0, 0.9), rgba(0, 180, 0, 0.9));
    color: #050607;
    box-shadow: 0 12px 36px rgba(0, 202, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    letter-spacing: 0.01em;
}

.fp-trial-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(0, 202, 0, 0.45);
}

.fp-trial-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.fp-status-message {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 20px;
}

/* ---- SUCCESS MESSAGE ---- */
.fp-success-message {
    text-align: center;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.fp-success-message svg {
    color: var(--accent);
}

.fp-success-message h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
}

.fp-success-message p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-muted);
}
