/* 
    Created on : 09/02/2016, 14:13:33
    Author     : robsonvleite
*/

.content{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/*HEADER*/
.main_header_top {
    border-top: 5px solid var(--colorMain);
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.main_header_top header{
    float: left;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
}

.main_header_top header h1{
    font-size: 1.8em;
}

.main_header_top nav{
    float: right;
    padding: 15px 0px;
}

.main_header_top nav ul{
    margin-top: 0px;
    display: flex;
    gap: 10px;
    width: 100%;
}

.main_header_top nav li{
    display: inline-block;
    position: relative;
}

.main_header_top nav li a{
    display: inline-block;
    padding: 10px;
    color: var(--colorMain);
    text-decoration: none;
    transition: all 0.3s ease;
}

.main_header_top nav .login{
    background: var(--colorMain);
}

.main_header_top nav li:hover,
.main_header_top nav li a:hover{
    background: rgba(0,0,0,0.05);
    border-radius: 4px;
}

.main_header_top nav li:hover .sub,
.main_header_top nav li a:hover .sub{
    display: block;
}

.main_header_top nav .sub{
    display: none;
    z-index: 99;
    position: absolute;
    width: 200px;
    background: #fff;
    margin: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.main_header_top nav .sub li,
.main_header_top nav .sub li a{
    color: var(--colorMain);
    display: block;
    width: 100%;
}

.main_header_top nav .sub li a:hover{
    background: rgba(0,0,0,0.05);
    color: var(--colorMain);
}

/*HEADER*/
.main_header{
    background: var(--colorMainGradient);
    padding: 15px 0;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.main_header header{
    float: left;
    text-align: center;
    color: #fff;
}

.main_header header h1{
    font-size: 1.8em;
}

.main_header nav{
    float: left;
    width: 100%;
}

.main_header nav ul{
    margin-top: 0px;
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.main_header nav li{
    display: inline-block;
    position: relative;
}

.main_header nav li a{
    display: inline-block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
    border-radius: 4px;
}

.main_header nav .login{
    background: var(--colorMain);
}

.main_header nav li:hover > a,
.main_header nav li a:hover{
    background: rgba(255,255,255,0.2);
}

.main_header nav li:hover .sub{
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.main_header nav .sub{
    display: none;
    z-index: 99;
    position: absolute;
    width: 220px;
    background: #fff;
    margin: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    padding: 5px 0;
}

.main_header nav .sub li,
.main_header nav .sub li a{
    color: #333;
    display: block;
    width: 100%;
    text-align: left;
}

.main_header nav .sub li a{
    padding: 10px 15px;
    font-size: 0.95em;
}

.main_header nav .sub li a:hover{
    background: #f5f5f5;
    color: var(--colorMain);
}

.site_title{
    display: inline-block;
    width: 1px;
    position: absolute;
    text-indent: -9999px;
}

/*CONTENT*/
.main_content{
    padding: 60px 0;
    background: #f9f9f9;
}

/*HOME*/
.flex {
    display: flex;
    flex-wrap: wrap;
}

.post_left{
    width: 50%;
}

.post_right{
    width: 50%;
    text-align: left;
    padding: 0px 30px !important;
}

.main_blog{
    float: right;
    width: 67%;
}

.main_blog_post{
    background: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main_blog_post:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.main_blog_post img{
    width: 100%;
    height: auto;
    display: block;
}

.main_blog_post header{
    padding: 30px;
    border: 1px solid #eee;
    border-top: none;
}

.main_blog_post h1{
    font-weight: 600;
    font-size: 1.8em;
    margin-bottom: 15px;
    line-height: 1.3;
}

.main_blog_post a{
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main_blog_post a:hover{
    color: var(--colorMain);
    text-decoration: none;
}

.main_blog_post .tagline{
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

.main_sidebar{
    float: left;
    width: 30%;
    padding: 0 30px 30px 0;
}

.main_sidebar_widget{
    display: block;
    width: 100%;
    margin-bottom: 40px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.main_sidebar_widget > h1{
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 25px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    color: #333;
    position: relative;
}

.main_sidebar_widget > h1 span{
    border-bottom: 2px solid var(--colorSecondary);
    padding-bottom: 10px;
    margin-bottom: -2px;
    display: inline-block;
}

.main_sidebar_widget a{
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main_sidebar_widget a:hover{
    color: var(--colorMain);
    text-decoration: none;
    padding-left: 5px;
}

.main_sidebar_widget ul{
    display: block;
    width: 100%;
}

.main_sidebar_widget ul li{
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95em;
    font-weight: 400;
}

.main_sidebar_widget ul li:last-child {
    border-bottom: none;
}

.main_sidebar_widget_post{
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    align-items: flex-start;
}

.main_sidebar_widget_post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.main_sidebar_widget_post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.main_sidebar_widget_post header {
    flex: 1;
}

.main_sidebar_widget_post h1{
    font-size: 1em;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.main_sidebar_widget_post .tagline{
    font-size: 0.85em;
    color: #777;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search_form{
    width: 100%;
    margin-bottom: 30px;
    padding: 25px;
    background: #fff;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search_form input{
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.search_form input:focus {
    border-color: var(--colorMain);
    outline: none;
}

.search_form button{
    text-transform: uppercase;
    font-size: 0.9em;
    padding: 12px 25px;
    background: var(--colorSecondary);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.search_form button:hover {
    background: var(--colorSecondaryHover);
}

/*PAGINATOR*/
.paginator{
    display: block;
    width: 100%;
    text-align: center;
    padding: 40px 0;
}

.paginator li{
    display: inline-block;
    font-size: 1em;
    margin: 0 3px;
}

.paginator li a,
.paginator li span{
    display: block;
    padding: 10px 16px;
    background: #fff;
    color: #555;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.paginator li a:hover{
    background: var(--colorMain);
    color: #fff;
    transform: translateY(-2px);
}

.paginator li span{
    background: var(--colorMain);
    color: #fff;
    font-weight: bold;
}


/*FOOTER*/
.main_footer{
    background: #222;
    padding: 50px 0;
    color: #aaa;
    font-size: 0.9em;
    text-align: center;
    border-top: 5px solid var(--colorMain);
}

.main_footer .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main_footer .left, .main_footer .right {
    text-align: left;
}

.main_footer .right {
    text-align: right;
}

/*SINGLE*/
.post_single{
    padding: 60px 0;
    background: #f9f9f9;
}

.post_single .cover{
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
}

.post_single .fb-comments{
    display: block;
    width: 100%;
    margin-top: 40px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.post_single .main_sidebar{
    float: right;
    padding: 0 0 0 30px;
}

.post_single .left_content{
    float: left;
    width: 67%;
}

.post_content{
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.post_content > h1{
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.post_content .tagline{
    font-size: 1.2em;
    font-weight: 300;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.single_post_more{
    float: left;
    width: 100%;
    padding: 30px;
    background: #f0f0f0;
    border-radius: 8px;
    margin-top: 40px;
}

.single_post_more header{
    margin-bottom: 20px;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.single_post_more header h1 {
    font-size: 1.4em;
    font-weight: 600;
}

.single_post_more_post{
    float: left;
    width: 48%;
    margin-right: 4%;
    margin-bottom: 20px;
}

.single_post_more_post:nth-child(2n) {
    margin-right: 0;
}

.single_post_more_post img {
    width: 100%;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.single_post_more_post:hover img{
    opacity: 0.8;
}


/*404*/
.not_found{
    padding: 80px 0;
    text-align: center;
}

.not_found header{
    width: 800px;
    max-width: 100%;
    margin: 0 auto 40px auto;
}

.not_found header h1{
    font-size: 4em;
    font-weight: 700;
    color: var(--colorMain);
    margin-bottom: 20px;
}

.not_found header p{
    font-size: 1.2em;
    font-weight: 300;
    color: #555;
}

.not_fount_post{
    display: inline-block;
    width: 45%;
    padding: 20px;
    margin: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left;
}

.not_fount_post h1{
    margin-top: 10px;
    font-weight: 600;
    font-size: 1.2em;
}

.not_fount_post a{
    font-weight: 600;
    color: var(--colorSecondary);
    text-decoration: none;
}

.not_fount_post a:hover{
    text-decoration: underline;
}

.not_found .search_form{
    display: block;
    padding: 0;
    float: none;
    background: none;    
    text-align: center;
    box-shadow: none;
    margin-top: 30px;
}

.not_found .search_form input{
    width: 400px;
    max-width: 100%;
    padding: 15px;
}

.page_header {
    background: var(--colorAuxGradient);
    color: var(--color-text-on-clear-bg);
    padding: 60px 0;
    text-align: center;
}

.page_header h1 {
    font-family: var(--fontTema);
    font-size: 2.5em;
    font-weight: 800;
    color: var(--color-text-on-clear-bg);
    margin: 0 0 10px 0;
}

.page_header p {
    font-size: 1.1em;
    opacity: 0.9;
}

.border_left {
    border-left: none;
}
.border_left h1,
.border_left p{
    margin-left: 0;
}

.page_single{
    padding: 0 0 60px 0;
}

.page_single .content{
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    margin-top: -40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
    overflow-x: hidden; /* Adicionado para evitar rolagem horizontal */
}

.page_single header{
    padding: 30px;
    text-align: left;
    background: var(--colorSecondaryGradient);
    color: #fff !important;
    border-radius: 8px 8px 0 0;
    margin: -40px -40px 30px -40px;
}
.page_single header h1{
     color: #fff !important;
     font-size: 2em;
 }

.wc_slides{
    margin: 0px auto;
}

.link-inscricao-evento {
    margin: 30px 0;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 80em){
    .content{
        width: 90%;
        margin: 0 auto;
    }
    
    .main_blog{
        float: none;
        display: block;
        width: 100%;
    }

    .main_sidebar{
        float: none;
        display: block;
        width: 100%;
        padding: 0;
        margin-top: 40px;
    }

    .main_sidebar_widget{
        display: inline-block;
        width: 48%;
        margin-right: 2%;
        vertical-align: top;
    }

    .main_sidebar_widget:nth-child(2n) {
        margin-right: 0;
    }

    .main_sidebar_widget_most{
        width: 100%;
    }

    .main_sidebar_widget_most .main_sidebar_widget_post{
        display: inline-block;
        width: 48%;
        margin-right: 2%;
        vertical-align: top;
    }

    .main_sidebar_widget_most .main_sidebar_widget_post:nth-child(2n) {
        margin-right: 0;
    }

    .left_content{
        float: none;
        display: block;
        width: 100% !important;
        margin-bottom: 30px;
    }

    .post_single .main_sidebar {
        padding: 0;
    }
}

@media (max-width: 64em){
    .content{
        width: 94%;
        margin: 0 auto;
    }

    .main_header header{
        float: none;
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .main_header nav{
        float: none;
        display: block;
        width: 100%;
        text-align: center;
    }

    .link-inscricao-evento {
        flex-direction: column;
    }

    .main_footer .content {
        flex-direction: column;
        text-align: center;
    }

    .main_footer .left, .main_footer .right {
        text-align: center;
        margin-bottom: 15px;
    }
}

@media (max-width: 50em){
    .main_sidebar_widget,
    .main_sidebar_widget_most .main_sidebar_widget_post{
        padding: 20px;
        width: 100%;
        margin-right: 0;
    }

    .not_fount_post{
        width: 100%;
        padding: 20px;
        margin: 10px 0;
    }

    .link-inscricao-evento {
        flex-direction: column;
    }

    .main_header_top header {
        justify-content: center;
        float: none;
    }

    .main_header_top nav {
        float: none;
        text-align: center;
    }

    .main_header_top nav ul {
        justify-content: center;
    }
}

/*COOKIE POLICY*/
#cookiePolicy {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: auto;
    width: 350px;
    background-color: #fff;
    z-index: 99999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
}

#cookiePolicy .container {
    padding: 20px;
    text-align: left;
    color: #333;
}

#cookiePolicy span {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 0.9em;
    font-weight: 400;
    display: block;
    line-height: 1.5;
}

#cookiePolicy span a {
    color: var(--colorMain);
    font-weight: 600;
    text-decoration: none;
}

#cookiePolicy .footer_optout_btn {
    padding: 10px 20px;
    font-size: 1em;
    font-weight: 600;
    background: var(--colorMain);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

#cookiePolicy .cta{
    text-transform: none;
    padding: 10px;
    margin-top: 10px;
}

.b-contain *,
.b-contain *::before,
.b-contain *::after {
    box-sizing: content-box !important;
}

.b-contain input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.b-contain span {
    line-height: 1.5;
    font-size: 1rem;
    font-family: inherit;
}

.b-contain {
    display: table;
    position: relative;
    padding-left: 2rem;
    cursor: pointer;
    margin-bottom: 0.4rem;
}

.b-contain input[type="checkbox"] ~ .b-input {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.25rem;
    width: 1.25rem;
    background: #f1f5f9;
    transition: background 250ms;
    border: 1px solid #94a3b8;
    border-radius: 0.2rem;
}

.b-contain input[type="radio"] ~ .b-input {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.25rem;
    width: 1.25rem;
    background: #f1f5f9;
    transition: background 250ms;
    border: 1px solid #94a3b8;
    border-radius: 3rem;
}

.b-contain input[type="checkbox"] ~ .b-input::after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 0.3rem;
    height: 0.6rem;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transition: background 250ms;
    transform: rotate(45deg);
}

.b-contain input[type="radio"] ~ .b-input::after {
    content: "";
    position: absolute;
    display: none;
    left: 4px;
    top: 4px;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 3rem;
    background: #ffffff;
    transition: background 250ms;
}

.b-contain input[type="checkbox"]:disabled ~ .b-input::after {
    border-color: #ffffff;
}

.b-contain input:checked ~ .b-input::after {
    display: block;
}

.b-contain:hover input[type="checkbox"]:not([disabled]) ~ .b-input,
.b-contain input[type="checkbox"]:focus ~ .b-input {
    background: #e2e8f0;
    border-color: #64748b;
}

.b-contain:hover input[type="radio"]:not([disabled]) ~ .b-input,
.b-contain input[type="radio"]:focus ~ .b-input {
    background: #e2e8f0;
    border-color: #64748b;
}

.b-contain input:focus ~ .b-input {
    box-shadow: 0 0 0 2px #60a5fa;
}

.b-contain input[type="checkbox"]:checked ~ .b-input {
    background: #3b82f6;
    border-color: #1d4ed8;
}

.b-contain input[type="radio"]:checked ~ .b-input {
    background: #3b82f6;
    border-color: #1d4ed8;
}

.b-contain input[type="checkbox"]:disabled ~ .b-input,
.b-contain input[type="radio"]:disabled ~ .b-input {
    opacity: 0.5;
    cursor: not-allowed;
}

.b-contain input[type="radio"]:disabled ~ .b-input::after {
    background: #ffffff;
}

.b-contain:hover input[type="checkbox"]:not([disabled]):checked ~ .b-input,
.b-contain input[type="checkbox"]:checked:focus ~ .b-input {
    background: #2563eb;
    border-color: #1e40af;
}

.b-contain:hover input[type="radio"]:not([disabled]):checked ~ .b-input,
.b-contain input[type="radio"]:checked:focus ~ .b-input {
    background: #2563eb;
    border-color: #1e40af;
}

.wc_inscricao_form label{
    font-size: 1.1em;
    margin-bottom: 10px;
    display: block;
}
.mtop-10 {
    margin-top: 10px;
}

.payment-btn {
    border: 2px solid #00A887;
    background: #fff;
    color: #00A887;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    min-width: 110px;
    text-transform: uppercase;
}

.payment-btn.selected, .payment-btn:focus {
    background: #00A887;
    color: #fff;
    border-color: #00835d;
    box-shadow: 0 4px 10px rgba(0,168,135,0.3);
}

.payment-btn:hover {
    background: #e6fcf4;
    transform: translateY(-2px);
}

/***********************************
########## DEFAULT MODAL ###########
***********************************/
.ajax_modal{ position: fixed; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 1001; backdrop-filter: blur(2px); }
.ajax_modal_box{ position: relative; top: 50%; transform: translateY(-50%); display: block; width: 600px; max-width: 90%; max-height: 90vh; margin: 0 auto; background: #fff; overflow-x:hidden; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.ajax_modal_box::-webkit-scrollbar-track{ -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1); background-color: #f5f5f5; }
.ajax_modal_box::-webkit-scrollbar{ width: 8px; background-color: #f5f5f5; }
.ajax_modal_box::-webkit-scrollbar-thumb{ background-color: #ccc; border-radius: 4px; }
.ajax_modal_box b{font-weight: bold; color: #000;}
.ajax_modal_head { position: sticky; width: 100%; padding: 0 20px; border-bottom: 1px solid #eee; height: 60px; line-height: 60px; top: 0; left: 0; z-index: 103; background: #fff; display: flex; justify-content: space-between; align-items: center; }
.ajax_modal_close {position: relative; width: 30px; height: 30px; line-height: 30px; color: #666; padding: 0; font-size: 1.2em; border: none; cursor: pointer; background: transparent; transition: color 0.3s; }
.ajax_modal_close:hover{color: #F45563;}
.ajax_modal_title{ font-size: 1.2em; font-weight: 600; color: #333; }
.ajax_modal_content {position: relative; padding: 25px;}
.ajax_modal_content .form_load { width: 1px; height: 1px; position: fixed; top: 0; left: 0; }
.ajax_modal_content p{font-size: 1em;font-weight: 400; color: #555; margin-top: 15px; line-height: 1.6;}
.ajax_modal_content p:first-child{margin-top: 0;}
.ajax_modal_content > a{ color: var(--colorMain); font-weight: 600; text-decoration: none;}
.ajax_modal_content > a:hover{text-decoration: underline;}
.ajax_modal_content label {margin: 15px 0;display: block;}
.ajax_modal_content label::after {content: '';display: block;clear: both;}
.ajax_modal_content .legend { font-size: .9em; color: #666; font-weight: 500; margin-bottom: 5px; display: block; text-transform:inherit;}
.ajax_modal_content .legend a { margin-left:0;color: var(--colorMain);text-decoration: none; }
.ajax_modal_content .legend a:hover { text-decoration:underline; }
.ajax_modal_content textarea { max-height:200px;max-width:100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; width: 100%; }
.ajax_modal_content .trigger { display: block; pointer-events: none; margin-top: 10px; }

.ajax_modal_footer{ position: sticky; bottom: 0; left: 0; width: 100%; padding: 15px 20px; background: #f9f9f9; border-top: 1px solid #eee; text-align: right; font-size: 0.9em; color: #666; border-radius: 0 0 8px 8px; }
.ajax_modal_footer a {cursor:pointer;font-weight: 500; text-decoration: none; color:#555;margin-top:5px; margin-right: 15px;}
.ajax_modal_footer a:hover{text-decoration: underline; color:#333;}
.ajax_modal_footer .btn { font-size: 1em;letter-spacing: .5px;font-weight: 600; padding: 10px 20px; border-radius: 4px; }
.ajax_modal_footer .form_load { display: inline-block !important; }

.link-inscricao-evento span {
    font-size: 1.2em;
    padding: 15px;
}

.btn-group-valor {
    display: flex;
    gap: 12px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.btn-valor {
    padding: 12px 24px;
    border: 1px solid #007bff;
    background: #fff;
    color: #007bff;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
    font-size: 1rem;
    font-weight: 500;
}

.btn-valor.selected,
.btn-valor:focus {
    background: #007bff;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,123,255,0.3);
}

.group_prod {
    background: #f0f0f0;
    padding: 10px;
    font-weight: 700;
    font-size: 1.1em;
    border-radius: 4px;
    margin-top: 15px;
    color: #333;
}

.wc_prove {
    padding: 15px 0;
}

/* CONTACT PAGE STYLES */
.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-info-box h2 {
    font-size: 1.6em;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-box p {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.contact-list li {
    margin-bottom: 20px;
    font-size: 1em;
    color: #555;
    line-height: 1.5;
}

.contact-list li strong {
    color: var(--colorMain);
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-form-card h2 {
    font-size: 1.8em;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-info-box, .contact-form-card {
        margin-bottom: 30px;
    }
}

/* GRUPO DE ORAÇÃO CARD STYLES */
.grupo-oracao-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    flex-basis: calc(33.333% - 14px);
}

.grupo-oracao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.grupo-oracao-card header {
    background: var(--colorMainGradient);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px 8px 0 0;
}

.grupo-oracao-card header h3 {
    font-size: 1.3em;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.grupo-oracao-card header .cidade {
    font-size: 0.9em;
    opacity: 0.8;
    font-weight: 500;
}

.grupo-oracao-body {
    padding: 20px;
    flex-grow: 1;
}

.grupo-oracao-body p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.grupo-oracao-body p strong {
    color: #333;
    margin-right: 8px;
    min-width: 70px;
}

.grupo-oracao-footer {
    padding: 0 20px 20px 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.grupo-oracao-footer .btn-sm {
    padding: 8px 15px;
    font-size: 0.85em;
    font-weight: 600;
}

@media (max-width: 64em) {
    .grupo-oracao-card {
        flex-basis: calc(50% - 10px);
    }
}

@media (max-width: 50em) {
    .grupo-oracao-card {
        flex-basis: 100%;
    }
}
