/* assets/css/product.css */
.product-section {
    background-color: #f5f5f5; /* Fondo gris claro neutro */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 24px;
    border-top: 1px solid #e5e5e5;
}

.layout-product {
    display: flex;
    width: 100%;
    max-width: 1100px;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.keychain-display-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.keychain-container {
    position: relative;
    width: 240px;
    height: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1000px;
}

.metal-ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #e5e5e5 0%, #a3a3a3 50%, #d4d4d4 100%);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.15), 0 4px 10px rgba(0,0,0,0.1);
}

.metal-ring::after {
    content: '';
    position: absolute;
    top: 6px; left: 6px; right: 6px; bottom: 6px;
    border-radius: 50%;
    background: #f5f5f5;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.metal-link {
    width: 14px;
    height: 35px;
    background: linear-gradient(90deg, #a3a3a3, #e5e5e5, #737373);
    border-radius: 3px;
    margin-top: -10px;
    z-index: 5;
}

.keychain-body {
    width: 220px;
    height: 330px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-top: -8px;
}

.keychain-container:hover .keychain-body { 
    transform: rotateY(180deg);
}

.face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 24px;
    padding: 12px;
    background: #ffffff;
    border: 4px solid #e5e5e5;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.face::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 50%);
    pointer-events: none;
}

.front { 
    z-index: 2; 
    transform: rotateY(0deg);
}

.photo-frame {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.photo-frame img { 
    width: 100%;
    height: 100%; 
    object-fit: cover; 
}

.brand-badge {
    position: absolute;
    bottom: 14px; left: 50%;
    transform: translateX(-50%);
    background: rgba(23, 23, 23, 0.9);
    backdrop-filter: blur(6px);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
}

.back { 
    transform: rotateY(180deg); 
    background: #ffffff; 
    border: 5px solid #171717; /* Borde trasero en gris grafito puro */
}

.qr-header { 
    color: #171717; 
    font-size: 0.7rem; 
    font-weight: 800; 
    text-transform: uppercase;
    letter-spacing: 0.05em; 
    margin-top: 6px; 
}

.qr-container { 
    width: 160px; 
    height: 160px; 
    background: #ffffff; 
    padding: 6px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.qr-container img { 
    width: 100%; 
    height: 100%; 
}

.qr-footer { 
    background: #171717; 
    color: #ffffff; 
    width: 100%; 
    padding: 8px; 
    border-radius: 10px;
    text-align: center; 
    font-size: 0.65rem; 
    font-weight: 600; 
    text-transform: uppercase; 
}

.qr-footer span { 
    color: #e5e5e5;
    font-weight: 800;
}

/* Sección Perfiles */
.profiles-section {
    background-color: #ffffff;
    padding: 100px 24px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
}

.profiles-container { 
    width: 100%; 
    max-width: 1100px; 
}

.profiles-header { 
    text-align: center; 
    margin-bottom: 64px; 
}

.profiles-header h2 { 
    font-size: 2.8rem;
    font-weight: 800; 
    letter-spacing: -0.02em; 
    margin-bottom: 16px;
    color: #171717;
}

.profiles-header p { 
    font-size: 1.2rem; 
    color: #525252; 
    max-width: 600px; 
    margin: 0 auto; 
    line-height: 1.5;
}

.profiles-wrapper { 
    display: flex; 
    gap: 40px; 
    flex-wrap: wrap; 
    justify-content: center; 
}

.profile-card {
    background: #f5f5f5; 
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    min-width: 320px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.profile-title-area { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    margin-bottom: 24px; 
}

.profile-icon-box { 
    font-size: 2rem; 
    background: #ffffff; 
    padding: 12px; 
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.profile-icon-box.medical { 
    background: #fafafa;
    border-color: #d4d4d4;
}

.profile-card h3 { 
    font-size: 1.4rem; 
    font-weight: 700;
    color: #171717;
}

.profile-tag { 
    font-size: 0.85rem; 
    color: #737373;
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    margin-top: 2px; 
}

.profile-tag.medical { 
    color: #171717; 
}

.profile-desc { 
    color: #525252; 
    font-size: 1rem; 
    line-height: 1.5;
    margin-bottom: 32px; 
}

.profile-bullets { 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
    border-top: 1px solid #e5e5e5; 
    padding-top: 24px; 
    margin-bottom: 32px;
}

.profile-bullets .bullet { 
    display: flex; 
    gap: 12px; 
    align-items: flex-start; 
}

.profile-bullets .bullet span { 
    font-weight: bold;
    color: #262626;
}

.profile-bullets .bullet p { 
    color: #404040; 
    font-size: 0.95rem; 
    line-height: 1.4; 
}

.btn-profile { 
    display: block; 
    text-align: center; 
    padding: 14px;
    border: 1px solid #d4d4d4; 
    color: #525252; 
    text-decoration: none; 
    border-radius: 12px; 
    font-weight: 600; 
    font-size: 0.95rem; 
    transition: all 0.2s;
    background: #ffffff;
}

.btn-profile.medical { 
    background-color: #000000; /* Botones principales en negro absoluto */
    color: #ffffff; 
    border: none; 
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-profile.medical:hover { 
    background-color: #262626;
}

.btn-profile:not(.medical):hover { 
    background: #f5f5f5;
    color: #171717;
    border-color: #a3a3a3;
}

/* Sección Workflow */
.workflow-section {
    background-color: #f5f5f5;
    padding: 100px 24px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
}

.workflow-container { 
    width: 100%; 
    max-width: 650px; 
}

.workflow-container h2 { 
    font-size: 2.5rem; 
    font-weight: 800; 
    text-align: center; 
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #171717;
}

.workflow-container .section-desc { 
    font-size: 1.1rem; 
    color: #525252; 
    text-align: center; 
    max-width: 700px; 
    margin: 0 auto 48px auto; 
    line-height: 1.5; 
}

.slider-wrapper { 
    position: relative; 
    width: 100%; 
    overflow: hidden; 
    border-radius: 20px; 
}

.slider-track { 
    display: flex; 
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
}

.step-card { 
    background: #ffffff; 
    border: 1px solid #e5e5e5; 
    border-radius: 20px; 
    padding: 48px 40px;
    width: 100%; 
    flex-shrink: 0; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01); 
}

.step-num { 
    font-size: 0.85rem; 
    font-weight: 700; 
    color: #737373; 
    text-transform: uppercase;
    letter-spacing: 0.1em; 
    margin-bottom: 20px; 
    display: block; 
}

.step-card h3 { 
    font-size: 1.6rem; 
    font-weight: 700; 
    margin-bottom: 16px;
    color: #171717;
}

.step-card p { 
    font-size: 1.05rem;
    color: #525252; 
    line-height: 1.6; 
}

.slider-controls { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-top: 32px; 
    padding: 0 8px;
}

.slider-arrows { 
    display: flex; 
    gap: 12px; 
}

.arrow-btn { 
    background: #ffffff; 
    border: 1px solid #d4d4d4; 
    color: #525252; 
    width: 44px; 
    height: 44px;
    border-radius: 50%; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.2rem; 
    transition: all 0.2s; 
    user-select: none;
}

.arrow-btn:hover { 
    background: #f5f5f5; 
    border-color: #171717;
    color: #171717;
}

.slider-dots { 
    display: flex; 
    gap: 8px; 
}

.dot { 
    width: 10px; 
    height: 10px; 
    border-radius: 50%;
    background: #d4d4d4; 
    cursor: pointer; 
    transition: all 0.3s ease; 
}

.dot.active { 
    background: #171717; 
    transform: scale(1.2);
}

/* Sección de Precios */
.pricing-section {
    background-color: #ffffff;
    padding: 100px 24px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
}

.pricing-container { 
    width: 100%; 
    max-width: 1100px; 
}

.pricing-container h2 { 
    font-size: 2.5rem; 
    font-weight: 800; 
    text-align: center; 
    margin-bottom: 16px;
    color: #171717;
}

.pricing-container .subtitle { 
    font-size: 1.1rem; 
    color: #525252; 
    text-align: center; 
    margin-bottom: 64px; 
}

.pricing-layout { 
    display: flex; 
    justify-content: center; 
    gap: 32px;
    flex-wrap: wrap; 
}

.price-card { 
    background: #f5f5f5; 
    border: 1px solid #e5e5e5; 
    border-radius: 20px; 
    padding: 40px 32px; 
    flex: 1; 
    max-width: 460px;
    min-width: 300px; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
}

/* Tarjeta Destacada Premium (Gris Puro Destacado) */
.price-card.featured { 
    border-color: #171717; 
    position: relative; 
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.featured-tag { 
    position: absolute; 
    top: -12px; 
    right: 28px; 
    background: #171717; 
    color: #ffffff; 
    font-size: 0.7rem; 
    font-weight: 700; 
    padding: 4px 12px;
    border-radius: 20px; 
    text-transform: uppercase; 
}

.plan-name { 
    font-size: 1.2rem; 
    font-weight: 700; 
    color: #737373; 
    margin-bottom: 16px; 
}

.price-card.featured .plan-name { 
    color: #171717;
}

.plan-cost { 
    font-size: 3rem; 
    font-weight: 800; 
    margin-bottom: 24px;
    color: #171717;
}

.plan-cost span { 
    font-size: 1rem; 
    font-weight: 500; 
    color: #737373;
}

.features-group-title { 
    font-size: 0.75rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    color: #525252; 
    letter-spacing: 0.05em; 
    margin-top: 16px; 
    margin-bottom: 12px; 
}

.plan-features { 
    list-style: none;
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    margin-bottom: 40px; 
}

.plan-features li { 
    font-size: 0.95rem; 
    color: #404040; 
    display: flex; 
    gap: 10px;
    align-items: flex-start; 
    line-height: 1.4; 
}

.plan-features li::before { 
    content: "✓"; 
    color: #a3a3a3; 
    font-weight: bold;
}

.price-card.featured .plan-features li::before { 
    color: #171717;
}

.btn-plan { 
    display: block; 
    text-align: center; 
    padding: 16px; 
    border-radius: 12px; 
    font-weight: 700; 
    text-decoration: none; 
    font-size: 0.95rem;
    transition: all 0.15s ease; 
}

.btn-outline { 
    border: 1px solid #d4d4d4; 
    color: #525252; 
    background: #ffffff;
}

.btn-outline:hover { 
    background: #f5f5f5;
    color: #171717;
    border-color: #a3a3a3;
}

.btn-solid { 
    background: #000000; 
    color: #ffffff; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-solid:hover { 
    background-color: #262626;
}

/* Sección Paramédicos e Incentivos */
.paramedic-incentive-section {
    background-color: #f5f5f5;
    padding: 100px 24px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
}

.paramedic-container { 
    width: 100%; 
    max-width: 1100px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 64px; 
    flex-wrap: wrap;
}

.paramedic-text-side { 
    flex: 1; 
    min-width: 300px; 
}

.badge-green { 
    background-color: #e5e5e5; 
    color: #171717; 
    padding: 6px 14px; 
    border-radius: 30px;
    font-size: 0.75rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    display: inline-block; 
    margin-bottom: 20px; 
}

.paramedic-text-side h2 { 
    font-size: 2.5rem; 
    font-weight: 800;
    letter-spacing: -0.02em; 
    line-height: 1.15; 
    margin-bottom: 24px; 
    color: #171717;
}

.paramedic-text-side p { 
    font-size: 1.1rem; 
    color: #525252; 
    line-height: 1.6; 
    margin-bottom: 24px;
}

.paramedic-bullets { 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
    margin-bottom: 32px; 
}

.paramedic-bullet-item { 
    display: flex; 
    gap: 12px; 
    align-items: center;
}

.paramedic-bullet-item .check { 
    color: #171717; 
    font-weight: bold; 
    font-size: 1.2rem; 
}

.paramedic-bullet-item p { 
    color: #404040; 
    font-size: 0.98rem; 
}

/* Caja de Incentivos Lateral */
.paramedic-card-side { 
    flex: 0.8;
    min-width: 300px; 
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%); 
    border: 1px solid #e5e5e5; 
    padding: 40px; 
    border-radius: 20px; 
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02); 
}

.paramedic-card-side .icon { 
    font-size: 3rem; 
    margin-bottom: 12px; 
}

.paramedic-card-side h3 { 
    font-size: 1.4rem; 
    font-weight: 700;
    margin-bottom: 8px; 
    color: #171717;
}

.paramedic-card-side .sub { 
    color: #737373; 
    font-size: 0.95rem; 
    margin-bottom: 24px; 
}

.reward-box { 
    background: #ffffff; 
    border: 1px dashed #d4d4d4;
    padding: 20px; 
    border-radius: 12px; 
    margin-bottom: 28px; 
}

.reward-box span { 
    font-size: 0.8rem; 
    color: #737373; 
    text-transform: uppercase; 
    letter-spacing: 0.05em;
}

.reward-amount { 
    font-size: 2.5rem; 
    font-weight: 800; 
    color: #000000; 
    margin-top: 4px; 
}

.reward-amount span { 
    font-size: 1rem; 
    color: #737373; 
    font-weight: 500;
}

/* Sección FAQ */
.faq-section {
    background-color: #ffffff;
    padding: 100px 24px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
}

.faq-container { 
    width: 100%; 
    max-width: 750px; 
}

.faq-container h2 { 
    font-size: 2.5rem; 
    font-weight: 800; 
    text-align: center; 
    margin-bottom: 56px;
    letter-spacing: -0.02em; 
    color: #171717;
}

.faq-wrapper { 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
}

details { 
    background: #f5f5f5; 
    border: 1px solid #e5e5e5; 
    border-radius: 12px;
    padding: 20px; 
    overflow: hidden; 
    transition: all 0.3s ease; 
}

details[open] { 
    border-color: #171717; 
    background: #ffffff; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

summary { 
    font-size: 1.15rem; 
    font-weight: 700;
    cursor: pointer; 
    list-style: none; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    color: #262626;
}

summary::-webkit-details-marker { 
    display: none; 
}

summary::after { 
    content: "+"; 
    font-size: 1.5rem;
    color: #737373; 
    transition: transform 0.2s; 
}

details[open] summary::after { 
    transform: rotate(45deg); 
    color: #171717;
}

details p { 
    margin-top: 14px; 
    color: #525252; 
    line-height: 1.6;
    font-size: 0.98rem; 
}

/* Características Especiales */
.info-side-text { 
    display: flex; 
    flex-direction: column; 
    gap: 32px; 
}

.info-side-text h2 { 
    font-size: 2.5rem;
    font-weight: 800; 
    letter-spacing: -0.02em; 
    line-height: 1.15; 
    color: #171717;
}

.info-side-text p { 
    font-size: 1.1rem; 
    color: #525252; 
    line-height: 1.6; 
}

.features-list { 
    display: flex;
    flex-direction: column; 
    gap: 24px; 
}

.feature-item { 
    display: flex; 
    gap: 16px; 
    align-items: flex-start; 
}

.feature-icon { 
    background: #ffffff; 
    border: 1px solid #d4d4d4;
    padding: 10px; 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
    color: #171717;
}

.feature-details h4 { 
    font-size: 1.1rem; 
    font-weight: 700;
    margin-bottom: 4px; 
    color: #171717;
}

.feature-details p { 
    font-size: 0.95rem; 
    color: #737373; 
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 960px) {
    .layout-hero { 
        flex-direction: column; 
        gap: 40px; 
        text-align: center;
    }
    .hero-side-text h1 { 
        font-size: 2.5rem; 
    }
    .form-container { 
        max-width: 100%;
    }

    .layout-product { 
        flex-direction: column; 
        gap: 48px; 
    }
    .info-side-text h2 { 
        font-size: 2rem;
        text-align: center; 
    }

    .pricing-layout { 
        flex-direction: column; 
        align-items: center; 
    }
    .price-card { 
        width: 100%;
    }
    
    .paramedic-container { 
        flex-direction: column; 
        gap: 40px; 
    }
}