/* Container */
.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ================= HERO ================= */

.hero{
    position:relative;
    height:350px;
    overflow:hidden;
}

.hero-image{
    width:100%;
    height:100%;
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(0.7);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.4);
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    text-align:center;
}

.hero-content h1{
    font-size:60px;
    font-weight:900;
}


/* ================= BREADCRUMB ================= */

.breadcrumb{
    background:#f8f9fa;
    padding:15px 0;
}

.breadcrumb .container{
    display:flex;
    gap:10px;
}

.breadcrumb a{
    color:#6b21a8;
    text-decoration:none;
}

.current{
    color:#6b21a8;
    font-weight:600;
}


/* ================= INTRO ================= */

.intro{
    padding:60px 0 40px;
    text-align:center;
    background:#f5f5f5;
}

.main-title{
    font-size:38px;
    font-weight:900;
    margin-bottom:20px;
}

.main-title span{
    color:#ef4444;
}

.description{
    max-width:900px;
    margin:auto;
    color:#555;
    font-size:17px;
    line-height:1.7;
}


/* ================= LOCATION GRID ================= */

.locations{
    background:#f5f5f5;
    padding:40px 0 70px;
}

.location-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}


/* CARD */

.location-card{
    background:#fff;
    border-radius:14px;
    padding:18px;
    text-align:center;
    border:1px solid #e5e7eb;
    transition:.3s;
    cursor:pointer;
}

.location-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* ACTIVE (Banda) */

.location-card.active{
    border:2px solid #7c2d12;
    background:#fff7ed;
}

/* IMAGE */

.location-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:15px;
}


/* TITLE */

.location-card h3{
    font-size:22px;
    font-weight:700;
    color:#dc2626;
}


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

@media(max-width:1100px){
    .location-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){
    .location-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:480px){
    .location-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:36px;
    }
}
.location-card iframe{
    width:100%;
    height:180px;
    border:0;
    border-radius:12px;
    margin-bottom:15px;
}

