/* ===== INDEX.CSHTML ===== */

/* Trust badges (debajo del hero) */
.trust-badges {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0.8;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge-icon {
    font-size: 1.5rem;
}

.trust-badge-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Banner y section-header ahora estan en site.css (compartidos) */

/* Por que elegirnos */
.why-us-section {
    background: rgba(66, 66, 66, 0.15);
    padding: 4rem 0;
    margin: 3rem 0;
}

.value-prop-card {
    text-align: center;
    padding: 2rem;
}

.value-prop-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.value-prop-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.value-prop-description {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.value-prop-highlight {
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
}

/* About card en Index */
.about-content {
    text-align: center;
    padding: 3rem 2rem;
}

.about-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.about-tagline {
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-description {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* CTA footer - estilos especificos de Index */
.cta-footer-link {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.play-store-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.play-store-link:hover {
    color: var(--color-text-primary);
}

.play-store-link-icon {
    width: 1.2rem;
    height: 1.2rem;
    filter: brightness(0) invert(0.6);
}

.play-store-link:hover .play-store-link-icon {
    filter: brightness(0) invert(1);
}
