/* ===============================
   HOME LIGHTADS
=============================== */

.lightads-home {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 24px;
    text-align: center;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Logo */
.lightads-home .hero img {
    max-width: 180px;
    margin-bottom: 40px;
}

/* CTA */
.lightads-home .login-cta {
    background: #f5f8ff;
    border-radius: 20px;
    padding: 48px 32px;
    margin-bottom: 48px;
}

.lightads-home h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

/* ===============================
   BOTÃO CTA — LIGHTADS PREMIUM
=============================== */

.lightads-home .btn-primary {
    all: unset; /* zera estilos do tema/wp */
    box-sizing: border-box;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 260px;
    height: 56px;

    margin: 32px auto 0;

    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;

    color: #ffffff;
    cursor: pointer;
    text-decoration: none;

    border-radius: 999px;

    background: linear-gradient(
        135deg,
        #3b82f6 0%,
        #2563eb 100%
    );

    box-shadow:
        0 12px 24px rgba(37, 99, 235, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

/* Hover */
.lightads-home .btn-primary:hover {
    transform: translateY(-2px);

    background: linear-gradient(
        135deg,
        #2563eb 0%,
        #1e40af 100%
    );

    box-shadow:
        0 18px 36px rgba(37, 99, 235, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Active (clique) */
.lightads-home .btn-primary:active {
    transform: translateY(0);
    box-shadow:
        0 10px 20px rgba(37, 99, 235, 0.35),
        inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Mobile */
@media (max-width: 768px) {
    .lightads-home .btn-primary {
        width: 100%;
        max-width: 320px;
        height: 56px;
        font-size: 17px;
    }
}


/* Features */
.lightads-home .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lightads-home .feature-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.lightads-home .feature-card .icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.lightads-home .feature-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

/* ===============================
   MOBILE
=============================== */
@media (max-width: 768px) {

    .lightads-home {
        padding: 32px 16px;
    }

    .lightads-home h2 {
        font-size: 24px;
    }

    .lightads-home .features {
        grid-template-columns: 1fr;
    }

    .lightads-home .login-cta {
        padding: 32px 20px;
    }

    .lightads-home .btn-primary {
        width: 100%;
    }
}

/* ===============================
   BOTÃO CTA — CENTRALIZAÇÃO REAL
=============================== */

.lightads-home .btn-primary {
    all: unset;
    box-sizing: border-box;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 260px;
    height: 56px;

    margin: 32px auto 0;

    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;

    color: #ffffff;
    cursor: pointer;
    text-decoration: none;

    border-radius: 999px;

    background: linear-gradient(
        135deg,
        #3b82f6 0%,
        #2563eb 100%
    );

    box-shadow:
        0 12px 24px rgba(37, 99, 235, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

/* Texto sempre matematicamente central */
.lightads-home .btn-primary span.text {
    position: relative;
    z-index: 2;
}

/* Seta não interfere no centro */
.lightads-home .btn-primary span.arrow {
    position: absolute;
    right: 22px;
    font-size: 18px;
    opacity: 0.9;
}

/* Hover */
.lightads-home .btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(
        135deg,
        #2563eb 0%,
        #1e40af 100%
    );

    box-shadow:
        0 18px 36px rgba(37, 99, 235, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Mobile */
@media (max-width: 768px) {
    .lightads-home .btn-primary {
        width: 100%;
        max-width: 320px;
    }
}
