* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f2f2f2;
    color: #111;
}





/* NAVBAR */

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    padding: 25px 8%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 999;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);
}

.logo {
    font-family: 'Anton', sans-serif;

    font-size: 38px;

    color: #d71920;

    letter-spacing: 2px;
}

.nav-links a {
    text-decoration: none;

    color: #111;

    font-size: 18px;

    font-weight: 700;

    transition: 0.3s;
}

.nav-links a:hover {
    color: #d71920;
}





/* HERO */

.hero {
    position: relative;

    height: 100vh;

    /* IMAGEN DE FONDO */
    background-image: url("../img/fondo-tienda.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;

    width: 100%;
    height: 100%;

    background: rgba(255, 255, 255, 0.72);

    backdrop-filter: blur(3px);
}

.hero-content {
    width: 90%;

    margin: auto;

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 100px;
}

.hero-text h1 {
    font-family: 'Anton', sans-serif;

    font-size: 75px;

    line-height: 1;

    color: #222;
}

.hero-text p {
    margin-top: 20px;

    width: 420px;

    font-size: 15px;

    color: #555;
}

.hero-image img {
    width: 320px;

    transform: rotate(-4deg);

    border-radius: 10px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}





/* FORMAR PARTE */

.parte {
    padding: 90px 10%;

    text-align: center;
}

.parte h2 {
    font-family: 'Anton', sans-serif;

    font-size: 50px;

    margin-bottom: 10px;
}

.subtitulo {
    color: #666;

    margin-bottom: 45px;
}

.cards {
    display: flex;

    justify-content: center;

    gap: 25px;

    flex-wrap: wrap;
}

.card {
    width: 260px;

    background: white;

    border-radius: 20px;

    overflow: hidden;

    transition: 0.4s;

    cursor: pointer;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;

    height: 320px;

    object-fit: cover;
}

.card-info {
    padding: 20px;

    text-align: left;
}

.card-info h3 {
    font-size: 16px;

    margin-bottom: 10px;
}

.card-info p {
    font-size: 13px;

    color: #666;
}

.card:hover {
    transform: translateY(-8px);
}

/* Cards apagadas */
.fade {
    opacity: 0.45;
}

/* Card activa */
.active {
    opacity: 1;

    transform: scale(1.08);

    border: 4px solid #d71920;

    box-shadow: 0 10px 30px rgba(215, 25, 32, 0.4);
}





/* BENEFICIOS */

.beneficios {
    padding: 90px 10%;
}

.beneficios h2 {
    font-family: 'Anton', sans-serif;

    font-size: 50px;

    margin-bottom: 45px;
}

.beneficios-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 25px;
}

.beneficio {
    background: #222;

    color: white;

    padding: 35px;

    border-radius: 15px;
}

.beneficio h3 {
    font-size: 30px;

    margin-bottom: 15px;

    line-height: 1;

    font-family: 'Anton', sans-serif;
}

.beneficio p {
    font-size: 14px;

    color: #ddd;
}





/* FAQ */

.faq {
    padding: 90px 10%;

    background: white;
}

.faq h2 {
    font-family: 'Anton', sans-serif;

    font-size: 50px;

    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid #ccc;
}

.faq-question {
    width: 100%;

    padding: 25px 0;

    border: none;

    background: none;

    font-size: 18px;

    font-weight: 600;

    display: flex;

    justify-content: space-between;

    cursor: pointer;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: 0.4s;
}

.faq-answer p {
    padding-bottom: 20px;

    color: #555;
}

.faq-answer.show {
    max-height: 200px;
}





/* FOOTER */

footer {
    background: #0d0d0d;

    color: white;

    padding: 60px 10%;
}

.footer-content {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    flex-wrap: wrap;
}

.footer-logo img {
    width: 90px;
}

.footer-links {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-links h4 {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;

    color: #ccc;

    font-size: 14px;
}

.footer-numero p {
    margin-bottom: 10px;
}

.footer-numero h2 {
    font-size: 55px;

    font-family: 'Anton', sans-serif;
}





/* RESPONSIVE */

@media(max-width: 900px) {

    .hero-content {
        flex-direction: column;

        text-align: center;

        gap: 40px;
    }

    .hero-text h1 {
        font-size: 55px;
    }

    .hero-text p {
        width: 100%;
    }

    .hero-image img {
        width: 250px;
    }

    .footer-content {
        flex-direction: column;

        text-align: center;
    }

}