        :root {
            /* PALETA */
            --verde-topo: #b50d0d; 
            --vermelho: #b50d0d; 
            --verde-brasil: #009c3b; 
            --azul-ativo: #005CAB;   
            --azul-hover: #003d73;
            --amarelo-selecao: #EDB109; 
            --texto: #333;
            --cinza-bg: #f4f6f9;
            --whatsapp: #25D366;
            --google-maps: #4285F4;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
        body { background: var(--cinza-bg); color: var(--texto); display: flex; flex-direction: column; min-height: 100vh; overflow-x: hidden; }

  /* ================= HEADER PREMIUM REFINADO ================= */

header {
    background: linear-gradient(135deg, #b50d0d, #7d0000);
    padding: 0;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 40px; /* aumentei laterais */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 58px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* MENU DESKTOP */
.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: 0.3s ease;
}

/* Linha animada elegante */
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--amarelo-selecao);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--amarelo-selecao);
}

/* BOTÃO MOBILE */
.menu-toggle {
    display: none;
    font-size: 1.6rem;
    color: white;
    cursor: pointer;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

    .nav-menu {
        position: absolute;
        top: 85px;
        right: 0;
        background: linear-gradient(135deg, #b50d0d, #7d0000);
        flex-direction: column;
        width: 240px;
        padding: 25px;
        gap: 20px;
        display: none;
        border-radius: 0 0 0 15px;
        box-shadow: -4px 8px 25px rgba(0,0,0,0.3);
        animation: slideMenu 0.3s ease;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

@keyframes slideMenu {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}


        /* HERO SECTION */
        .hero {
            background: linear-gradient(135deg, #b50d0d, #005CAB);
            color: white;
            padding: 60px 0;
            position: relative;
        }
        .hero-content { max-width: 700px; }
        .hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 15px; font-family: 'Montserrat', sans-serif; }
        .hero p { font-size: 1rem; opacity: 0.95; margin-bottom: 25px; line-height: 1.6; }
        .hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }
        .hero-btn { padding: 12px 25px; border-radius: 8px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; }
        .hero-btn.primary { background: var(--whatsapp); color: white; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
        .hero-btn.primary:hover { background: #128C7E; transform: translateY(-2px); }
        .hero-btn.outline { /*border: 2px solid white;*/ color: white; }
        .hero-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    background: #b50d0d;
}
        .hero-btn.outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
        
        
        .hero {
    position: relative;
    padding: 40px 0;
    color: white;
    overflow: hidden;
}

/* IMAGEM DE FUNDO */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(#003d73, rgb(125 0 0 / 65%)), url(img/hero-bg.png) center / cover no-repeat;
    z-index: 0;
}
/* GARANTE QUE TEXTO FIQUE ACIMA */
.hero .container {
    position: relative;
    z-index: 2;
}

        /* TOOLTIP */
        #tooltip {
            position: fixed; display: none;
            background: rgba(0, 0, 0, 0.9); color: white;
            padding: 8px 12px; border-radius: 4px;
            font-size: 0.8rem; pointer-events: none; z-index: 2000;
            white-space: nowrap; box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        /* FILTROS */
        .filtros-section { background: white; padding: 25px 0; border-bottom: 1px solid #ddd; }
        .filtros-wrapper { display: flex; flex-wrap: wrap; gap: 15px; align-items: flex-end; justify-content: center; }
        .search-group { flex: 2; min-width: 280px; display: flex; flex-direction: column; }
        .select-group { flex: 1; min-width: 180px; display: flex; flex-direction: column; }
        
        label { font-size: 0.8rem; font-weight: 700; color: var(--azul-ativo); margin-bottom: 6px; }

        .input-wrapper { display: flex; width: 100%; height: 45px; border: 1px solid #ccc; border-radius: 6px; overflow: hidden; background: white; }
        .input-wrapper input { flex: 1; border: none; padding: 0 15px; height: 100%; outline: none; font-size: 0.95rem; }
        .input-wrapper button { width: 50px; height: 100%; border: none; background: var(--azul-ativo); color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; }
        .input-wrapper button:hover { background: var(--azul-hover); }

        select { padding: 0 12px; border: 1px solid #ccc; border-radius: 6px; width: 100%; outline: none; height: 45px; background: white; font-size: 0.95rem; }
        
        .btn-limpar { 
            background: var(--azul-ativo); color: white; 
            height: 45px; padding: 0 25px; border-radius: 6px; 
            font-weight: 600; cursor: pointer; border: none; transition: 0.2s; 
        }
        .btn-limpar:hover { background: var(--azul-hover); }

        /* LAYOUT PRINCIPAL */
        .main-content { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 20px; margin: 40px auto; width: 100%; flex: 1; }
        
        /* MAPA */
        .map-wrapper {
            position: relative; width: 450px; height: 450px; 
            background: white; border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            display: flex; justify-content: center; align-items: center;
            flex-shrink: 0; overflow: hidden; margin: 0 auto;
        }
        .map-view { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: none; flex-direction: column; justify-content: center; align-items: center; background: white; }
        .map-view.visible { display: flex; animation: fadeIn 0.5s ease; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* SVG */
                svg {
                          transition: viewBox 0.4s ease;
                        }
        
        
        svg { width: 100%; height: 100%; display: block; transition: all 0.8s ease-in-out; } 
        path, polygon { transition: 0.3s; cursor: default; stroke-width: 0.5px; vector-effect: non-scaling-stroke; }

        /* Cores Mapa */
        #view-brasil path { fill: var(--verde-brasil); stroke: #fff; }
        #view-brasil path.has-data { fill: var(--azul-ativo) !important; cursor: pointer; }
        #view-brasil path.has-data:hover { fill: var(--azul-hover) !important; }

        .map-estado path, .map-estado polygon { fill: var(--verde-brasil) !important; stroke: #fff !important; cursor: default; }
        .map-estado path.has-data, .map-estado polygon.has-data { fill: var(--azul-ativo) !important; cursor: pointer; }
        .map-estado path.has-data:hover, .map-estado polygon.has-data:hover { fill: var(--azul-hover) !important; }
        .map-estado path.active, .map-estado polygon.active { fill: var(--amarelo-selecao) !important; stroke: #333 !important; stroke-width: 1px !important; }

        /* Badges */
        .badge-layer { position: absolute; top:0; left:0; width:100%; height:100%; pointer-events: none; z-index: 20; }
        .state-badge {
            position: absolute; transform: translate(-50%, -50%);
            background: white; border: 2px solid var(--azul-ativo); color: var(--azul-ativo);
            font-weight: 800; font-size: 0.8rem; padding: 5px 10px; border-radius: 20px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2); cursor: pointer; pointer-events: auto;
            transition: 0.2s;
        }
        .state-badge:hover { transform: scale(1.1); background: var(--amarelo-selecao); color: white; border-color: white; }

        /* Pinos */
        .pin-layer { position: absolute; top:0; left:0; width:100%; height:100%; pointer-events: none; z-index: 20; }
        .city-pin {
            position: absolute; transform: translate(-50%, -50%);
            cursor: pointer; pointer-events: auto;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .pin-number {
            width: 24px; height: 24px; background: var(--azul-ativo); color: white;
            border: 2px solid white; border-radius: 50%;
            display: flex; justify-content: center; align-items: center;
            font-size: 0.75rem; font-weight: 800;
            box-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .city-pin.active { z-index: 30; transform: translate(-50%, -50%) scale(1.3); }
        .city-pin.active .pin-number { background: #333; border-color: var(--amarelo-selecao); }

        /* SIDEBAR (Verde, 55%) */
        .info-panel { 
            width: 55%; background: #b50d0d; border-radius: 15px; 
            box-shadow: 0 5px 20px rgba(0,0,0,0.1); flex-shrink: 0; height: 680px; 
            display: flex; flex-direction: column; overflow: hidden; padding: 0; color: white;
        }
        .sidebar-header { padding: 20px; background: rgba(0,0,0,0.1); }
        .sidebar-scroll-area { 
            padding: 20px; overflow-y: auto; flex: 1; 
            scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.5) transparent; 
        }

        .btn-voltar { 
            display: none; width: 100%; padding: 12px; margin-bottom: 15px;
            background: white; border: none; color: var(--azul-ativo); 
            border-radius: 8px; font-weight: bold; cursor: pointer; transition: 0.2s;
        }
        .btn-voltar:hover { background: #f0f0f0; }

        .status-box { background: white; padding: 15px; border-left: 6px solid var(--azul-ativo); border-radius: 6px; margin-bottom: 10px; }
        .status-box strong { display: block; font-size: 1.2rem; color: var(--azul-ativo); }
        .status-box small { color: #555; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; }

        /* LISTA DE PONTOS SIDEBAR */
        .foco-item {
            background: white; border-radius: 8px; padding: 15px; margin-bottom: 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1); color: #333;
            display: flex; flex-direction: column; gap: 8px;
            animation: fadeIn 0.3s ease;
        }
        .foco-item h4 { color: var(--azul-ativo); margin: 0; font-size: 1.1rem; border-bottom: 1px solid #eee; padding-bottom: 5px; }
        .foco-item p { margin: 0; font-size: 0.85rem; color: #555; line-height: 1.4; }
        .foco-item strong { color: #333; }
        
        .foco-actions { display: flex; gap: 8px; margin-top: 5px; }
        .btn-wpp, .btn-maps { flex: 1; font-size: 0.8rem; padding: 10px; text-align: center; color: white; text-decoration: none; border-radius: 6px; font-weight: bold; transition:0.2s; }
        .btn-wpp { background: var(--whatsapp); }
        .btn-wpp:hover { background: #128C7E; }
        .btn-maps { background: var(--google-maps); }
        .btn-maps:hover { background: #3367D6; }

        .sidebar-title { font-size: 1.5rem; font-weight: 800; color: white; margin-bottom: 10px; }
        .sidebar-text { font-size: 1rem; color: rgba(255,255,255,0.9); line-height: 1.6; }

        /* CARDS INFERIORES */
        .results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; padding: 40px 20px; max-width: 1200px; margin: 0 auto; width: 100%; }
        .card { background: white; border-radius: 10px; border: 1px solid #eee; overflow: hidden; transition: 0.3s; display: flex; flex-direction: column; }
        .card:hover { transform: translateY(-5px); border-color: var(--azul-ativo); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .card.active { border: 2px solid var(--amarelo-selecao); background: #fffdf5; transform: scale(1.02); }
        
        
        .contador-grid {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.contador-grid {
    font-size: 15px;
    font-weight: 500;
    color: #444;
    background: #f5f5f5;
    padding: 8px 14px;
    border-radius: 8px;
    display: inline-block;
}

.contador-grid {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    background: linear-gradient(90deg, #f0f0f0, #fafafa);
    padding: 10px 18px;
    border-left: 4px solid #ff6b00;
    border-radius: 6px;
}
        
        .card-img { height: 180px; background-size: cover; background-position: center; position: relative; }
        .card-body { padding: 15px; flex: 1; display:flex; flex-direction:column; gap: 8px; }
        .card-body h4 { font-size: 1.1rem; color: var(--azul-ativo); margin: 0; }
        .card-text { font-size: 0.85rem; color: #666; margin: 0; line-height: 1.4; }
        .badge-uf { position: absolute; top: 10px; right: 10px; background: var(--amarelo-selecao); color: var(--azul-ativo); font-weight: 800; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; }

        .svg-placeholder { text-align:center; padding: 20px; color: #aaa; border: 2px dashed #ddd; border-radius: 10px; width: 80%; height: 80%; display: flex; flex-direction: column; justify-content: center; align-items: center; }

        /* FOOTER (CORRIGIDO) */
        .site-footer {
            background-color: var(--vermelho); /* Fundo Verde */
            color: white; /* Texto Branco */
            padding-top: 40px;
            margin-top: 50px;
            border-top: 5px solid var(--azul-ativo);
        }
        .footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; padding-bottom: 30px; }
        .footer-col { flex: 1; min-width: 220px; }
        .footer-col h3 { font-family: 'Montserrat'; font-weight: 800; margin-bottom: 15px; font-size: 1.3rem; }
        .footer-col h3 span { color: var(--amarelo-selecao); }
        .footer-col h4 { font-size: 1.1rem; margin-bottom: 15px; border-bottom: 2px solid var(--azul-ativo); display: inline-block; padding-bottom: 5px; }
        .footer-col ul { list-style: none; padding: 0; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col a { color: rgba(255,255,255,0.9); text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
        .footer-col a:hover { color: var(--amarelo-selecao); padding-left: 5px; }
        .footer-contact p { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-size: 0.95rem; }
        
        .footer-bottom {
            background: rgba(0,0,0,0.1);
            padding: 20px 0;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
        }

        /* WHATSAPP FLUTUANTE */
        .float-wpp {
            position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
            background-color: var(--whatsapp); color: white; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; font-size: 32px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 9999; text-decoration: none; transition: transform 0.3s;
        }
        .float-wpp:hover { transform: scale(1.1); background-color: #128C7E; }

        @media (max-width: 900px) {
            .filtros-wrapper { flex-direction: column; align-items: stretch; }
            .search-group, .select-group, .btn-limpar { width: 100%; }
            .main-content { flex-direction: column; align-items: center; gap: 20px; }
            .map-wrapper { width: 100%; max-width: 350px; height: 350px; }
            .info-panel { width: 100%; max-width: 350px; height: auto; min-height: 400px; }
            .results-grid { grid-template-columns: 1fr; padding: 20px; }
            .footer-content { flex-direction: column; padding: 20px; }
        }
        
        
        /* Nome da cidade no mapa */


.city-label.active {
  background: #EDB109;
  color: #333;
}

.city-label {
  position: absolute;
  font-size: 12px;
  font-weight: 700;
  color: #003d73;
  background: rgba(255,255,255,0.9);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  pointer-events: none;

  opacity: 0;
  transition: opacity 0.2s ease;
}

.city-label.visible {
  opacity: 1;
}

.city-label.active {
  opacity: 1;
  background: #EDB109;
  color: #333;
  
}


.map-city-title {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  
  background: rgba(0, 0, 0, 0.75);
  color: white;
  
  padding: 10px 25px;
  border-radius: 30px;
  
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  
  font-family: 'Montserrat', sans-serif;
  
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 50;
}

.map-city-title.visible {
  opacity: 1;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px; /* ajuste se quiser maior */
    width: auto;
    object-fit: contain;
}

.header-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.logo img {
    height: 55px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    font-size: 1.6rem;
    color: white;
    cursor: pointer;
}

@media (max-width: 900px) {

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        background: var(--cor-primaria);
        flex-direction: column;
        width: 220px;
        padding: 20px;
        gap: 15px;
        display: none;
        box-shadow: -4px 8px 20px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}
/*
.card-img {opacity: 0; transition: opacity .4s ease;}

.card-img.lazy-loaded { opacity: 1;}


.card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.img-card {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
*/

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu > ul > li {
    position: relative;
    display: inline-block;
}

.main-menu li ul {
    display: none;
    position: absolute;
    background: white;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.main-menu li:hover > ul {
    display: block;
}

.main-menu li ul li {
    position: relative;
}

.main-menu li ul li ul {
    left: 100%;
    top: 0;
}

.main-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.main-menu a:hover {
    background: #1e73ff;
    color: white;
}


/* RESPONSIVO */
@media (max-width: 900px) {

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        background: #111;
        flex-direction: column;
        width: 220px;
        padding: 20px;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* ================= PÁGINA OUTDOOR ================= */
.cidade-descricao {
    margin-top: 20px;
    background: #ffffff;
    padding: 20px;
    border-left: 5px solid #004aad;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.cidade-descricao p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}
.outdoor-page {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.outdoor-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    margin-bottom: 40px;
}

.outdoor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.outdoor-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--azul-ativo);
}

.outdoor-location {
    color: #777;
}

.outdoor-badge {
    background: var(--amarelo-selecao);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
}

.outdoor-content {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.outdoor-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.outdoor-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
}

.outdoor-card strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: #777;
}

.outdoor-card span {
    font-weight: 700;
}

.outdoor-cta {
    text-align: center;
    margin: 40px 0;
}

.btn-orcamento {
    background: var(--whatsapp);
    color: white;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37,211,102,0.4);
    transition: 0.3s ease;
}

.btn-orcamento:hover {
    transform: translateY(-3px);
    background: #128C7E;
}

.outdoor-map {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ================= STATUS DISPONIBILIDADE ================= */

.status-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 10px;
}

.status-disponivel {
    background: #e6f9ef;
    color: #0f8f4f;
    border: 1px solid #0f8f4f;
}

.status-reservado {
    background: #fff6e5;
    color: #c27c00;
    border: 1px solid #c27c00;
}

.status-ocupado {
    background: #fdeaea;
    color: #b50d0d;
    border: 1px solid #b50d0d;
}

/*** CARD GRID **/


/* GRID PREMIUM */
#grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 5%;
}

/* CARD */
.card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* IMAGEM */
.card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.08);
}

/* BADGE */
.badge-uf {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #0d6efd, #00b4ff);
    color: #fff;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* BODY */
.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.card-info p {
    margin: 6px 0;
    font-size: 0.9rem;
    color: #555;
}

/* BOTÕES */
.card-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-maps {
    background: #ea4335;
    color: white;
}

.btn-maps:hover {
    background: #c1351d;
}

.btn-wpp {
    background: #25D366;
    color: white;
}

.btn-wpp:hover {
    background: #1da851;
}



/* ===============================
   ESTILO PROFISSIONAL OUtdoor PAGE
=================================*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f6f9;
}

.outdoor-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.outdoor-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.outdoor-header {
    margin: 30px 0 10px;
}

.outdoor-header h1 {
    font-size: 36px;
    margin: 0;
}

.outdoor-header span {
    font-size: 18px;
    color: #666;
}

.outdoor-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.info-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.info-box strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    color: #444;
}

.outdoor-actions {
    margin-top: 30px;
}

.btn-orcamento {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

.btn-orcamento:hover {
    background: #1ebe5d;
}

.outdoor-map {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

/* Responsivo */
@media (max-width: 768px) {
    .outdoor-header h1 {
        font-size: 26px;
    }
}

/* =============================
   FONTE PROFISSIONAL
============================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f6f9;
}

/* =============================
   LAYOUT PRINCIPAL
============================= */

.outdoor-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

.outdoor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* MOBILE */
@media (max-width: 900px) {
    .outdoor-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================
   IMAGEM
============================= */

.outdoor-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* =============================
   HEADER
============================= */

.outdoor-header h1 {
    font-size: 38px;
    margin-bottom: 5px;
    font-weight: 700;
}

.outdoor-header span {
    color: #777;
    font-size: 16px;
}

/* =============================
   INFORMAÇÕES
============================= */

.outdoor-info {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    background: white;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    align-items: center;
}

.icon {
    font-size: 22px;
}

.icon {
    width: 45px;
    height: 45px;
    /* background: linear-gradient(135deg, #0056b3, #003d82); */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #b50d0d;
}

.icon svg {
    width: 22px;
    height: 22px;
}

.info-item strong {
    font-size: 14px;
    color: #444;
    display: block;
}

.info-item p {
    margin: 2px 0 0;
    font-size: 15px;
    font-weight: 500;
}



.icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0056b3, #003d82);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}
/* =============================
   BOTÃO
============================= */

.btn-orcamento {
    display: inline-block;
    margin-top: 30px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: white;
    padding: 16px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(37,211,102,0.3);
}

.btn-orcamento:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37,211,102,0.4);
}



/* =============================
   BOTÃO VER DETALHES
============================= */

.btn-detalhes {
    display: inline-block;
    padding: 12px 22px;
    background-color: #b50d0d; /* vermelho forte */
    color: #fff; /* branco */
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #e10600;
}

/* Hover */
.btn-detalhes:hover {
    background-color: #c00500;
    color: #ffffff;
}

/* Clique */
.btn-detalhes:active {
    background-color: #004aad; /* azul */
    color: #ffffff;
    border-color: #004aad;
}



/* =============================
   BOTÃO VOLTAR AO MAPA
============================= */

.back-button {
    margin-bottom: 30px;
}

.btn-voltar-mapa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #ffffff;
    color: #004aad;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #004aad;
    transition: all 0.3s ease;
}

.btn-voltar-mapa i {
    font-size: 14px;
}

.btn-voltar-mapa:hover {
    background: #004aad;
    color: #ffffff;
}

/* =============================
   MAPA
============================= */

.outdoor-map {
    margin-top: 60px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.outdoor-map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

@media (max-width: 900px) {
    .container {
        padding: 0 20px;
    }
}


/* =============================
   SEÇÃO DO MAPA
============================= */

.map-section {
    margin-top: 70px;
}

.map-header {
    margin-bottom: 25px;
}

.map-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.map-header p {
    color: #666;
    font-size: 15px;
}

.outdoor-map {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.outdoor-map iframe {
    width: 100%;
    height: 450px;
    border: none;
}


/* =============================
   TÍTULOS DE SEÇÃO
============================= */

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111;
}

.section-title i {
    color: #004aad;
}

/* Espaçamento das seções */

.image-section {
    margin-bottom: 40px;
}

.descricao-section {
    margin-top: 30px;
    margin-bottom: 40px;
}

/* Botão abaixo do mapa */

.map-back-button {
    margin-top: 30px;
    text-align: center;
}

.map-back-button .btn-voltar-mapa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 25px;
    background: #ffffff;
    color: #004aad;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #004aad;
    transition: all 0.3s ease;
}

.map-back-button .btn-voltar-mapa:hover {
    background: #004aad;
    color: #ffffff;
}
/* ALERTA TOPO */

.top-alert{
    width:100%;
    background:#004b8d;
    color:#fff;
    text-align:center;
    padding:14px 20px;
    font-weight:700;
    font-size:15px;
    cursor:pointer;
    transition:.3s;
    position:relative;
    z-index:100;
}

.top-alert:hover{
    background:#0067c2;
}

/* MODAL */

.video-modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.88);
    display:none;
    justify-content:center;
    align-items:center;
    padding:20px;
    z-index:999999;
}

.video-modal.active{
    display:flex;
}

.video-content{
    width:100%;
    max-width:900px;
    aspect-ratio:16/9;
    background:#000;
    border-radius:16px;
    overflow:hidden;
    position:relative;
    box-shadow:0 10px 50px rgba(0,0,0,.4);
}

.video-content iframe{
    width:100%;
    height:100%;
    border:none;
    display:block;
}

/* FECHAR */

.close-video{
    position:absolute;
    top:10px;
    right:10px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:28px;
    cursor:pointer;
    z-index:10;
    backdrop-filter:blur(4px);
}

/* MOBILE */

@media(max-width:768px){

    .top-alert{
        font-size:14px;
        padding:12px;
    }

    .video-content{
        border-radius:12px;
    }

}



.top-alert{
    background: linear-gradient(90deg,#00b050,#00d65f);
    color:#fff;
    text-align:center;
    padding:14px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    position:relative;
    overflow:hidden;
    animation: pulseAlert 2s infinite;
    box-shadow:0 3px 15px rgba(0,176,80,.4);
}

.top-alert:hover{
    background: linear-gradient(90deg,#00c95a,#00e669);
}

.top-alert::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );
    animation: brilho 3s infinite;
}

@keyframes pulseAlert{
    0%{
        opacity:1;
    }
    50%{
        opacity:.85;
    }
    100%{
        opacity:1;
    }
}

@keyframes brilho{
    0%{
        left:-100%;
    }
    100%{
        left:100%;
    }
}

@media (min-width:1400px){

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    margin-top: 100px;
}
    .hero .container {
    position: relative;
    z-index: 2;
}
}


.top-alert{
display:block;
background:linear-gradient(90deg,#00a651,#00c85f);
color:white;
text-align:center;
padding:14px;
font-size:18px;
font-weight:700;
text-decoration:none;
animation:pulse 2s infinite;
}

@keyframes pulse{
50%{
opacity:.85;
}
}