/* =========================================================
   CATÁLOGO PROFESIONAL GOALAUSI
   ========================================================= */

.catalog-hero {
    position: relative;
    overflow: hidden;
    padding: 75px 0 125px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(0, 136, 255, 0.35),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #061427 0%,
            #0c2748 55%,
            #064b82 100%
        );
}

.catalog-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -220px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 242, 0, 0.14);
}

.catalog-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 900px;
}

.catalog-hero-icon {
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    color: #061427;
    background: #fff200;
    font-size: 2.6rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
}

.catalog-hero-description {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.7;
}

.catalog-section {
    min-height: 520px;
    padding: 0 0 85px;
    background: #f5f7fb;
}

.catalog-toolbar {
    position: relative;
    z-index: 5;
    margin-top: -58px;
    margin-bottom: 30px;
}

.catalog-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px auto;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(6, 20, 39, 0.08);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(6, 20, 39, 0.15);
}

.catalog-search-box {
    position: relative;
}

.catalog-search-box > i {
    position: absolute;
    top: 50%;
    left: 18px;
    z-index: 2;
    color: #667085;
    font-size: 1.05rem;
    transform: translateY(-50%);
}

.catalog-search-box input,
.catalog-order {
    width: 100%;
    min-height: 54px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    outline: none;
}

.catalog-search-box input {
    padding: 0 18px 0 50px;
}

.catalog-order {
    padding: 0 42px 0 15px;
}

.catalog-search-box input:focus,
.catalog-order:focus {
    border-color: #0088ff;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 136, 255, 0.12);
}

.catalog-search-button {
    min-height: 54px;
    padding-right: 26px;
    padding-left: 26px;
    border-radius: 14px;
}

.catalog-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 24px;
}

.catalog-results-count {
    color: #111827;
    font-weight: 800;
}

.catalog-clear-search {
    color: #667085;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.catalog-clear-search:hover {
    color: #0088ff;
}

/* TARJETAS */

.catalog-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid #e6ebf2;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(6, 20, 39, 0.09);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.catalog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 55px rgba(6, 20, 39, 0.16);
}

.catalog-card-image {
    position: relative;
    width: 100%;
    height: 245px;
    overflow: hidden;
    background: #e9edf3;
}

.catalog-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.catalog-card:hover .catalog-card-image img {
    transform: scale(1.05);
}

.catalog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    max-width: calc(100% - 80px);
    overflow: hidden;
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(6, 20, 39, 0.88);
    font-size: 0.73rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.catalog-share-button {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #061427;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(6, 20, 39, 0.2);
}

.catalog-card-body {
    padding: 23px;
}

.catalog-card-location {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 10px;
    color: #667085;
    font-size: 0.86rem;
}

.catalog-card-location i {
    margin-top: 2px;
    color: #0088ff;
}

.catalog-card-title {
    margin-bottom: 10px;
    color: #111827;
    font-size: 1.35rem;
    font-weight: 850;
}

.catalog-card-description {
    min-height: 68px;
    margin-bottom: 16px;
    color: #667085;
    line-height: 1.55;
}

.catalog-card-schedule {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
    padding: 11px 13px;
    border-left: 4px solid #fff200;
    border-radius: 10px;
    color: #425166;
    background: #f7f9fc;
    font-size: 0.87rem;
}

.catalog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 17px;
    border-top: 1px solid #edf0f4;
}

.catalog-card-price {
    color: #0088ff;
    font-size: 1.12rem;
    font-weight: 900;
}

.catalog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #061427;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.catalog-card-link:hover {
    color: #0088ff;
}

/* ESTADO SIN PUBLICACIONES */

.catalog-empty-state {
    max-width: 730px;
    margin: 15px auto 0;
    padding: 60px 35px;
    border: 1px solid #e5eaf1;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(6, 20, 39, 0.09);
    text-align: center;
}

.catalog-empty-icon {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    border-radius: 28px;
    color: #061427;
    background: #fff200;
    font-size: 2.5rem;
}

.catalog-empty-state h2 {
    margin-bottom: 14px;
    color: #111827;
    font-size: 1.75rem;
    font-weight: 900;
}

.catalog-empty-state p {
    max-width: 540px;
    margin: 0 auto 28px;
    color: #667085;
    line-height: 1.7;
}

.catalog-empty-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* CONFIANZA */

.catalog-trust-section {
    padding: 0 0 80px;
    background: #f5f7fb;
}

.catalog-trust-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 32px;
    border-radius: 28px;
    color: #ffffff;
    background: #061427;
}

.catalog-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.catalog-trust-item > span {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #061427;
    background: #fff200;
    font-size: 1.25rem;
}

.catalog-trust-item strong,
.catalog-trust-item small {
    display: block;
}

.catalog-trust-item strong {
    margin-bottom: 4px;
}

.catalog-trust-item small {
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.5;
}

.classified-warning {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 20px;
    padding: 18px 20px;
    border: 1px solid #f0dd92;
    border-radius: 16px;
    color: #6b5705;
    background: #fff9d8;
}

.classified-warning p {
    margin: 0;
    line-height: 1.6;
}

/* =========================================================
   PIE DE PÁGINA
   ========================================================= */

.goalausi-footer {
    color: #ffffff;
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(0, 136, 255, 0.2),
            transparent 32%
        ),
        #061427;
}

.goalausi-footer-main {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.1fr;
    gap: 50px;
    padding: 65px 0 48px;
}

.goalausi-footer-brand p {
    max-width: 430px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.7;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 1.8rem;
    font-weight: 900;
    text-decoration: none;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border-radius: 12px;
    color: #ffffff;
    background: #25d366;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.footer-whatsapp:hover {
    color: #ffffff;
    background: #1fb85a;
}

.goalausi-footer-column h2 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.goalausi-footer-column a {
    display: block;
    margin: 9px 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
    text-decoration: none;
}

.goalausi-footer-column a:hover {
    color: #ffffff;
}

.footer-small-text {
    display: block;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.78rem;
    line-height: 1.6;
}

.goalausi-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 23px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

.goalausi-footer-bottom a {
    color: #fff200;
    font-weight: 800;
    text-decoration: none;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
    .catalog-search-form {
        grid-template-columns: 1fr 190px;
    }

    .catalog-search-button {
        grid-column: 1 / -1;
    }

    .catalog-trust-panel {
        grid-template-columns: 1fr;
    }

    .goalausi-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .goalausi-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    .catalog-hero {
        padding: 55px 0 105px;
    }

    .catalog-hero-content {
        align-items: flex-start;
        gap: 17px;
    }

    .catalog-hero-icon {
        flex-basis: 65px;
        width: 65px;
        height: 65px;
        border-radius: 19px;
        font-size: 1.7rem;
    }

    .catalog-hero h1 {
        font-size: 2rem;
    }

    .catalog-toolbar {
        margin-top: -70px;
    }

    .catalog-search-form {
        grid-template-columns: 1fr;
    }

    .catalog-search-button {
        grid-column: auto;
    }

    .catalog-results-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-card-image {
        height: 220px;
    }

    .catalog-empty-state {
        padding: 42px 20px;
    }

    .catalog-trust-panel {
        padding: 24px;
    }

    .goalausi-footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 55px 0 40px;
    }

    .goalausi-footer-brand {
        grid-column: auto;
    }

    .goalausi-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}