@font-face {
    font-family: "audi-extended";
    src: url("../fonts/AudiType-ExtendedNormal.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "audi-extended", sans-serif;
}

.landing{
    width:100%;
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

/* HERO */

.hero {

    width: 100%;
    height: 650px;

    background-image: url("../img/Portada_blur.png");
    background-size: cover;
    background-position: center;

    position: relative;
}

/* Barra negra */

.top-bar {

    width: 100%;
    height: 75px;

    background: #000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 40px;
}

.logo {
    height: 35px;
}

.top-bar h1 {

    color: #fff;
    font-size: 23px;
    font-weight: 600;

}

/* Contenido */

.hero-content {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 85%;

    display: flex;
    justify-content: flex-end;
    align-items: center;

}

.phone {
    width: 220px;
}

.stores {

    display: flex;
    gap: 18px;

}

.stores img {

    width: 220px;
    cursor: pointer;

}

/* FOOTER */

footer {

    width: 100%;
    min-height: 180px;

    background: rgb(243, 243, 243);

    display: flex;
    justify-content: space-around;
    align-items: flex-start;

    padding: 30px 60px;

}

.footer-logo img {

    width: 120px;

}

.footer-column {

    display: flex;
    flex-direction: column;
    gap: 14px;

}

.footer-column h3 {

    margin-bottom: 10px;
    color: #222;
    font-size: 18px;

}

.footer-column a {

    text-decoration: none;
    color: #444;
    font-size: 15px;

}

.footer-language select {

    width: 180px;
    height: 45px;

    padding-left: 15px;

    border: 1px solid #ddd;

    font-size: 16px;

}


.content {
    flex: 1;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    padding: 70px 0 90px;
}

.content-container {
    width: 100%;
    max-width: 730px;
}

.back {
    display: inline-flex;
    margin-bottom: 30px;
    font-size: 13px;
}

.back img {
    width: 18px;
    height: 18px;
}

.content h1 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 32px;
    line-height: 1.3;
}

.content h2 {
    font-size: 17px;
    font-weight: 600;
    margin: 30px 0 24px;
}

.content p {
    font-size: 10px;
    line-height: 1.7;
    color: #1f1f1f;
    margin-bottom: 28px;
    text-align: justify;
}

.medium {
    font-size: 13px !important;
    margin-bottom: 10px;
}

ul,
ol {
    margin-left: 35px;
    margin-bottom: 20px;
    font-size: 10px;
}

li {
    margin-bottom: 8px;
    text-align: justify;
    font-size: 10px;
}

strong {
    font-weight: bold;
}

.faq {
    margin: 70px auto;
}

details {
    border-bottom: 2px solid #222;
    padding: 15px 0;
}

summary {
    list-style: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    color: #444;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

/* Flecha */
summary::after {
    content: "⌄";
    font-size: 20px;
    transition: .3s;
}

/* Girar flecha cuando está abierto */
details[open] summary::after {
    transform: rotate(180deg);
}

.contenido {
    padding: 20px 0;
    font-size: 13px;
    color: #727272;
    line-height: 1.5;
}

.footer-links {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 30px;

}

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

@media screen and (max-width:768px) {

    * {
        box-sizing: border-box;
    }

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    /* HERO */

    .hero {

        height: 720px;

        background-size: cover;
        background-position: center;

    }

    /* Barra superior */

    .top-bar {

        height: 60px;
        padding: 0 18px;

    }

    .logo {

        height: 24px;

    }

    .top-bar h1 {

        font-size: 15px;
        text-align: right;

    }

    /* Contenido */

    .hero-content {

        position: absolute;

        left: 50%;
        top: 78%;

        transform: translate(-50%, -50%);

        width: 100%;

        display: flex;
        justify-content: center;
        align-items: center;

        padding: 0 15px;

    }

    .stores {

        width: 100%;

        display: flex;

        justify-content: center;

        align-items: center;

        gap: 12px;

    }

    .stores a {

        flex: 1;
        display: flex;
        justify-content: center;

    }

    .stores img {

        width: 100%;
        max-width: 165px;
        height: auto;

    }

    /* ==========================
            FOOTER
    ========================== */

    footer {

        background: #f5f5f5;

        display: grid;

        grid-template-columns: 110px 1fr;

        column-gap: 25px;

        align-items: start;

        padding: 35px 20px;

        min-height: auto;
        margin-top:auto;

    }

    .footer-logo {

        display: flex;
        justify-content: center;
        align-items: flex-start;

    }

    .footer-logo img {

        width: 95px;

    }



    .footer-column {

        gap: 12px;

    }

    .footer-column h3 {

        font-size: 18px;

        font-weight: bold;

        margin-bottom: 6px;

    }

    .footer-column a {

        font-size: 15px;

        color: #222;

        text-decoration: none;

        line-height: 1.5;

    }

    .footer-language {

        display: none;

    }
.footer-links {

    display: flex;
    flex-direction: column;


}
    /* ==========================
        PAGINAS INTERNAS
    ========================== */

    .content {

        padding: 35px 20px 55px;

    }

    .content-container {

        width: 100%;

    }

    .content h1 {

        font-size: 22px;

    }

    .content h2 {

        font-size: 18px;

    }

    .content p {

        font-size: 14px;

    }

    ul,
    ol {

        margin-left: 20px;

    }

    li {

        font-size: 14px;

    }

    .medium {

        font-size: 15px !important;

    }

    summary {

        font-size: 16px;

    }

    .contenido {

        font-size: 14px;

    }

}