/* ==========================================================================
   Pizzas Watson — Footer
   ========================================================================== */

.pw-footer {
    position: relative;

    padding: 58px 0 24px;

    color: rgba(255, 255, 255, 0.76);

    background: var(--pw-red-dark);
}

/* ==========================================================================
   Distribución principal
   ========================================================================== */

.pw-footer__main {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(160px, 0.7fr)
        minmax(220px, 1fr);

    align-items: start;

    gap: 64px;

    padding-bottom: 42px;
}

/* ==========================================================================
   Marca
   ========================================================================== */

.pw-footer__brand {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 20px;
}

.pw-footer__logo {
    flex: 0 0 104px;

    width: 104px;
    height: 104px;

    display: grid;
    place-items: center;

    text-decoration: none;
}

.pw-footer__logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.pw-footer__logo > span {
    color: #ffffff;

    font-family: var(--pw-font-heading);

    font-size: 1rem;
    font-weight: 700;

    text-align: center;
}

.pw-footer__brand-content {
    min-width: 0;
}

.pw-footer__brand-content h2 {
    margin: 0;

    color: #ffffff;

    font-family: var(--pw-font-heading);

    font-size: clamp(1.25rem, 1.8vw, 1.65rem);
    font-weight: 700;

    line-height: 1.1;
    letter-spacing: -0.03em;
}

.pw-footer__brand-content p {
    max-width: 290px;

    margin: 10px 0 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 0.92rem;
    line-height: 1.65;
}

/* ==========================================================================
   Encabezados
   ========================================================================== */

.pw-footer__navigation h3,
.pw-footer__branches h3 {
    margin: 0 0 18px;

    color: #ffffff;

    font-family: var(--pw-font-heading);

    font-size: 1rem;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: -0.015em;
}

/* ==========================================================================
   Navegación
   ========================================================================== */

.pw-footer__navigation ul {
    display: grid;

    gap: 11px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.pw-footer__navigation a {
    color: rgba(255, 255, 255, 0.68);

    font-size: 0.9rem;
    line-height: 1.5;

    text-decoration: none;

    transition: color 0.2s ease;
}

.pw-footer__navigation a:hover,
.pw-footer__navigation a:focus-visible {
    color: #e64687;
}

/* ==========================================================================
   Sedes
   ========================================================================== */

.pw-footer__branches ul {
    display: grid;

    gap: 16px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.pw-footer__branches li {
    display: grid;

    gap: 4px;
}

.pw-footer__branches li strong {
    color: #ffffff;

    font-family: var(--pw-font-heading);

    font-size: 0.91rem;
    font-weight: 600;

    line-height: 1.35;
}

.pw-footer__branches li span,
.pw-footer__branches > p {
    margin: 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 0.86rem;
    line-height: 1.55;
}

.pw-footer__schedule {
    margin-top: 18px !important;

    color: #ffc93c !important;

    font-size: 0.84rem !important;
    font-weight: 600;
}

/* ==========================================================================
   Franja inferior
   ========================================================================== */

.pw-footer__bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    flex-wrap: wrap;

    gap: 14px 24px;

    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.pw-footer__copyright,
.pw-footer__credits {
    margin: 0;

    color: rgba(255, 255, 255, 0.56);

    font-size: 0.78rem;
    line-height: 1.5;
}

.pw-footer__privacy {
    color: rgba(255, 255, 255, 0.7);

    font-size: 0.8rem;
    line-height: 1.5;

    text-decoration: none;

    transition: color 0.2s ease;
}

.pw-footer__privacy:hover,
.pw-footer__privacy:focus-visible {
    color: #e64687;
}

.pw-footer__credits strong {
    color: #e64687;

    font-weight: 700;
}

/* ==========================================================================
   Tabletas
   ========================================================================== */

@media (max-width: 900px) {
    .pw-footer {
        padding-top: 48px;
    }

    .pw-footer__main {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 34px 42px;
    }

    .pw-footer__brand {
        grid-column: 1 / -1;
    }

    .pw-footer__bottom {
        justify-content: flex-start;
    }
}

/* ==========================================================================
   Móviles
   ========================================================================== */

@media (max-width: 580px) {
    .pw-footer {
        padding: 40px 0 24px;
    }

    .pw-footer__main {
        grid-template-columns: 1fr;

        gap: 30px;

        padding-bottom: 30px;
    }

    .pw-footer__brand {
        grid-column: auto;

        gap: 15px;
    }

    .pw-footer__logo {
        flex-basis: 80px;

        width: 80px;
        height: 80px;
    }

    .pw-footer__brand-content h2 {
        font-size: 1.25rem;
    }

    .pw-footer__brand-content p {
        margin-top: 7px;

        font-size: 0.86rem;
    }

    .pw-footer__navigation h3,
    .pw-footer__branches h3 {
        margin-bottom: 14px;
    }

    .pw-footer__bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 11px;

        padding-top: 18px;
    }

    .pw-footer__copyright,
    .pw-footer__privacy,
    .pw-footer__credits {
        font-size: 0.76rem;
    }
}

/* ==========================================================================
   Accesibilidad
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .pw-footer__navigation a,
    .pw-footer__privacy {
        transition: none;
    }
}

/* ==========================================================================
   Family's Pizzas Antioquia — Footer
   ========================================================================== */

.pw-footer {
    position: relative;

    padding: 58px 0 24px;

    color:
        rgba(255, 255, 255, 0.76);

    background: var(--pw-red-dark);
}


/* ==========================================================================
   Distribución principal
   ========================================================================== */

.pw-footer__main {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(160px, 0.7fr)
        minmax(220px, 1fr);

    align-items: start;

    gap: 64px;

    padding-bottom: 42px;
}


/* ==========================================================================
   Marca
   ========================================================================== */

.pw-footer__brand {
    min-width: 0;

    display: flex;

    align-items: center;

    gap: 20px;
}


.pw-footer__logo {
    flex:
        0
        0
        104px;

    width: 104px;
    height: 104px;

    display: grid;

    place-items: center;

    text-decoration: none;
}


.pw-footer__logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.pw-footer__logo > span {
    color:
        var(--pw-white);

    font-family:
        var(--pw-font-heading);

    font-size: 1rem;

    font-weight: 700;

    text-align: center;
}


.pw-footer__brand-content {
    min-width: 0;
}


.pw-footer__brand-content h2 {
    margin: 0;

    color:
        var(--pw-white);

    font-family:
        var(--pw-font-heading);

    font-size:
        clamp(
            1.25rem,
            1.8vw,
            1.65rem
        );

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -0.03em;
}


.pw-footer__brand-content p {
    max-width: 290px;

    margin:
        10px
        0
        0;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 0.92rem;

    line-height: 1.65;
}


/* ==========================================================================
   Encabezados
   ========================================================================== */

.pw-footer__navigation h3,
.pw-footer__branches h3 {
    margin:
        0
        0
        18px;

    color:
        var(--pw-white);

    font-family:
        var(--pw-font-heading);

    font-size: 1rem;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.015em;
}


/* ==========================================================================
   Navegación
   ========================================================================== */

.pw-footer__navigation ul {
    display: grid;

    gap: 11px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.pw-footer__navigation a {
    color:
        rgba(255, 255, 255, 0.68);

    font-size: 0.9rem;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.2s ease;
}


.pw-footer__navigation a:hover,
.pw-footer__navigation a:focus-visible {
    color:
        var(--pw-yellow);
}


/* ==========================================================================
   Sedes
   ========================================================================== */

.pw-footer__branches ul {
    display: grid;

    gap: 16px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.pw-footer__branches li {
    display: grid;

    gap: 4px;
}


.pw-footer__branches li strong {
    color:
        var(--pw-white);

    font-family:
        var(--pw-font-heading);

    font-size: 0.91rem;

    font-weight: 600;

    line-height: 1.35;
}


.pw-footer__branches li span,
.pw-footer__branches > p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 0.86rem;

    line-height: 1.55;
}


.pw-footer__schedule {
    margin-top:
        18px !important;

    color:
        var(--pw-yellow) !important;

    font-size:
        0.84rem !important;

    font-weight: 600;
}


/* ==========================================================================
   Franja inferior
   ========================================================================== */

.pw-footer__bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    flex-wrap: wrap;

    gap:
        14px
        24px;

    padding-top: 22px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.11);
}


.pw-footer__copyright,
.pw-footer__credits {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.56);

    font-size: 0.78rem;

    line-height: 1.5;
}


.pw-footer__privacy {
    color:
        rgba(255, 255, 255, 0.70);

    font-size: 0.8rem;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.2s ease;
}


.pw-footer__privacy:hover,
.pw-footer__privacy:focus-visible {
    color:
        var(--pw-yellow);
}


.pw-footer__credits strong {
    color:
        var(--pw-yellow);

    font-weight: 700;
}


/* ==========================================================================
   Tabletas
   ========================================================================== */

@media (max-width: 900px) {

    .pw-footer {
        padding-top: 48px;
    }


    .pw-footer__main {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap:
            34px
            42px;
    }


    .pw-footer__brand {
        grid-column:
            1 / -1;
    }


    .pw-footer__bottom {
        justify-content:
            flex-start;
    }
}


/* ==========================================================================
   Móviles
   ========================================================================== */

@media (max-width: 580px) {

    .pw-footer {
        padding:
            40px
            0
            24px;
    }


    .pw-footer__main {
        grid-template-columns:
            1fr;

        gap: 30px;

        padding-bottom: 30px;
    }


    .pw-footer__brand {
        grid-column: auto;

        gap: 15px;
    }


    .pw-footer__logo {
        flex-basis: 80px;

        width: 80px;
        height: 80px;
    }


    .pw-footer__brand-content h2 {
        font-size: 1.25rem;
    }


    .pw-footer__brand-content p {
        margin-top: 7px;

        font-size: 0.86rem;
    }


    .pw-footer__navigation h3,
    .pw-footer__branches h3 {
        margin-bottom: 14px;
    }


    .pw-footer__bottom {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 11px;

        padding-top: 18px;
    }


    .pw-footer__copyright,
    .pw-footer__privacy,
    .pw-footer__credits {
        font-size: 0.76rem;
    }
}


/* ==========================================================================
   Accesibilidad
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    .pw-footer__navigation a,
    .pw-footer__privacy {
        transition: none;
    }
}
