/* ---------------------------------------------------------------------------
 * MacCenter Landing Page — escopado em .mc-hero para não afetar o tema.
 * ------------------------------------------------------------------------ */

.mc-hero,
.mc-hero * {
    box-sizing: border-box;
}

.mc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 1.5rem 1.5rem;
    overflow: hidden;
    background: #000;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
}

.mc-hero__backgrounds {
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 0;
}

.mc-hero__background {
    flex: 1 1 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.55);
}

.mc-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.mc-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    max-width: 720px;
    text-align: center;
    gap: 2.5rem;
    padding: 2rem 0;
    margin: 0 auto;
}

.mc-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

.mc-apple-logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.mc-brand__name {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
}

.mc-hero__text h1 {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    color: #fff;
}

.mc-hero__highlight {
    display: block;
    margin-top: 0.25rem;
    color: #fff;
    font-weight: 800;
}

.mc-hero__subtitle {
    font-size: clamp(0.95rem, 2vw, 1.125rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

.mc-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(180deg, #2ecc71 0%, #27ae60 100%);
    color: #fff;
    text-decoration: none;
    font-size: clamp(0.875rem, 2vw, 1.0625rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 1.125rem 2rem;
    border-radius: 999px;
    box-shadow:
        0 10px 30px rgba(46, 204, 113, 0.35),
        0 4px 12px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    max-width: 100%;
    text-align: center;
    cursor: pointer;
    border: none;
    line-height: 1.2;
}

.mc-cta-button:hover,
.mc-cta-button:focus-visible {
    transform: translateY(-2px);
    color: #fff;
    box-shadow:
        0 14px 38px rgba(46, 204, 113, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    background: linear-gradient(180deg, #34d97a 0%, #2cba6a 100%);
    outline: none;
}

.mc-cta-button:active {
    transform: translateY(0);
}

.mc-whatsapp-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.mc-hero__footer {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: auto;
}

.mc-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.mc-credit-separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.mc-credit {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.mc-credit:hover,
.mc-credit:focus-visible {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.7);
    outline: none;
}

.mc-brand--footer .mc-apple-logo {
    width: 22px;
    height: 22px;
}

.mc-brand--footer .mc-brand__name {
    font-size: 1.125rem;
    font-weight: 500;
}

@media (max-width: 480px) {
    .mc-hero {
        padding: 1.5rem 1rem 1rem;
    }

    .mc-hero__content {
        gap: 2rem;
    }

    .mc-cta-button {
        padding: 1rem 1.25rem;
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .mc-hero__content {
        gap: 3rem;
    }

    .mc-hero__text h1 {
        font-size: 3rem;
    }
}
