@charset "UTF-8";
/* ============================================
   Product Landing Pages — Startupxplore
   Pixel-perfect with wireframe (landing-bonds.html)
   Color classes: .product-equity, .product-bonds, .product-notes
   ============================================ */

/* --- Font families (requires Google Fonts: Poppins + Inter) --- */
.product-landing { font-family: 'Inter', system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
.product-landing h1, .product-landing h2, .product-landing h3, .product-landing h4 { font-family: 'Poppins', system-ui, sans-serif; }

/* --- Color tokens --- */
.product-equity {
    --pl-color: #3580E0; --pl-color-dark: #1B4985; --pl-color-light: #EBF3FD;
    --pl-gradient: linear-gradient(135deg, #1B4985 0%, #3580E0 100%);
    --pl-hero-bg:
        radial-gradient(circle at 24px 24px, rgba(53,128,224,0.03) 1px, transparent 1px),
        radial-gradient(ellipse at 20% 80%, rgba(53,128,224,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(27,73,133,0.06) 0%, transparent 50%),
        linear-gradient(135deg, #EBF3FD 0%, #8EB5E0 100%);
    --pl-hero-bg-size: 32px 32px, 100% 100%, 100% 100%, 100% 100%;
}
.product-bonds {
    --pl-color: #2A8FA0; --pl-color-dark: #1D6570; --pl-color-light: #E6F5F7;
    --pl-gradient: linear-gradient(135deg, #1E6B7A 0%, #2A8FA0 100%);
    --pl-hero-bg:
        radial-gradient(circle at 24px 24px, rgba(42,143,160,0.03) 1px, transparent 1px),
        radial-gradient(ellipse at 20% 80%, rgba(42,143,160,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(30,107,122,0.06) 0%, transparent 50%),
        linear-gradient(135deg, #E0F5F0 0%, #8ED5E0 100%);
    --pl-hero-bg-size: 32px 32px, 100% 100%, 100% 100%, 100% 100%;
}
.product-notes {
    --pl-color: #5B68D0; --pl-color-dark: #3D4899; --pl-color-light: #EEEDF9;
    --pl-gradient: linear-gradient(135deg, #3A4099 0%, #5B68D0 100%);
    --pl-hero-bg:
        radial-gradient(circle at 24px 24px, rgba(91,104,208,0.03) 1px, transparent 1px),
        radial-gradient(ellipse at 20% 80%, rgba(91,104,208,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(61,72,153,0.06) 0%, transparent 50%),
        linear-gradient(135deg, #EEEDF9 0%, #A0A8E0 100%);
    --pl-hero-bg-size: 32px 32px, 100% 100%, 100% 100%, 100% 100%;
}

/* --- Navbar (dark bg, white logo) --- */
.navbar-product-landing {
    background: linear-gradient(135deg, #1a2a3a, #0d1b2a);
    border-bottom: none;
    margin-bottom: 0;
    min-height: 60px;
}
.navbar-product-landing .navbar-brand {
    padding: 15px;
    height: auto;
}
.navbar-product-landing .navbar-brand img {
    height: 30px;
}
.navbar-product-landing .navbar-nav > li > a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    padding-top: 20px;
    padding-bottom: 20px;
}
.navbar-product-landing .navbar-nav > li > a:hover {
    color: #fff;
}
.navbar-product-landing .navbar-toggle .icon-bar {
    background-color: rgba(255,255,255,0.8);
}
.btn-pl-login {
    background: transparent !important;
    border: 2px solid rgba(255,255,255,0.6) !important;
    color: #fff !important;
    border-radius: 4px !important;
    margin-top: 10px !important;
    padding: 6px 20px !important;
}
.btn-pl-login:hover {
    border-color: #fff !important;
    background: rgba(255,255,255,0.1) !important;
}

/* --- CTA Button (uses product color) --- */
.btn-pl-cta {
    background-color: var(--pl-color, #3580E0);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 32px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-pl-cta:hover,
.btn-pl-cta:focus {
    background-color: var(--pl-color-dark, #1B4985);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.btn-pl-cta-white {
    background-color: #fff;
    color: var(--pl-color, #3580E0);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 40px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-pl-cta-white:hover,
.btn-pl-cta-white:focus {
    background-color: rgba(255,255,255,0.9);
    color: var(--pl-color-dark, #1B4985);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* --- Section titles with accent line --- */
.pl-section-title {
    text-align: center;
    margin-bottom: 8px;
    font-weight: 700;
    color: #333;
    font-size: 32px;
    position: relative;
}
.pl-section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--pl-color, #3580E0);
    margin: 12px auto 0;
    border-radius: 2px;
}
.pl-section-subtitle {
    text-align: center;
    color: #888;
    font-size: 18px;
    max-width: 640px;
    margin: 0 auto 40px;
}

/* --- Hero (LIGHT background, dark text) --- */
.pl-hero {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
    background: var(--pl-hero-bg, linear-gradient(135deg, #EBF3FD 0%, #8EB5E0 100%));
    background-size: var(--pl-hero-bg-size, auto);
}
.pl-hero .container {
    position: relative;
    z-index: 1;
}
.pl-hero-content {
    padding-top: 20px;
}
.pl-hero-badge {
    display: inline-block;
    background: var(--pl-color-light, #E6F5F7);
    color: var(--pl-color-dark, #1D6570);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.pl-hero-title {
    font-size: 60px;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.15;
    color: #0C1929;
}
.pl-hero-title span {
    color: var(--pl-color);
}
.pl-hero-subtitle {
    font-size: 22px;
    color: #687B8F;
    margin-bottom: 32px;
    line-height: 1.5;
    max-width: 560px;
}
.pl-hero-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}
.pl-hero-features li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #2E4057;
}
.pl-hero-features li i {
    margin-right: 8px;
    color: var(--pl-color, #3580E0);
    width: 16px;
    text-align: center;
}
.pl-hero-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-top: 24px;
}
.pl-hero-trust i {
    font-size: 16px;
}

/* Hero form card */
.pl-hero-form-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.pl-hero-form-card h3 {
    color: #333;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 24px;
    margin-top: 0;
    text-align: center;
}
.pl-hero-form-card .form-group {
    margin-bottom: 20px;
}
.pl-hero-form-card label {
    font-size: 15px;
    font-weight: 600;
    color: #0C1929;
    margin-bottom: 6px;
}
.pl-hero-form-card .form-control {
    height: auto;
    min-height: 50px;
    font-size: 15px;
    border-radius: 10px;
    border: 1.5px solid #ddd;
    padding: 14px 16px;
}
.pl-hero-form-card .form-control:focus {
    border-color: var(--pl-color, #3580E0);
    box-shadow: 0 0 0 3px rgba(53,128,224,0.12);
}
.pl-hero-form-card .btn-pl-cta {
    background-color: #E85D26;
    font-size: 17px;
    padding: 16px 24px;
    min-height: 54px;
    margin-top: 12px;
}
.pl-hero-form-card .btn-pl-cta:hover,
.pl-hero-form-card .btn-pl-cta:focus {
    background-color: #C44A1A;
}
.pl-terms {
    margin-top: 8px;
}
.pl-terms small {
    color: #888;
    font-size: 12px;
}
.pl-terms a {
    color: var(--pl-color, #3580E0);
}
.pl-form-disclaimer {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 14px;
    margin-bottom: 0;
    line-height: 1.5;
}
.pl-form-disclaimer i {
    margin-right: 4px;
}
.pl-form-message {
    margin-top: 16px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
}
.pl-msg-error {
    background: #fef0f0;
    color: #c0392b;
    border: 1px solid #f5c6cb;
}
.pl-msg-success {
    background: #eafaf1;
    color: #27ae60;
    border: 1px solid #c3e6cb;
}

/* --- Trust Bar (white bg, dark numbers, product border-top) --- */
.pl-trust-bar {
    padding: 24px 0;
    background: #fff;
    border-top: 3px solid var(--pl-color, #3580E0);
    border-bottom: 1px solid #eee;
}
.pl-trust-bar-number {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #0C1929;
    margin-bottom: 4px;
    font-feature-settings: 'tnum' 1;
    font-variant-numeric: tabular-nums;
}
.pl-trust-bar-label {
    display: block;
    font-size: 14px;
    color: #888;
    margin-top: 4px;
}

/* --- Regulatory Badges (flex row, text first, white badges) --- */
.pl-regulatory {
    padding: 16px 0;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}
.pl-regulatory .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.pl-regulatory-text {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    margin: 0;
}
.pl-regulatory-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #ddd;
    color: #666;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}
.pl-regulatory-badge i {
    color: #888;
    font-size: 14px;
}

/* --- Active Opportunities (uses shared syndicate card template) --- */
.pl-opportunities {
    padding: 64px 0;
    background: #fff;
}
/* Cards not clickable in landing context */
.pl-opportunities .link-to-syndicate { pointer-events: none; color: inherit; text-decoration: none; }
.pl-opportunities .btn-invest { display: none; }
.pl-opportunities .countdown { display: none; }
.pl-opportunities .syndicate { cursor: default; }

.pl-opportunities-more {
    text-align: center;
    margin-top: 24px;
    font-size: 15px;
    font-weight: 600;
    color: #888;
}
.pl-opportunities-more i {
    margin-right: 6px;
}

/* --- Process Step Cards (horizontal) --- */
.pl-process {
    padding: 64px 0;
    background: #fff;
}
.pl-step-cards {
    display: flex;
    flex-wrap: wrap;
}
.pl-step-cards > [class*="col-"] {
    position: relative;
}
.pl-step-card {
    text-align: center;
    padding: 24px 16px;
    background: #f8f9fa;
    border-radius: 12px;
    min-height: 200px;
}
.pl-step-number {
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    background: var(--pl-color, #3580E0);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}
.pl-step-card h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 17px;
}
.pl-step-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
}
.pl-step-connector {
    position: absolute;
    right: -12px;
    top: 40px;
    color: #ccc;
    font-size: 18px;
    z-index: 1;
}

/* --- Benefits (solid icon, square rounded, subtle cards) --- */
.pl-benefits {
    padding: 64px 0;
    background: #f5f5f5;
}
.pl-benefit-card {
    text-align: center;
    padding: 28px 24px;
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.pl-benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.pl-benefit-icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 12px;
    background: var(--pl-color, #3580E0);
    color: #fff;
    font-size: 20px;
    margin: 0 auto 20px;
}
.pl-benefit-card h3 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 18px;
}
.pl-benefit-card p {
    color: #888;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Testimonials (trust score + cards with quote ::before) --- */
.pl-testimonials {
    padding: 64px 0;
    background: #fff;
}
.pl-trust-score {
    text-align: center;
    margin-bottom: 40px;
}
.pl-ts-label {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    margin-bottom: 8px;
}
.pl-ts-rating {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    line-height: 1.2;
}
.pl-ts-rating small {
    font-size: 20px;
    font-weight: 600;
    color: #888;
}
.pl-ts-stars {
    color: #f5a623;
    font-size: 22px;
    margin: 4px 0;
    letter-spacing: 2px;
}
.pl-ts-verdict {
    font-size: 15px;
    font-weight: 700;
    color: var(--pl-color, #2A8FA0);
    margin-top: 4px;
}
.pl-testimonial-card {
    background: #F6F8FB;
    padding: 28px 24px;
    border-radius: 14px;
    margin-bottom: 20px;
    position: relative;
    height: 100%;
}
.pl-testimonial-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.pl-testimonial-text {
    font-size: 14px;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}
.pl-testimonial-text::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 28px;
    font-weight: 700;
    color: #BCC5D1;
    opacity: 1;
    line-height: 1;
}
.pl-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pl-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pl-color, #2A8FA0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}
.pl-testimonial-author-info strong {
    display: block;
    font-size: 14px;
    color: #333;
    line-height: 1.3;
}
.pl-testimonial-author-info span {
    font-size: 12px;
    color: #888;
}

/* --- FAQ (colored accordion) --- */
.pl-faq {
    padding: 64px 0;
    background: #fff;
}
.pl-faq .panel {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 0.75rem;
    margin-bottom: 10px;
    overflow: hidden;
}
.pl-faq .panel-heading {
    background: #fff;
    padding: 0;
    border-radius: 0.75rem;
}
.pl-faq .panel-title a {
    display: block;
    padding: 18px 24px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
    position: relative;
    padding-right: 50px;
}
.pl-faq .panel-title a:not(.collapsed) {
    background: var(--pl-color, #3580E0);
    color: #fff;
    border-radius: 0.75rem 0.75rem 0 0;
}
.pl-faq .panel-title a:hover {
    text-decoration: none;
}
.pl-faq .panel-title a::after {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-family: FontAwesome;
}
.pl-faq .panel-title a.collapsed::after {
    content: '\f067';
    color: #999;
}
.pl-faq .panel-title a:not(.collapsed)::after {
    content: '\f068';
    color: #fff;
}
.pl-faq .panel-body {
    color: #666;
    line-height: 1.7;
    border-top: none;
    padding: 20px 24px;
    font-size: 15px;
}
.pl-faq .panel-collapse {
    border-radius: 0 0 0.75rem 0.75rem;
}

/* --- CTA Footer (gradient) --- */
.pl-cta-footer {
    padding: 64px 0;
    background: var(--pl-gradient, linear-gradient(135deg, #1B4985 0%, #3580E0 100%));
    color: #fff;
    text-align: center;
}
.pl-cta-footer h2 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    font-size: 35px;
}
.pl-cta-footer p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 32px;
}
.pl-cta-cnmv {
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.pl-cta-cnmv i {
    margin-right: 4px;
}

/* --- Disclaimer (with bold Advertencia) --- */
.pl-disclaimer {
    padding: 24px 0;
    background: #f5f5f5;
    border-top: 1px solid #eee;
}
.pl-disclaimer p {
    color: #888;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

/* --- Sticky CTA (transform-based show/hide) --- */
.pl-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #fff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
    padding: 12px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.pl-sticky-cta.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}
.pl-sticky-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pl-sticky-cta-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: none;
}
.pl-sticky-cta .btn-pl-cta {
    display: block;
    width: 100%;
    padding: 12px 28px;
    font-size: 16px;
    text-align: center;
    background-color: #E85D26;
}
.pl-sticky-cta .btn-pl-cta:hover,
.pl-sticky-cta .btn-pl-cta:focus {
    background-color: #C44A1A;
}

/* --- Post-registration success state --- */
.pl-success-state {
    text-align: center;
    padding: 40px 20px;
}
.pl-success-state .pl-success-icon {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 16px;
}
.pl-success-state h3 {
    color: #333;
    margin-bottom: 12px;
}
.pl-success-state p {
    color: #666;
    font-size: 15px;
}

/* --- Responsive --- */
@media (min-width: 768px) {
    .pl-sticky-cta-text { display: block; }
    .pl-sticky-cta .btn-pl-cta { width: auto; display: inline-block; }
    .pl-sticky-cta-inner { justify-content: space-between; }
}

@media (max-width: 991px) {
    .pl-hero {
        padding: 60px 0 40px;
    }
    .pl-hero-title {
        font-size: 40px;
    }
    .pl-hero-subtitle {
        font-size: 18px;
    }
    .pl-hero-content {
        margin-bottom: 30px;
    }
    .pl-hero-form-card {
        margin-top: 32px;
    }
    .pl-step-cards .col-sm-3 {
        width: 50%;
        margin-bottom: 20px;
    }
    .pl-step-connector {
        display: none;
    }
}

@media (max-width: 767px) {
    .pl-hero {
        padding: 40px 0 32px;
        text-align: center;
    }
    .pl-hero-title {
        font-size: 32px;
    }
    .pl-hero-features {
        text-align: left;
        display: inline-block;
    }
    .pl-hero-trust {
        justify-content: center;
    }
    .pl-hero-form-card {
        padding: 28px 20px;
    }
    .pl-hero-form-card h3 {
        font-size: 20px;
    }
    .pl-trust-bar-number {
        font-size: 26px;
    }
    .pl-trust-bar .col-xs-6 {
        margin-bottom: 12px;
    }
    .pl-benefits,
    .pl-testimonials,
    .pl-faq,
    .pl-cta-footer,
    .pl-process,
    .pl-opportunities {
        padding: 50px 0;
    }
    .pl-step-cards .col-sm-3 {
        width: 100%;
        margin-bottom: 16px;
    }
    .pl-step-card {
        min-height: auto;
    }
    .pl-step-connector {
        display: none;
    }
    .pl-testimonial-card {
        height: auto;
        margin-bottom: 16px;
    }
    .pl-regulatory .container {
        gap: 12px;
    }
    .pl-cta-footer h2 {
        font-size: 26px;
    }
    .pl-ts-rating {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .pl-hero-title {
        font-size: 28px;
    }
    .pl-hero-form-card {
        padding: 24px 16px;
    }
    .pl-hero-form-card .btn-pl-cta {
        font-size: 16px;
        padding: 14px 16px;
        min-height: 50px;
    }
    .pl-hero-form-card .form-control {
        font-size: 16px;
    }
    .pl-trust-bar-number {
        font-size: 22px;
    }
    .pl-ts-rating {
        font-size: 24px;
    }
    .pl-ts-stars {
        font-size: 18px;
    }
}

/* ============================================
   Profile Selector (multi-select cards in form)
   ============================================ */
.pl-profile-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pl-profile-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.pl-profile-card:hover {
    border-color: #B0BEC5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pl-profile-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pl-profile-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.pl-profile-name {
    font-size: 14px;
    color: #1A2332;
}

.pl-profile-tae {
    font-size: 13px;
    font-weight: 600;
}

.pl-profile-liquidez {
    font-size: 11px;
    color: #8A96A3;
}

.pl-profile-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    color: transparent;
    font-size: 12px;
}

/* Colors per profile */
.pl-profile--conservador .pl-profile-tae { color: #2E7D32; }
.pl-profile--equilibrado .pl-profile-tae { color: #1565C0; }
.pl-profile--dinamico .pl-profile-tae { color: #E65100; }

/* Selected state */
.pl-profile-card input[type="checkbox"]:checked ~ .pl-profile-check {
    background: #2E7D32;
    border-color: #2E7D32;
    color: #fff;
    box-shadow: 0 2px 6px rgba(46,125,50,0.3);
}

.pl-profile--conservador input[type="checkbox"]:checked ~ .pl-profile-content .pl-profile-name,
.pl-profile--conservador input[type="checkbox"]:checked ~ .pl-profile-check { }
.pl-profile-card input[type="checkbox"]:checked ~ .pl-profile-content {
    /* subtle emphasis */
}

.pl-profile--conservador input[type="checkbox"]:checked + .pl-profile-content + .pl-profile-check { background: #2E7D32; border-color: #2E7D32; }
.pl-profile--equilibrado input[type="checkbox"]:checked + .pl-profile-content + .pl-profile-check { background: #1565C0; border-color: #1565C0; }
.pl-profile--dinamico input[type="checkbox"]:checked + .pl-profile-content + .pl-profile-check { background: #E65100; border-color: #E65100; }

/* Selected card border */
.pl-profile--conservador:has(input:checked) { border-color: #2E7D32; background: #F1F8E9; }
.pl-profile--equilibrado:has(input:checked) { border-color: #1565C0; background: #E3F2FD; }
.pl-profile--dinamico:has(input:checked) { border-color: #E65100; background: #FFF3E0; }

/* Inline amount input per product */
.pl-profile-amount {
    width: 100%;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #E2E8F0;
    animation: fadeSlideIn 0.25s ease-out;
}

.pl-profile-amount .input-group {
    max-width: 180px;
}

.pl-profile-amount .form-control {
    height: 32px;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 6px 0 0 6px;
}

.pl-profile-amount .input-group-addon {
    height: 32px;
    padding: 4px 10px;
    font-size: 13px;
    line-height: 24px;
    border-radius: 0 6px 6px 0;
}

.pl-profile-card {
    flex-wrap: wrap;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Importe input addon */
.pl-hero-form-card .input-group-addon {
    background: #F7F9FC;
    border: 1px solid #E2E8F0;
    border-left: none;
    color: #5A6A7A;
    font-weight: 600;
    font-size: 15px;
    padding: 6px 14px;
}


