/* versao 06 2026-04-10 */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Merriweather:wght@700&display=swap');

:root {
    --font-body: 'Manrope', sans-serif;
    --font-heading: 'Merriweather', serif;
    --text-primary: #2f3338;
    --text-secondary: #3f444a;
    --text-muted: #4f545a;
    --surface-base: #efecec;
    --menu-active-bg: #8f6648;
    --menu-active-fg: #ffffff;
    
    --card-posted-bg: rgb(199, 189, 167);;
    --card-code-bg: #555555;
}

* {
    font-family: var(--font-body);
}
body {
    margin: 0;
    padding: 0;
    background-color: var(--surface-base);
    color: var(--text-primary);
    line-height: 1.5;
}

 header {
    display: flex;
    justify-content: center;
    height: 80px;
    /* position: sticky; */
    top: 0;
    /* z-index: 1000; */
    background-color: var(--surface-base);
} 

p {
    text-align: justify;
}

.naoexibir{
    display: none;
}

.red {
    color: red;
}
.bg-red {
    background-color: red;
    color: whitesmoke;
}

.bg-green-faixa {
    background-color: rgb(108, 199, 11);
    color: whitesmoke;
    border-radius: 3px;
}

.bg-blue-faixa {
    background-color: rgba(12, 130, 240, 0.632);
    color: rgb(40, 38, 38) !important; 
    padding: 5px;
    border-radius: 3px;
}

.bg-orange-faixa {
    background-color: rgba(248, 197, 140, 0.477);
    color: rgb(40, 38, 38) !important; 
    border-radius: 10px;
    
}

.bg-red-faixa {
    background-color: rgba(251, 11, 11, 0.842);
    color: rgb(15, 15, 15) !important; 
    padding: 5px;
    border-radius: 3px;
}



.green{
    color: rgb(18, 185, 18);
}
.container {
    width: 1280px;
    display: flex;
    justify-content: space-between;
  
    
}


.flash {
    background: rgba(199, 22, 22, 0.12);
    color: #7a1111;
    border: 1px solid rgba(199, 22, 22, 0.35);
    border-left: 4px solid rgba(199, 22, 22, 0.85);
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.4;
    padding: 10px 14px;
    margin-top: 10px;
    box-shadow: 0 4px 14px rgba(122, 17, 17, 0.08);
}

.msg {
    background: rgba(5, 146, 15, 0.12);
    color: #0b5f13;
    border: 1px solid rgba(5, 146, 15, 0.35);
    border-left: 4px solid rgba(5, 146, 15, 0.85);
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.4;
    padding: 10px 14px;
    margin-top: 10px;
    box-shadow: 0 4px 14px rgba(11, 95, 19, 0.08);
}

.flex {
    display: flex;
    flex-wrap: wrap;
    
}

.block {
    display: block;
    flex-wrap: wrap;
    
}

.column {
    flex-direction: column;
}



.search{
   
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 10px;
    

   
}
.search label, fieldset{
    font-size: 18px;
    
}

.search1{
    background-color: rgba(199, 191, 184, 0.413);
    margin: 5px;
    padding: 10px;
    border-radius: 5px;
   
}

.search-area input {
    background-color:rgba(249, 215, 152, 0.527);
    background-image: url('../images/search.png');
    background-size: 18px;
    background-position-x: 10px;
    background-position-y: center;
    background-repeat: no-repeat;
    width: 200px;
    height:25px;
    border-radius:5px;
    border:0;
    outline:0;
    margin-top:15px;
    padding-left:30px;
    transition: all .3s;
    font-size: 18px;
   
}

.search-area-admin input {
    background-color:rgba(249, 215, 152, 0.527);
    background-image: url('../images/search.png');
    background-size: 15px;
    background-position-x: 10px;
    background-position-y: center;
    background-repeat: no-repeat;
    max-width: 500px;
    height:25px;
    border-radius:5px;
    border:0;
    outline:0;
    margin-top:15px;
    padding-left:30px;
    transition: all .3s;
    font-size: 18px;
   
}

.resultSearh {
    margin: 10px;
}


.resultImg{
    height: 100px;
    
}

.miniatura{
    height: 120px;
    padding: 10px;
}

.tabela td {
    margin-right: 10px;
    padding: 5px;
    border-bottom: 1px solid chocolate;
}

.tabela th {
    text-align: left;
    margin-right: 10px;
    padding: 5px;
    background-color: #c7bfb8;
    min-width: 30px;
}

/* LOGO */ 
.logo {
    display: flex;
    align-items: center;
    
}
.logo img {
    height: 60px;
}

/* MENU */
.menu {
    display: flex;
    align-items: center;
    z-index: 90;
    position: relative;
   
}

nav {
    position: relative;
}

nav ul, 
nav li{
    list-style-type: none;
    margin: 0;
    padding: 0;
    
}

nav ul {
    display: flex;
    align-items: center;
    background-color: rgba(199, 191, 184, 0.794); 
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px; 
    box-shadow: 0 8px 18px rgba(31, 41, 51, 0.12); 
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

nav > ul > li + li {
    border-left: 1px solid rgba(64, 67, 72, 0.16);
}

nav a {
    display: block;
    padding: 10px 12px;
    text-decoration: none;
    text-transform: uppercase;
    color:  #404348;
}

nav .active a, nav a:hover {
    background-color: var(--menu-active-bg);
    color: var(--menu-active-fg);
    border-radius: 3px;

}



/* SUB MENU*/
nav ul ul {
    position: absolute;
    z-index: 90;
    top: 60px;
    border: 1px solid rgba(150, 120, 92, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: top .3s;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.2);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(236, 226, 216, 0.92) 100%);
    

}

nav:not(.click-dropdown) ul li:hover > ul{
    top: auto;
    opacity: 1;
    visibility: visible;
}

nav ul li.submenu-open > ul {
    top: auto;
    opacity: 1;
    visibility: visible;
}

nav ul ul li{ 
    position: relative;
    margin: 0px;
    width: 210px;
    float: none;
    display: list-item;
    border-bottom: 1px solid rgba(64, 67, 72, 0.14);
    background-color: transparent;
}
nav ul ul li a{
    line-height: 1.25;
    padding: 8px 10px;
    text-transform: none;
    
}
nav .submenu a{
    background-color: transparent;
    color:  #404348; 
}
nav .submenu a:hover {
    background-color: #c89c76;
    color:#efecec;
    border-radius: 3px;

}

/* BANNER */


#banner {
    display: flex;
    justify-content: center;
    padding: 20px 0 16px;
    background: linear-gradient(145deg, #efe5dc 0%, #f5f1ed 40%, #e7dbd0 100%);
    position: relative;
    overflow: hidden;
}

#banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(155, 85, 49, 0.16) 0%, rgba(155, 85, 49, 0.02) 45%, transparent 62%),
        radial-gradient(circle at 86% 74%, rgba(138, 63, 33, 0.12) 0%, rgba(138, 63, 33, 0.03) 44%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

#banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.14) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.26;
    pointer-events: none;
    z-index: 1;
}

#banner .container {
    position: relative;
    z-index: 2;
    align-items: center;
}


.banner_headline {
    flex: 1;
    display: flex;
    margin-top: 0;
    margin-bottom: 0;
    flex-direction: column;
    font-family: var(--font-body);
    gap: 10px;
    max-width: 1000px;
    padding: 18px 20px;
    border-radius: 12px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.9) 0%, rgba(246, 239, 232, 0.86) 100%);
    border: 1px solid rgba(155, 85, 49, 0.16);
    box-shadow: 0 12px 28px rgba(49, 39, 31, 0.12), 0 4px 12px rgba(49, 39, 31, 0.06);
}

.banner_kicker {
    align-self: flex-start;
    padding: 5px 10px;
    border-radius: 999px;
    background-color: rgba(155, 85, 49, 0.12);
    border: 1px solid rgba(155, 85, 49, 0.2);
    color: #74462f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.banner_headline h1 {
    color: #7f3a1f;
    font-size: 24px;
    line-height: 1.12;
    margin: 0;
    padding: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.banner_subtitle {
    color: #56493f;
    font-size: 16px;
    line-height: 1.45;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.banner_trust {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.trust_item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 148px;
    padding: 8px 10px;
     border-radius: 10px;
    background: #E4D5CB;
    border: 1px solid rgba(122, 79, 53, 0.2);
}

.trust_number {
    color: #8a3f21;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
}

.trust_label {
    font-size: 11px;
    color: #5f5248;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.banner_cta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.banner_cta_primary,
.banner_cta_secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 9px 13px;
    border-radius: 9px;
    font-size: 13px;
    letter-spacing: 0.02em;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-sizing: border-box;
    max-width: 100%;
}

.banner_cta_primary {
    background-color: #8a3f21;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(138, 63, 33, 0.26);
}

.banner_cta_primary:hover {
    background-color: #73331b;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(138, 63, 33, 0.31);
}

.banner_cta_secondary {
    background-color: rgba(255, 255, 255, 0.78);
    color: #5e3320;
    border: 1px solid rgba(138, 63, 33, 0.26);
}

.banner_cta_secondary:hover {
    background-color: #f4e6dc;
    transform: translateY(-1px);
}
.banner_options {
    height: auto;
    display: flex;
    
}
.banner_options a {
    display: inline-block;
    border: 1px solid #ffb81d;
    color: #efecec;
    padding: 5px;
    text-decoration: none;
    font-size: 13px;
    
}

.banner1, .banner2, .banner3 {
    flex: 1;
    color: #efecec;
    padding: 20px;

}

.banner_title {
    font-family: var(--font-heading);
    font-size: 30px;
}

.banner_desc{
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

#geral {
    
    display: flex;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
}

#geral section{
    flex: 2;
    padding: 5px;
  
}

#geral aside{
    flex: 1;
    
}

#geral aside img{
    flex: 1;
    max-width: 100%;
    max-height: fit-content;
}

.widget {
    padding: 10px;
    width: 100%;

}

.widget_title {
    margin-top: 30px;
    margin-bottom: 20px;
    
}

.widget_title h1 {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    
}

.widget_title_text {
    font-family: var(--font-heading);
    font-size: 1.3em;
    color: var(--text-secondary);
    font-weight: bold;
}

.widget_title_bar{
    width: 150px;
    height: 2px;
    background-color: #eb6028;
    margin-top: 8px;
}

.widget_footer_bar{
   
    margin-top: 8px;
    border-bottom: solid 1px #f18358;
}

.widget_boby{
    margin-top: 15px;
    border-bottom: #404348 1px;
    
}

.widget_boby a{
    color: var(--text-primary);
    text-decoration: none;
}
.widget_boby a:hover{
    color: #7e563b;
    text-decoration: none;
}

.widget_boby strong{
    color: #eb6028;
    text-decoration: none;
}

.widget_boby ul{
    display: flex;
    flex-wrap: wrap;
}

.widget_boby li{
    display: block;
    line-height: 35px;
 
    width: 200px;
    
}

/* .widget_boby p{
    display: block;
    line-height: 35px;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
} */


.widget_boby h2{
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: var(--font-heading);
}

.widget_boby h3, h4{
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: var(--font-heading);
}

.widget_boby p{
    font-size: 1.1em;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: var(--font-body);
}

.btn-ligar {
    background-color: #eb5e28ff;
    border: none;
    border-radius: 10px;
    color: white;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline;
    font-size: 15px;
    cursor: pointer;
}

.btn-whatsapp{
    background-color: rgb(69, 160, 12);
    border: none;
    border-radius: 10px;
    color: white;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
} 

.btn-telegram{
    background-color: rgb(72, 124, 245);
    border: none;
    border-radius: 10px;
    color: white;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
} 

.btn-ligar  a{
    color: #efecec;
   
}

.btn-ligar a:hover{
    color: #0c0c0c;
   
}

.btn-whatsapp  a{
    color: #efecec;
    
}

.btn-whatsapp  a:hover{
    color: #0c0c0c;
}

.btn-telegram  a{
    color: #efecec;
    
}

.btn-telegram  a:hover{
    color: #0c0c0c;
}

.fa-brazilian-real-sign {
    color: #f47505;
    background-color: rgba(173, 163, 163, 0.475);
    padding: 20px;
    border-radius: 10px;
}

.fa-credit-card {
    color: rgb(42, 80, 4);
    background-color: rgba(173, 163, 163, 0.475);
    padding: 20px;
    border-radius: 10px;
}

.fa-pix{
    color: rgb(29, 39, 225);
    background-color: rgba(173, 163, 163, 0.475);
    padding: 20px;
    border-radius: 10px;
}

.direita {
    margin-top: 10px;
    margin-right: 10px;
    float: right;
    font-size: 12px;
    color: var(--text-muted);
}

article {
    flex: 1;
    margin-right: 20px;
}

.capa {
    /* align-self: flex-start;  */
    max-width: 150px;
    min-width: 130px;
    padding: 8px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #e7e2dd;
    border: 1px solid  rgba(115, 92, 74, 0.28);
    box-shadow: 0 12px 28px rgba(31, 41, 51, 0.1), 0 3px 10px rgba(31, 41, 51, 0.06);
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.capa:hover {
    background-color: #c9bcb1;
    box-shadow: 0 16px 36px rgba(31, 41, 51, 0.14), 0 6px 14px rgba(31, 41, 51, 0.08);
    transform: translateY(-2px);
}

article a{
    color: #404348;
}

article .card_data {
    display: flex;
    margin-top: 10px;
}

article .card_posted_at, article .card_code {
    background-color: var(--card-posted-bg);
    height: 1.2rem;
    color: var(--text-muted);
    font-size: .9rem;
    padding: 5px; 
    border-radius: 3px;
    align-items: center;
    color: var(--text-primary);
    font-weight: 600;
}

article .card_posted_at {
    width: 37%;
    padding: 5px; 
    margin-right: 2px;

}

article .card_code {
    width: 48%;
    
}

article .card_tumbnail {
    margin-top: 10px;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.25s ease;
    background-color: #ddd3c9;
}

article .capa:hover .card_tumbnail {
    box-shadow: none;
    transform: translateY(-1px);
    background-color: #d5c7bc;
}

article .card_tumbnail img{
    display: block;
    width: 100%; 
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

article .card_title {
    text-align: center;
    margin-top: 5px;
    padding-bottom: 5px;
    font-size: 15px;
    font-family: var(--font-body);
    font-weight: bold;
    color: #8a3f21;
    height: auto;
    min-height: 2em;
    overflow: hidden;
    line-height: 1.2;
}

article .card_resume {
    font-size: 15px;
    line-height: 20px;
    text-align: justify;
    margin-bottom: 5px;
    text-align: center;
    background-color: rgba(255, 183, 29, 0.324);
    border-radius: 3px;
    margin-top: 2px;
    
}

a:hover .card_resume, 
a:hover .card_posted_at, 
a:hover .card_code {

    background-color: rgb(11, 11, 11) !important;
    color: #f5f1eb;

}

a:hover .card_resume[class^="cid_"],
a:hover .card_resume[class*=" cid_"],
a:hover .card_resumo[class^="cid_"],
a:hover .card_resumo[class*=" cid_"] {
    color: #ffffff !important;
}

article .bg-green {
    background-color: rgba(239, 167, 10, 0.858);
    color: rgb(11, 11, 11);
}

article .widget_boby {
    background-color: #f00cb3;
}


.view-classificados .widget_title_text {
    color: #5a4030;
}

.view-classificados .widget_title_bar {
    background-color: #9b5531;
}

.view-classificados .widget_boby strong {
    color: #8a3f21;
}

.view-classificados .widget_boby {
    background-color: rgba(223, 212, 202, 0.32);
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.1), 0 2px 8px rgba(31, 41, 51, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.view-classificados .widget_boby:hover {
    box-shadow: 0 14px 32px rgba(31, 41, 51, 0.14), 0 4px 10px rgba(31, 41, 51, 0.08);
    transform: translateY(-1px);
}

.view-classificados .widget_boby .direita {
    display: block;
    float: none;
    margin-top: 8px;
    margin-right: 0;
    font-size: 13px;
    color: #6a5a50;
    text-align: right;
    line-height: 1.4;
}

/* Padrão para classificados na home */
.home-classificados-section .widget_title_text {
    color: #5a4030;
}

.home-classificados-section .widget_title_bar {
    background-color: #9b5531;
}

.home-classificados-section .widget_boby strong {
    color: #8a3f21;
}

.home-classificados-section .widget_boby {
    background-color: rgba(223, 212, 202, 0.32);
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.1), 0 2px 8px rgba(31, 41, 51, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.home-classificados-section .widget_boby:hover {
    box-shadow: 0 14px 32px rgba(31, 41, 51, 0.14), 0 4px 10px rgba(31, 41, 51, 0.08);
    transform: translateY(-1px);
}

.home-classificados-section .widget_boby img {
    border-radius: 8px;
    max-width: 100%;
}

/*  RODAPÉ */
footer{
    background-color: #3f3b38;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer_menu{
    display: flex;
    gap: 8px;
    padding: 8px 0 0;
    
}

.fm_1, .fm_2, .fm_3 {
    flex: 1;
    padding: 8px;
    color: #efecec;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.03);
}

.fm_1 img, .fm_2 img, .fm_3 img{
    width: 100%;
}

.fm_1 img {
    border-radius: 8px;
    display: block;
}

.fm_1 {
    border-top: 1px solid rgba(214, 166, 129, 0.55);
}

.fm_2 {
    border-top: 1px solid rgba(191, 136, 95, 0.55);
}

.fm_3 {
    border-top: 1px solid rgba(169, 112, 73, 0.55);
}

.fm_3 {
    font-size: 13px;
    line-height: 1.45;
}

.fm_3 strong {
    color: #f2dfcf;
}

.fm3_cta {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background-color: rgba(255, 255, 255, 0.08);
    color: #f6e8dc;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.fm3_cta:hover {
    background-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.footer_area {
    display: flex;
    color: #efecec;
    gap: 8px;
    margin-top: 4px;
}

.footer_areaitem{
    flex: 1;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

footer .widget {
    padding: 6px 8px;
}

footer .widget_title {
    margin-top: 2px;
    margin-bottom: 6px;
}

footer .widget_boby {
    margin-top: 4px;
    line-height: 1.3;
}

footer .widget_boby a {
    display: inline-block;
    margin: 1px 0;
}

footer .widget_title_text {
    color: #e7dacd;
    font-size: 14px;
}

footer .widget_title_bar {
    background-color: #a86743;
    height: 1px;
}

.footer_copy{
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: #ded2c8;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    margin-top: 10px;
}

.ul_footer a{
    color: #ded2c8;
    font-size: 12px;
}

.a_footer a{
    color: #ded2c8;
}

.a_footer a:hover,
.ul_footer a:hover {
    color: #f5ece5;
}

/*  */
.fraseMobile{
    display: none;
}

.menuMobile{
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
    width: 30px;
    height: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 20px;
    cursor: pointer;

}

.menuMobile:focus-visible {
    outline: 2px solid #8a3f21;
    outline-offset: 4px;
    border-radius: 4px;
}

.mm_line {
    height: 4px;
    background-color: #eb6028;
    border-radius: 2px;
}

.center {
    text-align: center;
}

/* FORMULARIO */
/* usado na tag ul */
.formulario_modal {
    width: 100%;
    background-color: rgb(232, 226, 226);
    padding-top: 10px;
    padding-left: 10px;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
}

.formulario_modal input {
    background-color: #f8e4bc;
    font-size: 16px;
    height: 2em;
}

.body_modal {
    padding-left:10px;
}

.formulario {
    padding: 20px;
    background-color: rgb(232, 226, 226);
    margin: 10px;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(31, 41, 51, 0.22);
}

.formulario h2{
    width: 100%;
}

.formulario li{
    display: block;
    margin-top: 15px;
    width: 100%;
}

.formulario label {
    color: #000000;
    font-family: var(--font-body);
    font-size: 18px ;
}

.formulario option {
    background-color: #f8e4bc; 
}

.form_input{
   font-size: 16px;
   width: 100%;
}

.formulario select {
    background-color: #f8e4bc;
    font-size: 16px;
}



.formulario input {
    background-color: #f8e4bc;
    font-size: 16px; 
}

.btn-search{
    width: 150px;
    height: 30px;
    background-color:rgba(200, 156, 118, 0.6) !important;
    border-radius: 3px;
    justify-self: end;
}


form {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-content:space-around;
    width: 100%;
    margin-right: 20px; 
}

.check {
    padding: 0;
    justify-content: right;
    background-color: #eb6028;
}

/* Classe de butões */
.btn-green{
    background-color: #21ec32;
    border: none;
    border-radius: 5px;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    margin: 10px;
    transition: 0.3s;
} 

.btn-green:hover{
    background-color: #404348;
    color: white;
} 

.btn-brown{
    background-color:rgba(200, 156, 118, 0.6) !important;
    border: none;
    border-radius: 5px;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    margin: 10px;
    transition: 0.3s;
} 

.btn-brown:hover{
    background-color: #404348;
    color: white;
} 



.btn-blue{
    background-color: #0c82f0;
    border: none;
    border-radius: 5px;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    margin: 10px;
    transition: 0.3s;
} 

.btn-blue:hover{
    background-color: #404348;
    color: white;
} 
.btn-cidades-df{
    background-color: rgba(250, 179, 96, 0.881);
    border: none;
    border-radius: 5px;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    margin: 2px;
    transition: 0.3s;
} 

.btn-cidades-go{
    background-color: rgba(56, 124, 241, 0.4);
    border: none;
    border-radius: 5px;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    margin: 2px;
    transition: 0.3s;
} 

.btn-blue:hover{
    background-color: #404348;
    color: white;
} 

.btn-rose{
    background-color: #f00cb3;
    border: none;
    border-radius: 5px;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    margin: 10px;
    transition: 0.3s;
} 

.btn-rose:hover{
    background-color: #404348;
    color: white;
} 

.btn-red{
    background-color: #f90606;
    border: none;
    border-radius: 5px;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    margin: 10px;
    transition: 0.3s;
} 

.btn-red:hover{
    background-color: #404348;
    color: white;
} 

.btn-light-blue{
    background-color: #06f9e5;
    border: none;
    border-radius: 5px;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    margin: 10px;
    transition: 0.3s;
} 

.btn-light-blue:hover{
    background-color: #404348;
    color: white;
} 

.btn-orange{
    background-color: rgb(255, 128, 0) ;
    border: none;
    border-radius: 5px;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    margin: 10px;
    transition: 0.3s;
} 


.btn-orange:hover{
    background-color: #404348;
    color: white;
} 

.reset{
    background-color: #ffb81d;
    color: black; 
} 

.reset:hover{
    background-color: #eb5e28ff;
    color:  white; 
}

textarea {
    width: 100%;
    height: 15vh;
    background-color: #f8e4bc;
    font-size: 16px;
}

.checked {
    width: 15px;
    height: 15px;
    margin-top: 15px;
}

.fotos{
    padding: 5px;
    margin: 10px;
    max-width: 20%;
    min-width: 90px;
    height: auto; 
    background-color: #c7bfb8;
    align-content: center;
    text-align: center;
}

.video{
    padding: 5px;
    margin: 10px;
    max-width:70%;
    min-width: 90px;
    height: auto; 
    background-color: #c7bfb8;
    align-content: center;
    text-align: center;
}

.fotos img{
    max-width: 100%;
    text-align: center;
}

.fotos input{
    max-width: 100%;
}

#anunciante {
    display: flex;
    justify-content: center;
}

#anunciante section{
    flex: 1;
    padding: 10px;
}

.titulo h1{ 
    font-size: 20px;
    width: 100%;
}

#anunciante aside{
    flex: 1;
    display: flex;
    padding: 10px;
    justify-content: center;
}

#comentario {
    width: 100%;
    max-width: 1280px;
    margin: 16px auto 28px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 8px;
    padding-right: 8px;
}


#comentario > .comentario_block {
    width: 100%;
    box-sizing: border-box;
}

.comentario_block{
    max-width: 1280px;
    display: block;
    justify-content: left;
    background: #fbf9f6;
    border: 1px solid #ddd2c9;
    border-radius: 10px;
    padding: 16px 18px;
    box-shadow: 0 2px 8px rgba(60, 43, 30, 0.08);

}
 
.comentario_block p{
    font-size: 0.9em !important;
    line-height: 1.55;
    margin: 0;
    color: #31261f;
}

#comentario .comentario_aviso {
    background: #f5eee8;
}

#comentario .comentario_aviso p {
    overflow-wrap: anywhere;
    word-break: break-word;
}

#comentario .comentario_panel .widget {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin: 0 0 14px 0;
}

#commentics {
    width: 100%;
    max-width: 100%;
    min-height: 180px;
}

#commentics iframe {
    width: 100% !important;
    max-width: 100% !important;
    /* border-radius: 10px; */
    /* border: 1px solid #d8ccc2; */
    /* background: #ffffff; */
}

#comentario .comentario_regras_titulo {
    font-size: 1rem !important;
    margin-bottom: 10px;
    color: #1f1510;
}

#comentario .comentario_regras_lista {
    margin: 0;
    padding-left: 20px;
}

#comentario .comentario_regras_lista li {
    font-size: 0.9em;
    line-height: 1.6;
    color: #31261f;
    margin-bottom: 6px;
}

#comentario .comentario_nota {
    margin-top: 10px;
    padding: 8px 10px;
    border-left: 3px solid #eb6028;
    background: #fffaf4;
}

#comentario .comentario_alerta {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #e4cba9;
    border-radius: 8px;
    background: #fff4e7;
    color: #4a3221;
}
  /* GALERIA LIGHBOX2 */
  .content_slide {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .content_slide h3 {
      width: 100%;
  }

  .gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-gap: 20px;
    padding-top: 10px;
    
}

.gallery img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid #c7bfb8;
    border-radius: 3px;
    
    
}

.gallery a {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 3px;
    background-color: #ddd3c9;
    
}

.gallery img:hover {
    width: 100%;
    border: 3px solid #f47505;
    border-radius: 3px;
}

/* TEXTOS OCULTOS */
[data-tooltip] {
    position: relative;
    font-weight: bold;
}
  
[data-tooltip]:after {
    display: none;
    position: absolute;
    z-index: 40;
    top: -5px;
    padding: 5px;
    border-radius: 3px;
    left: calc(100% + 5px);
    content: attr(data-tooltip);
    white-space: nowrap;
    background-color: #e8dbcf;
    color: black;
}
  
[data-tooltip]:hover:after {
    display: block;
}

/*MODAL MODAL */
.modal_bg {
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99; /* Sit on top */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    display: none;
}
  
.modal {
    position: absolute;
    width: 80%;
    height: auto;
    background-color: white;
    z-index: 100;
    top:50px;
    left:50%;
    margin-left: -40%;
    padding: 10px;
}

#close {
    position: absolute;
    z-index: 101;
    top:50px;
    color: rgb(255, 255, 255);
    margin-left:85%;
    font-size: 28px;
    font-weight: bold;
    padding: 5px;
    background-color: rgb(105, 101, 101);
}

#close:hover, #close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
  
/* CORES FUNDO CIDADES */
[class^="cid_"],
[class*=" cid_"] {
    color: #1f1f1f !important;
    font-weight: 600;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}

[class^="cid_"] a,
[class*=" cid_"] a {
    color: #ced4da !important;
}



/* ASA NORTE */
.cid_1 {
    background-color: #32c800b6 !important;
}
/* ASA SUL */
.cid_2 {
    background-color: rgba(0, 204, 255, 0.698) !important;
}
/* BANDEIRANTE */
.cid_4 {
    background-color: rgba(204, 153, 51, 0.722) !important;
}
/* ´ÁGUAS CLARAS */
.cid_3 {
    background-color: rgba(102, 102, 204, 0.712) !important;
}
/* VALPARAISO */
.cid_21 {
    background-color: #6a6464bd !important;
}
/* luziania 19 */
.cid_19 {
    background-color: rgba(0, 153, 153, 0.078) !important;
}
/* TAGUATINGA */
.cid_16 {
    background-color: rgba(255, 153, 0, 0.78) !important;
}
/* vicente pires */
.cid_17 {
    background-color: rgba(114, 6, 113, 0.712) !important;
    
}
/* cid_ceilandia */
.cid_5 {
    background-color: rgba(255, 153, 255, 0.74) !important;
}
/* cid_guara */
.cid_7 {
    background-color: rgba(139, 38, 139, 0.712) !important;
}
/* cid_gama */
.cid_6 {
    background-color: rgba(243, 243, 81, 0.778) !important;
   
}
/* sudoeste */
.cid_15 {
    background-color: #cdff37c4 !important;
}
/* SAMAMBAIA */
.cid_11 {
    background-color: rgba(243, 243, 81, 0.778) !important;
}
/* sobradinho */
.cid_14 {
    background-color: rgba(6, 106, 24, 0.696) !important;
}
/* riacho-fundo */
.cid_10 {
    background-color: #ff944dbc !important;
}
/* recanto */
.cid_9 {
    background-color: rgba(255, 102, 102, 0.676) !important;
}

/* planaltina 8*/
.cid_8 {
    background-color: rgba(219, 255, 102, 0.7) !important;
}
/* SANTA MARIA 12*/
.cid_12{
    background-color: #c5c50fb5 !important;
}
/* saosebastiao */
.cid_13 {
	background-color: #9D3CFF !important;
}
/* ÁGUAS LINDAS */
.cid_18 {
	background-color: #CC66FF !important;
}

/* 25	Goiânia	GO */
.cid_25 {
	background-color: #ff6673 !important;
}
/* 26	Anápolis	GO */
.cid_26 {
	background-color: #ff6666 !important;
}
/* 27	Novo Gama	GO */
.cid_27 {
	background-color: #7366ff !important;
}
/* 28	Formosa	GO */
.cid_28 {
	background-color: #5f859e !important;
}
/* 29	Brazlândia	DF */
.cid_29 {
	background-color: #0c6746 !important;
}
/* 30	Planaltina	GO */
.cid_30 {
	background-color: #b1f21a !important;
}
/* 31	Jardim Ingá	GO */
.cid_31 {
	background-color: #bba60ab5 !important;
}
/* 32	Céu Azul	GO */
.cid_32 {
	background-color: #ffdb66c8 !important;
}
/* 33	Ocidental	GO */
.cid_33 {
	background-color: #66ff66b4 !important;
}
/* 34	St. Antônio Do Descoberto	GO */
.cid_34 {
	background-color: #6694ffca !important;
}
/* 35	Arniqueiras	DF */
.cid_35 {
	background-color: #66fcffb5 !important;
}
/* 36	Paranoá	DF */
.cid_36 {
	background-color: #CC66FF !important;
}

/* Fundos mais escuros: texto claro para melhor contraste */
.cid_7,
.cid_13,
.cid_17,
.cid_18,
.cid_21,
.cid_27,
.cid_29,
.cid_34 {
    color: #f8f8f8 !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
}



.oculto {
    display: none;
}

.botao_embaixo {
    align-self: flex-end !important;
    width: 100%;
   
}

.font_small {
    font-size: 13px !important;
}
/* 
.base_grafico {
    margin-top: 2em;
    padding: 0.63em;
    width: 100%;
    height: 300px;
    background-color: #9d938b;
    border-radius: 5px;
}

.grafico_nome {
    text-align: left;
    
    width: 15%;
    height: 20px;
    background-color: #eb6028;
    float: left;
}

.grafico_valor {
    width: 85%;
    height: 20px;
    background-color: #284feb;
    
    float: right;
}

.nome_centralizado {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.tamanho_barra {
    background-color: #000000;
    height: 14px;
    color: #fff;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 12px;
} */

/* Adicionar ao final do cpf_cadastro_listar.php, antes do </style> */

.confirmation-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.confirmation-box h3 {
    color: #dc3545;
    margin-bottom: 20px;
}

.cpf-info {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
    text-align: left;
}

.cpf-info p {
    margin: 8px 0;
    font-size: 14px;
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.current-info {
    background: #e8f4fd;
    border: 1px solid #b8daff;
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
}

.current-info p {
    margin: 5px 0;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #495057;
}

.form-group input {
    width: 200px;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #6c757d;
    font-size: 12px;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.status-ativo {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-inativo {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.btn-small {
    padding: 4px 8px;
    font-size: 12px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    margin: 0 2px;
}

.btn-red {
    background: #dc3545;
    color: white;
}

.btn-blue {
    background: #007bff;
    color: white;
}

.btn-green {
    background: #28a745;
    color: white;
}

.btn-gray {
    background: #6c757d;
    color: white;
}

.action-buttons {
    display: flex;
    gap: 5px;
    justify-content: center;
}

@media (max-width:950px) {
    .container {
        width: 100vw;
        padding:5px;
    }

    .search-area input {
        width: 100px;
    }
   
    .logo img {
    height: 50px;
    padding-right: 10px;
    }

    .capa {
            max-width: 145px;
            min-width: 120px;
        }
        article {
            margin-right: 3px;
        }
        article .card_title {
            font-size: 0.9rem;
        }

        article .card_posted_at,  
        article .card_code {
            font-size: .80rem;
        }
    
}

/* responsivo para 740px*/
@media (max-width:740px) {
   
    .container {
        flex-direction: column;
        padding:0;
    }

    .widget{
        padding-left: 5px;
    }
    .banner_headline {
        margin: 10px 0;
        width: 100%;
        padding: 14px 12px;
        border-radius: 12px;
        gap: 10px;
        box-sizing: border-box;
    }

    .banner_kicker {
        font-size: 10px;
        letter-spacing: 0.07em;
    }

    .banner_headline h1 {
        font-size: 24px;
        line-height: 1.18;
    }

    .banner_subtitle {
        font-size: 14px;
        line-height: 1.4;
    }

    .banner_trust {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        margin-top: 0;
    }

    .trust_item {
        min-width: 0;
        padding: 6px 7px;
        border-radius: 8px; 
       ;
    }

    .trust_number {
        font-size: 14px;
    }

    .trust_label {
        font-size: 9px;
        line-height: 1.1;
        letter-spacing: 0.04em;
    }

    .banner_cta {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        width: 100%;
    }

    .banner_cta_primary,
    .banner_cta_secondary {
        justify-content: center;
        width: 100%;
        padding: 7px 6px;
        font-size: 11px;
        gap: 5px;
    }

    .banner_options {
        height: auto;
        flex-direction: column;
    }

    #geral section {
        padding: 5px;
        
    }
    #geral aside {
        padding: 5px;
    }

    .tabela {
    overflow: hidden;
    overflow-x: scroll;
    width: 98vw;

    }

    .footer_menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .footer_menu .fm_3 {
        grid-column: 1 / -1;
    }
    .footer_area {
        flex-direction: column;
        padding: 8px 2px 0;
        gap: 6px;
    }

    .fm_1, .fm_2, .fm_3 {
        padding: 6px;
    }

    .footer_areaitem {
        border-radius: 6px;
    }

    footer .widget {
        padding: 5px 6px;
    }

    footer .widget_title {
        margin-bottom: 4px;
    }

    footer .widget_boby {
        margin-top: 2px;
    }
    
    .footer_copy {
        text-align: center;
        padding: 6px 8px;
        height: auto;
        line-height: 1.35;
    }

    header .container {
        flex-direction: row;
    }

    nav ul {
        
        flex-direction: column;
        display: none;
        align-items: stretch;
        position: absolute;
        left: auto;
        right: 0;
        margin-left: 1.5vw;
        margin-right: 1.5vw; 
         width: 97vw; 
        max-width: 97vw;
        transform: none;
        box-sizing: border-box;
        
        background-color: rgba(203, 198, 198, .9);
        border: 2px solid rgba(255, 255, 255, 0.35);
        border-radius: 8px;
        box-shadow: 0 12px 28px rgba(31, 41, 51, 0.22);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
      
    }

    nav > ul > li {
        width: 100%;
        border-left: 0;
        
    }

    nav > ul > li + li {
        border-left: 0;
        border-top: 1px solid rgba(64, 67, 72, 0.18);
    }
    
    nav ul ul {
        visibility: hidden;
        position: absolute;
        opacity: 0;
        width: calc(100% - 16px);
        max-width: calc(100% - 16px);
        box-sizing: border-box;
        margin: 4px 8px 8px;
        padding: 6px;
        border-radius: 8px;
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.5) 0%, rgba(236, 226, 216, 0.75) 100%);
        border: 1px solid rgba(150, 120, 92, 0.25);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
        transition: opacity .25s ease;
    }

    nav ul li.submenu-open > ul {
        position: relative;
        top: 0;
        opacity: 1;
    }

    nav ul ul li{ 
        
        box-sizing: border-box;
        padding-left: 0;
        height: auto;
        margin-bottom: 4px;
        border-left: 3px solid rgba(235, 96, 40, 0.55);
        border-radius: 6px;
        background-color: rgba(255, 255, 255, 0.55);
        width: 95%;
        
    }

    nav ul ul li:last-child {
        margin-bottom: 0;
    }

    nav ul ul li a {
        padding: 8px 10px;
        line-height: 1.25;
        text-transform: none;
        font-size: 1rem;
        color: #4a3d34;
    }

    nav ul ul li a:hover {
        background-color: rgba(235, 96, 40, 0.16);
        color: #2f2924;
        border-radius: 6px;
    }

 /* fim Sub menu */

    header {
        height: auto;
    }

    .logo {
        padding-top: 10px;
        padding-left: 10px;
    }



    .menuMobile{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        position: relative;
        z-index: 140;
    }
    .fraseMobile{
        display: inline;
    }
    
    .formulario {
        padding: 20px;
        width:48%;
    }

    .search-area input {
        width: 50%;
    }

    .search-area input {
        width: 50%;
        height: 2em;
        margin: 5%;
        background-color: #fff;
    }

    .capa {
        max-width: 130px;
        min-width: 110px;
    }
    article {
        margin-right: 3px;
    }
    article .card_title {
        font-size: 0.9rem;
    }

    article .card_posted_at,  
    article .card_code {
        font-size: .80rem;
    }

   

    .search1{
        width: 44%;
        margin: 1%;
        padding: 1%;
    }

    #anunciante .contato-botoes {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        align-items: center;
    }

    #anunciante .contato-botoes .btn-ligar,
    #anunciante .contato-botoes .btn-whatsapp,
    #anunciante .contato-botoes .btn-telegram {
        margin: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .widget_boby.flex {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }



}

/* Responsivo 600 px */
@media (max-width: 600px) {
.formulario {
    margin: 0px;
}
}

/* Responsivo 500 px */
@media (max-width: 500px) {
    .slider {
        width: 450px;
        height: 450px;
    }
    .widget{
        padding: 2px;
    }

    .widget_title_text {
        
        font-size: 1.02em;
        
    }
    .search-area input {
        width: 90%;
        height: 2em;
        margin: 5%;
        /* background-color: #efecec; */
    }
    #anunciante section {
        padding: 2px;
    }
    form {
   
        margin-right: 2px;
        margin-left: 2px;
    }
    .formulario {
        min-width: 300px ;
        padding: 2px;
        margin-top: 10px;

   
    }
    .formulario label {
        font-size: 16px;
       
    }
    .search label, fieldset {
        font-size: 16px;
        width:100%;
    }
    .formulario select {
        font-size:16px;
    }
    .capa {
        
        min-width: 100px;
    }

    .widget_title {
        margin-top: 2px;
        margin-bottom: 2px;
        
    }
    .search1{
        width: 100%;
    }

    .footer_menu {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .footer_menu .fm_3 {
        grid-column: auto;
    }

    #comentario {
        padding-left: 4px;
        padding-right: 4px;
        margin-bottom: 20px;
    }

    .comentario_block {
        border-radius: 8px;
        padding: 12px;
    }

    #comentario .comentario_aviso {
        padding: 10px;
    }

    #comentario .comentario_regras_lista {
        padding-left: 18px;
    }

   
  
    
}
/* Responsivo 450 px */
 @media (max-width: 450px) {
    .slider {
        width: 350px;
        height: 350px;
    }
    .formulario {
        width: 100%;
    }
    .widget_boby.flex {
        display: flex;
        flex-wrap: wrap;
        gap: 2px;
    }

    .capa {
        min-width: 25%;
        padding: 3px;
        
    }

      article {
        flex: 1;
        /* margin-right: 0.5rem */
    }

    article .card_title {
        font-size: 0.9rem;
        padding-bottom: 5px;
    }



    article .card_resume {
        font-size: .8rem;
    }

    article .card_posted_at,
    article .card_code {
        font-size: .78rem;
        width: 95%;
        height: 1rem; 
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
        color: var(--text-primary)
    }

    article .card_posted_at {
        margin-right: 0;
    }


    article .card_data {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .slider {
        width: 300px;
        height: 300px;
    }
  

    .resultSearh {
        overflow:auto; 
    }
    
   
    .widget_boby {
        margin-top: 5px;
    }



    
}

/* Responsivo 350 px */
@media (max-width:350px) {
    .capa {
        min-width: 25%;
    }
    article .card_tumbnail img{
        max-width: none; 
        height: 100%;
        border-radius: 5px;
    }
    article {
        flex: 1;
        margin-right: 0.2rem;
    }


    article .card_title {
        font-size: 0.78rem;
    }

    article .card_posted_at {
        font-size: .64rem;
    }

    article .card_code {
        font-size: .64rem;
    }

}
