/* SEÇÃO LOCALIZAÇÃO - STUDIO DUS GURI */
:root {
    --bronze: #d4a017;
    --bronze-dark: #b8860b;
    --bronze-light: #f4d03f;
    --bronze-glow: rgba(212, 160, 23, 0.3);
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --bg-card: #111111;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --text-muted: #6c757d;
    --transition: all 0.3s ease;
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
    --whatsapp-green: #25d366;
}

/* SEÇÃO PRINCIPAL */
.localizacao-section {
    padding: 80px 20px;
    background: linear-gradient(145deg, #0a0a0a 0%, #111111 100%);
    position: relative;
    overflow: hidden;
}

/* BORDA DOURADA NO TOPO */
.localizacao-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--bronze-dark) 15%,
            var(--bronze) 30%,
            var(--bronze-light) 50%,
            var(--bronze) 70%,
            var(--bronze-dark) 85%,
            transparent 100%);
    z-index: 1;
}

/* CONTAINER */
.localizacao-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* CABEÇALHO */
.localizacao-header {
    text-align: center;
    margin-bottom: 60px;
}

.localizacao-titulo {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.2;
}

.localizacao-destaque {
    background: linear-gradient(90deg, var(--bronze-light), #ffd700, var(--bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(244, 208, 63, 0.3);
}

.localizacao-subtitulo {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* GRID PRINCIPAL - COM ALTURA IGUAL */
.localizacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: stretch;
}

/* CARD DE INFORMAÇÕES - ALTURA FLEXÍVEL QUE ACOMPANHA O MAPA */
.localizacao-card {
    background: linear-gradient(145deg, var(--bg-card), #0a0a0a);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(212, 160, 23, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.localizacao-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bronze-dark), var(--bronze), var(--bronze-light));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.localizacao-card:hover::before {
    transform: translateX(0);
}

.localizacao-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 160, 23, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* CARD HEADER */
.card-header {
    text-align: center;
    margin-bottom: 25px;
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bronze-dark), var(--bronze));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.card-icon-wrapper i {
    font-size: 2rem;
    color: var(--bg-dark);
}

.localizacao-card:hover .card-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--bronze-glow);
}

.card-titulo {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-subtitulo {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 400;
}

/* DIVISÓRIA DECORATIVA */
.card-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bronze), transparent);
}

.card-divider i {
    color: var(--bronze);
    font-size: 0.9rem;
}

/* LISTA DE INFORMAÇÕES - OCUPA O ESPAÇO DISPONÍVEL */
.card-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.info-item-card {
    display: flex;
    gap: 15px;
    padding: 10px;
    border-radius: 12px;
    transition: var(--transition);
}

.info-item-card:hover {
    background: rgba(212, 160, 23, 0.05);
    transform: translateX(5px);
}

.info-icon-card {
    width: 45px;
    height: 45px;
    background: rgba(212, 160, 23, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.info-icon-card i {
    font-size: 1.2rem;
    color: var(--bronze);
}

.info-item-card:hover .info-icon-card {
    background: var(--bronze);
}

.info-item-card:hover .info-icon-card i {
    color: var(--bg-dark);
}

.info-content-card {
    flex: 1;
}

.info-content-card h4 {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.info-content-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--bronze);
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
}

.info-link:hover {
    color: var(--bronze-light);
    gap: 8px;
}

.info-link.whatsapp-link:hover {
    color: var(--whatsapp-green);
}

/* HORÁRIO DE FUNCIONAMENTO */
.horario-lista {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px dashed rgba(212, 160, 23, 0.1);
}

.horario-item .dia {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.horario-item .horario {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.horario-item.domingo .horario {
    color: #e74c3c;
}

/* BADGE DO CARD - FICA NO FINAL */
.card-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.1), rgba(212, 160, 23, 0.05));
    border-radius: 50px;
    border: 1px solid rgba(212, 160, 23, 0.2);
}

.card-badge i {
    color: var(--bronze);
    font-size: 0.8rem;
}

.card-badge span {
    color: var(--bronze-light);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* MAPA - ALTURA IGUAL AO CARD */
.localizacao-mapa {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 160, 23, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.localizacao-mapa:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 160, 23, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.mapa-wrapper {
    width: 100%;
    flex: 1;
    position: relative;
    min-height: 500px;
}

.mapa-wrapper iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    filter: grayscale(0.2) brightness(0.9);
    transition: var(--transition);
}

.localizacao-mapa:hover .mapa-wrapper iframe {
    filter: grayscale(0) brightness(1);
}

.mapa-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(212, 160, 23, 0.3);
    pointer-events: none;
    white-space: nowrap;
    z-index: 10;
}

.mapa-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mapa-info i {
    color: var(--bronze);
    font-size: 0.9rem;
}

.mapa-info span {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

/* CTA BOTÃO */
.localizacao-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-agendar {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--bronze-dark), var(--bronze));
    color: var(--bg-dark);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(212, 160, 23, 0.3);
}

.btn-agendar i {
    font-size: 1rem;
    transition: var(--transition);
}

.btn-agendar:hover {
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.4);
}

.btn-agendar:hover i:last-child {
    transform: translateX(5px);
}

/* ANIMAÇÃO DE ENTRADA */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.localizacao-header {
    animation: fadeInUp 0.8s ease-out;
}

.localizacao-card {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.localizacao-mapa {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .localizacao-section {
        padding: 60px 20px;
    }

    .localizacao-titulo {
        font-size: 2.5rem;
    }

    .mapa-wrapper {
        min-height: 450px;
    }
}

@media (max-width: 900px) {
    .localizacao-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mapa-wrapper {
        min-height: 400px;
    }

    .localizacao-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .localizacao-section {
        padding: 50px 15px;
    }

    .localizacao-titulo {
        font-size: 2rem;
    }

    .localizacao-subtitulo {
        font-size: 1rem;
    }

    .localizacao-card {
        padding: 25px;
    }

    .card-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .card-icon-wrapper i {
        font-size: 1.6rem;
    }

    .card-titulo {
        font-size: 1.3rem;
    }

    .mapa-wrapper {
        min-height: 350px;
    }

    .mapa-overlay {
        display: none;
    }

    .horario-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .btn-agendar {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .localizacao-section {
        padding: 40px 12px;
    }

    .localizacao-titulo {
        font-size: 1.8rem;
    }

    .localizacao-subtitulo {
        font-size: 0.9rem;
    }

    .localizacao-card {
        padding: 20px;
    }

    .card-info-list {
        gap: 15px;
    }

    .info-item-card {
        padding: 5px;
    }

    .info-icon-card {
        width: 40px;
        height: 40px;
    }

    .info-icon-card i {
        font-size: 1rem;
    }

    .info-content-card p {
        font-size: 0.85rem;
    }

    .mapa-wrapper {
        min-height: 280px;
    }

    .card-badge {
        padding: 10px;
    }

    .card-badge span {
        font-size: 0.75rem;
    }

    .btn-agendar {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

/* ALTURA PEQUENA (CELULARES LANDSCAPE) */
@media (max-height: 700px) and (orientation: landscape) {
    .localizacao-section {
        padding: 40px 20px;
    }

    .mapa-wrapper {
        min-height: 320px;
    }

    .card-info-list {
        gap: 12px;
    }

    .info-item-card {
        padding: 5px;
    }
}

/* MELHORIA DE ACESSIBILIDADE */
@media (prefers-reduced-motion: reduce) {

    .localizacao-card,
    .localizacao-mapa,
    .info-item-card,
    .btn-agendar {
        animation: none;
        transition: none;
    }

    .localizacao-card::before {
        transition: none;
    }

    .localizacao-card:hover {
        transform: none;
    }

    .btn-agendar:hover {
        transform: none;
    }
}