/* PS Hero v3 */

.ps-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #335a5c;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/* Overlay gradiente — legibilidad sobre foto */
.ps-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(51,90,92,.88) 0%,
        rgba(51,90,92,.65) 50%,
        rgba(72,126,128,.40) 100%
    );
}

.ps-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding: 7rem 1.5rem 4rem;
}

/* Versículo rotatorio */
.ps-hero__versiculo {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(189,230,222,.15);
    border: 1px solid rgba(189,230,222,.3);
    border-radius: 9999px;
    padding: .45rem 1.1rem;
    color: #bde6de;
    font-size: .8rem;
    font-style: italic;
    margin-bottom: 2rem;
    max-width: 620px;
    backdrop-filter: blur(6px);
}
.ps-hero__versiculo-icon { flex-shrink: 0; }
#ps-versiculo-texto {
    transition: opacity .4s ease;
    line-height: 1.4;
}

/* Título */
.ps-hero__titulo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    color: #fefaf0;
    margin-bottom: 1.25rem;
    max-width: 14ch;
}

/* Subtítulo */
.ps-hero__subtitulo {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(254,250,240,.85);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* CTAs */
.ps-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: .875rem;
    margin-bottom: 3rem;
}

.ps-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 2rem;
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: all .26s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
}

.ps-hero__cta--primary {
    background: #487e80;
    color: #fff;
    box-shadow: 0 8px 24px rgba(72,126,128,.4);
}
.ps-hero__cta--primary:hover {
    background: #335a5c;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(72,126,128,.5);
}

.ps-hero__cta--secondary {
    background: rgba(254,250,240,.15);
    color: #fefaf0;
    border: 1.5px solid rgba(254,250,240,.4);
    backdrop-filter: blur(6px);
}
.ps-hero__cta--secondary:hover {
    background: rgba(254,250,240,.25);
    color: #fff;
    transform: translateY(-3px);
}

.ps-hero__cta--wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.ps-hero__cta--wa:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(37,211,102,.4);
}

/* Stats strip */
.ps-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(254,250,240,.2);
}

.ps-hero__stat {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.ps-hero__stat-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #bde6de;
    line-height: 1;
}

.ps-hero__stat-label {
    font-size: .78rem;
    color: rgba(254,250,240,.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Scroll hint */
.ps-hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ps-hero__scroll-line {
    width: 1.5px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(254,250,240,.6), transparent);
    animation: ps-scroll-hint 2s ease-in-out infinite;
}

@keyframes ps-scroll-hint {
    0%, 100% { opacity: .4; transform: scaleY(1); }
    50%       { opacity: 1;  transform: scaleY(1.3); }
}

/* Responsive */
@media (max-width: 768px) {
    .ps-hero__titulo { max-width: none; }
    .ps-hero__subtitulo { max-width: none; }
    .ps-hero__ctas { gap: .6rem; }
    .ps-hero__cta { padding: .8rem 1.5rem; font-size: .88rem; }
    .ps-hero__stats { gap: 1.25rem; }
    .ps-hero__versiculo { font-size: .75rem; }
}
