/* ===========================================
   ESTILOS ESPECÍFICOS DE HOME
   =========================================== */

/* ---------- Hero Section ---------- */
.hero {
    background-image: url('../../assets/images/hero/hero-bg.jpg');
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero__description {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    color: var(--color-text-inverted);
    margin-bottom: var(--spacing-lg);
}

.text-highlight {
    color: #dc143c;
}

.heading-display {
    color: var(--color-text-inverted);
}

.hero__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background-color: var(--color-accent);
    transition: all var(--transition-normal);
}

.hero__social:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero__social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ---------- Featured Project Section ---------- */
.featured-project {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: sticky;
    top: var(--header-height);
    z-index: 1;
}

/* Split heading for scroll-driven animation */
.heading-hero--split {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    overflow: visible;
}

.heading-hero__part {
    opacity: 1;
    will-change: transform;
}

.heading-hero__part--left {
    transform: translateX(-100vw);
}

.heading-hero__part--right {
    transform: translateX(100vw);
}

.featured-project::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35));
}

/* Gospel Symphony section - higher z-index to pass over Michael Bublé */
.featured-project--alt {
    position: relative;
    z-index: 2;
    will-change: transform;
}

.featured-project--alt::before {
    background: linear-gradient(to bottom, rgba(120, 80, 50, 0.3), rgba(100, 70, 45, 0.4));
}

.featured-project__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Michael Bublé section - texto blanco */
.featured-project .section-title__text,
.featured-project .heading-hero,
.featured-project .btn--link {
    color: var(--color-text-inverted);
}

.featured-project .section-title__line {
    background-color: rgba(255, 255, 255, 0.3);
}

.featured-project .separator {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Gospel Symphony section - texto blanco */
.featured-project--alt .section-title__text,
.featured-project--alt .heading-hero,
.featured-project--alt .btn--link {
    color: var(--color-text-inverted);
}

.featured-project--alt .section-title__line {
    background-color: rgba(255, 255, 255, 0.3);
}

.featured-project--alt .separator {
    background-color: rgba(255, 255, 255, 0.3);
}

/* ---------- Clients Section ---------- */
.section--surface {
    position: relative;
    z-index: 3;
}

.clients__intro {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    text-align: center;
    max-width: 1182px;
    margin: 0 auto var(--spacing-2xl);
    color: var(--color-text);
}

.clients__heading {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    text-align: center;
    color: var(--color-text);
    margin: 0;
}

/* Placeholder para logos de clientes */
.client-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}
