/* ========================================
   SEÇÃO DE LOCALIZAÇÃO DO EVENTO - ULTRA PREMIUM
   ======================================== */

.event-location-section {
    margin-top: 60px;
    background: linear-gradient(135deg,
            rgba(137, 90, 33, 0.08) 0%,
            rgba(204, 169, 102, 0.12) 50%,
            rgba(137, 90, 33, 0.08) 100%);
    padding: 50px;
    border-radius: 25px;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.12),
        0 5px 20px rgba(137, 90, 33, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

/* Elemento decorativo de fundo */
.event-location-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(204, 169, 102, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.event-location-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(137, 90, 33, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Título da seção com decorações */
.event-section-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #895A21 0%, #CCA966 50%, #895A21 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.title-decoration {
    display: inline-block;
    font-size: 1.5rem;
    margin: 0 15px;
    color: #CCA966;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

/* Grid de informações do evento */
.event-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 45px;
    position: relative;
    z-index: 1;
}

/* Card individual de informação - PREMIUM */
.event-detail {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    border: 2px solid rgba(204, 169, 102, 0.3);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 3px 10px rgba(137, 90, 33, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Brilho sutil que aparece no hover */
.event-detail::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(204, 169, 102, 0.2) 50%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.event-detail:hover::before {
    opacity: 1;
    animation: shine-sweep 1.5s ease-in-out;
}

@keyframes shine-sweep {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.event-detail:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(137, 90, 33, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(204, 169, 102, 0.6);
}

/* Wrapper do ícone com background circular */
.event-icon-wrapper {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            rgba(137, 90, 33, 0.1) 0%,
            rgba(204, 169, 102, 0.15) 100%);
    border-radius: 50%;
    border: 2px solid rgba(204, 169, 102, 0.3);
    box-shadow:
        0 4px 15px rgba(137, 90, 33, 0.15),
        inset 0 2px 5px rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.event-detail:hover .event-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg,
            rgba(137, 90, 33, 0.2) 0%,
            rgba(204, 169, 102, 0.25) 100%);
    border-color: rgba(204, 169, 102, 0.5);
    box-shadow:
        0 6px 20px rgba(137, 90, 33, 0.25),
        inset 0 2px 8px rgba(255, 255, 255, 0.7);
}

/* Ícone do evento */
.event-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

/* Texto do evento */
.event-detail-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.event-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #895A21;
    opacity: 0.85;
}

.event-value {
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(135deg, #895A21 0%, #CCA966 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.3;
}

/* Wrapper do mapa com header */
.map-wrapper {
    position: relative;
    z-index: 1;
}

.map-header {
    text-align: center;
    margin-bottom: 20px;
}

.map-title {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #895A21 0%, #CCA966 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.map-subtitle {
    font-size: 1rem;
    color: #5D4037;
    font-weight: 500;
    margin: 0;
    opacity: 0.8;
}

/* Container do mapa responsivo - PREMIUM */
.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(137, 90, 33, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(204, 169, 102, 0.4);
    transition: all 0.4s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.18),
        0 10px 30px rgba(137, 90, 33, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(204, 169, 102, 0.6);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Responsividade da seção de evento */
@media (max-width: 768px) {
    .event-location-section {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .event-section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .title-decoration {
        font-size: 1.2rem;
        margin: 0 10px;
    }

    .event-info {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

    .event-detail {
        padding: 18px;
        gap: 15px;
    }

    .event-icon-wrapper {
        width: 55px;
        height: 55px;
    }

    .event-icon {
        font-size: 1.8rem;
    }

    .event-label {
        font-size: 0.7rem;
    }

    .event-value {
        font-size: 1rem;
    }

    .map-title {
        font-size: 1.3rem;
    }

    .map-subtitle {
        font-size: 0.9rem;
    }

    .map-container {
        padding-bottom: 75%;
        /* Mais quadrado em mobile */
    }
}