/* home.css - Estilos específicos de index.html */

/* Hero fixed override for home */
.hero-exotic-fixed {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Philosophy section spacing */
.manifesto-section--home {
    padding-top: 100px;
}

/* Showcase inline overrides */
.showcase-subtitle {
    margin-bottom: 2rem;
    color: #fff;
    opacity: 0.8;
}

.showcase-description {
    color: #aaa;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.7;
    font-size: 1.1rem;
}

.phone-mockup--tilted {
    transform: rotate(-5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

/* Philosophy card description */
.philosophy-card-desc {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Section title inline logo */
.section-title-logo {
    height: 1em;
    vertical-align: bottom;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .manifesto-section--home {
        padding-top: 70px;
    }
}

@media (max-width: 768px) {
    .manifesto-section--home {
        padding-top: 50px;
    }

    .showcase-subtitle {
        margin-bottom: 1.2rem;
    }

    .showcase-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .manifesto-section--home {
        padding-top: 40px;
    }

    .showcase-description {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .philosophy-card-desc {
        font-size: 0.82rem;
    }
}
