/* Variáveis de cor */
:root {
    --primary-color: #5d0020;
    --primary-hover: #4a001a;
    --primary-rgb: 93, 0, 32;
    --accent-color: #ac7d3e;
    --accent-rgb: 172, 125, 62;
}

/* Estilos gerais */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

/* Estilos do Banner */
.banner-slide {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.banner-description {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    .banner-content {
        padding: 1rem;
    }
}

/* Estilos da navbar */
.navbar {
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
    backdrop-filter: none;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    position: relative;
    z-index: 1;
    margin-right: 3rem;
    margin-left: 20px;
}

.navbar-brand img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    max-height: 50px;
}

.navbar-collapse {
    flex-grow: 1;
}

.navbar-nav {
    padding: 0;
    margin: 0;
    margin-right: 50px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--accent-color) !important;
    font-weight: 500;
    padding: 0.5rem 1.5rem !important;
    margin: 0;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
    background-color: var(--primary-color);
}

.navbar.scrolled .nav-link::after {
    background-color: var(--primary-color);
}

.navbar.scrolled .nav-link {
    color: var(--accent-color) !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background-color: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    transition: background-image 0.3s ease;
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Estilos do Banner Container */
.banner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}

.banner-content {
    width: 100%;
}

/* Estilos das Colunas */
.row {
    display: flex;
    margin: 0 -15px;
    flex-wrap: wrap;
    align-items: center;
}

.col-search {
    flex: 0 0 35%;
    max-width: 35%;
    padding: 0 15px;
}

.col-info {
    flex: 0 0 65%;
    max-width: 65%;
    padding: 0 15px;
}

/* Estilos da Seção de Busca */
.search-box {
    background-color: rgba(255, 255, 255, 0.95);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    padding: 25px;
}

.search-box h2 {
    color: #333;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.75rem;
}

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

.form-select, .form-control {
    border: 2px solid #dee2e6;
    padding: 12px 15px;
    font-size: 1rem;
    border-radius: 4px;
    height: auto;
}

.form-select:focus, .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.15);
}

.form-label {
    font-weight: 500;
    margin-bottom: 10px;
    color: #495057;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 20px;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(var(--primary-rgb), 0.2);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Estilos da Seção de Informações */
.info-box {
    background-color: transparent;
    height: 100%;
    display: flex;
    flex-direction: row;
    padding: 25px;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Bloco 1 - Oportunidades */
.opportunities-block {
    display: none;
    /* Oculta o bloco superior */
}

/* Bloco 2 - Tipos de Imóveis */
.property-types-block {
    background-color: transparent;
    padding: 25px;
    margin-top: 0;
    flex: 1;
}

.property-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 400px;
}

.type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
}

.type-icon {
    width: 60px;
    height: 60px;
    background-color: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.type-icon i {
    font-size: 2rem;
    color: #fff;
}

.type-name {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 500;
    color: #fff;
}

.type-count {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
}

.type-item:hover .type-icon {
    background-color: transparent;
    transform: translateY(-5px);
}

/* Estilos do Banner */
#bannerCarousel {
    position: relative;
    z-index: 1;
}

.banner-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: absolute;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    top: 20%;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 3;
}

/* Estilos do Jumbotron */
.jumbotron {
    position: relative;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-hover));
    min-height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0 0 0;
}

.jumbotron::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-20deg) translateX(50%);
}

.jumbotron .container {
    position: relative;
    z-index: 2;
}

.jumbotron .row {
    position: relative;
    align-items: flex-start;
}

.jumbotron .col-lg-7 {
    padding-top: 40px;
}

.jumbotron h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.jumbotron .lead {
    font-size: 1.25rem;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.jumbotron .col-lg-5 {
    position: relative;
    min-height: 450px;
}

.jumbotron .img-fluid {
    position: absolute;
    right: 0;
    bottom: -80px;
    max-height: 600px;
    width: auto;
}

.specialist-card {
    background: #fff;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.specialist-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.specialist-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.specialist-text i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.specialist-text a:hover {
    text-decoration: none;
}

.specialist-text a:hover span {
    color: var(--primary-color) !important;
}

.specialist-text a:hover i {
    transform: scale(1.1);
}

.specialist-text i,
.specialist-text span {
    transition: all 0.3s ease;
}

.specialist-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.specialist-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.specialist-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Ajustes responsivos */
@media (max-width: 1200px) {
    .jumbotron h2 {
        font-size: 3rem;
    }

    .jumbotron .img-fluid {
        max-height: 550px;
    }
}

@media (max-width: 991.98px) {
    .jumbotron {
        padding: 60px 0;
        min-height: auto;
    }

    .jumbotron .col-lg-7 {
        padding-top: 0;
    }

    .jumbotron h2 {
        font-size: 2.5rem;
    }

    .jumbotron .lead {
        font-size: 1.1rem;
    }

    .jumbotron .col-lg-5 {
        min-height: auto;
        margin-top: 40px;
    }

    .jumbotron .img-fluid {
        position: relative;
        bottom: 0;
        max-height: 400px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .jumbotron {
        padding: 40px 0;
    }

    .jumbotron h2 {
        font-size: 2rem;
    }

    .jumbotron .img-fluid {
        max-height: 350px;
    }

    .specialist-card {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 576px) {
    .jumbotron {
        padding: 30px 0;
    }

    .jumbotron h2 {
        font-size: 1.75rem;
    }

    .jumbotron .lead {
        font-size: 1rem;
    }

    .jumbotron .img-fluid {
        max-height: 300px;
    }
}

/* Estilos dos Leilões em Destaque */
.featured-auctions {
    background-color: #f8f9fa;
}

.featured-auctions h2 {
    color: #333;
    font-weight: 600;
}

.auction-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.auction-card:hover {
    transform: translateY(-5px);
}

.auction-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.auction-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auction-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
}

.auction-badges .badge {
    font-size: 0.75rem;
    padding: 0.5em 0.8em;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #dc3545;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.auction-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.auction-title h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.location i {
    color: var(--primary-color);
}

.address {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.auction-dates {
    margin-bottom: 1.5rem;
}

.date-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.date-item .label {
    color: #666;
}

.date-item .value {
    color: var(--primary-color);
    font-weight: 500;
}

.btn-outline-primary {
    margin-top: auto;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Indicadores de slide */
.btn.btn-sm.rounded-circle {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
}

.btn.btn-sm.btn-outline-primary.rounded-circle {
    background-color: transparent;
    border: 2px solid var(--primary-color);
}

/* Ajustes responsivos para os cards */
@media (max-width: 991.98px) {
    .auction-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .auction-image {
        padding-top: 66.67%;
    }

    .auction-content {
        padding: 1.25rem;
    }

    .description {
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 576px) {
    .auction-badges .badge {
        font-size: 0.7rem;
    }

    .discount-badge {
        font-size: 0.7rem;
    }

    .auction-title h3 {
        font-size: 1rem;
    }

    .date-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* Estilos da Listagem de Imóveis */
.property-listing {
    background-color: #f8f9fa;
}

.filters-wrapper {
    transition: all 0.3s ease;
}

.filters-wrapper:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.property-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-image {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
}

.property-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
}

.property-badges .badge {
    font-size: 0.75rem;
    padding: 0.5em 0.8em;
}

.property-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.property-content .location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.property-content .location i {
    color: var(--primary-color);
}

.property-content .address {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.property-content .description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-info {
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.info-item .label {
    color: #666;
    display: block;
    margin-bottom: 0.25rem;
}

.info-item .value {
    color: var(--primary-color);
    font-weight: 500;
}

/* Estilos da Paginação */
.pagination {
    gap: 0.5rem;
}

.page-link {
    border: none;
    padding: 0.5rem 0.75rem;
    color: #666;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: #e9ecef;
    color: #0066cc;
}

.page-item.active .page-link {
    background-color: #0066cc;
    color: #fff;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    padding: 0.5rem;
    font-size: 1.1rem;
    line-height: 1;
}

/* Ajustes responsivos */
@media (max-width: 991.98px) {
    .property-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .filters-wrapper {
        padding: 1rem !important;
    }

    .property-content {
        padding: 1.25rem;
    }

    .property-content h3 {
        font-size: 1.1rem;
    }

    .pagination {
        gap: 0.25rem;
    }
}

@media (max-width: 576px) {
    .property-badges .badge {
        font-size: 0.7rem;
    }

    .property-content h3 {
        font-size: 1rem;
    }

    .info-item {
        flex-direction: column;
    }

    .page-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }
}

/* Estilos da Paginação Moderna */
.pagination-modern {
    --bs-pagination-active-bg: var(--primary-color);
    --bs-pagination-active-border-color: var(--primary-color);
}

.pagination-modern .page-link {
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 14px;
    border: 1px solid #dee2e6;
    margin: 0;
    transition: all 0.3s ease;
    color: #6c757d;
    background-color: #fff;
}

.pagination-modern .page-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pagination-modern .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(var(--primary-rgb), 0.2);
}

.pagination-modern .page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
    z-index: 3;
}

.pagination-modern .page-item:not(:first-child) .page-link {
    margin-left: 0;
}

.pagination-modern .bi {
    font-size: 12px;
}

@media (max-width: 576px) {
    .pagination-modern .page-link {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .pagination-modern .bi {
        font-size: 10px;
    }
}

/* Estilos do Footer */
.footer {
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color) !important;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer p,
.footer a,
.footer li {
    color: rgba(255, 255, 255, 0.8);
}

.footer-brand img {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-brand img:hover {
    transform: scale(1.05);
}

.social-links a {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0.8;
    color: #fff !important;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: var(--accent-color) !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color) !important;
    transform: translateX(5px);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-links li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-links .bi {
    font-size: 12px;
    margin-right: 8px;
    transition: all 0.3s ease;
    color: var(--accent-color) !important;
}

.footer-contact li {
    transition: all 0.3s ease;
}

.footer-contact li:hover {
    transform: translateX(5px);
}

.footer-contact .bi {
    font-size: 1.2rem;
    color: var(--accent-color) !important;
}

.sub-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.sub-footer a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.sub-footer a:hover {
    color: var(--accent-color) !important;
}

@media (max-width: 991.98px) {
    .footer {
        padding-bottom: 2rem;
    }

    .footer-links,
    .footer-contact {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .social-links {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-brand {
        text-align: center;
    }

    .sub-footer {
        text-align: center;
    }

    .sub-footer .text-md-end {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 3rem 0;
    }

    .footer h5 {
        margin-top: 1.5rem;
    }

    .social-links a {
        font-size: 1.25rem;
    }
}

/* Responsividade */
@media (max-width: 991.98px) {
    .property-types-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .type-item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .info-box {
        padding: 20px;
    }

    .opportunities-block,
    .property-types-block {
        padding: 20px;
    }

    .opportunities-block h2 {
        font-size: 1.5rem;
    }

    .type-icon {
        width: 90px;
        height: 90px;
    }

    .type-icon i {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .info-box {
        padding: 15px;
    }

    .opportunities-block,
    .property-types-block {
        padding: 15px;
    }

    .property-types-grid {
        gap: 15px;
    }

    .type-icon {
        width: 80px;
        height: 80px;
    }

    .type-icon i {
        font-size: 2.5rem;
    }

    .type-name {
        font-size: 0.9rem;
    }

    .type-count {
        font-size: 1.4rem;
    }
}

.welcome-message {
    margin-bottom: 2rem;
    text-align: center;
    flex: 1;
}

.welcome-message h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.welcome-message .divider {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    margin: 0 auto 2rem auto;
    opacity: 0.7;
}

.welcome-message p {
    font-size: 1.25rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* Ajustes responsivos para a mensagem de boas-vindas */
@media (max-width: 991.98px) {
    .welcome-message h1 {
        font-size: 2.8rem;
    }

    .welcome-message p {
        font-size: 1.1rem;
    }

    .welcome-message .divider {
        width: 120px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .welcome-message h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .welcome-message p {
        font-size: 1rem;
    }

    .welcome-message .divider {
        width: 100px;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 576px) {
    .welcome-message h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .welcome-message p {
        font-size: 0.9rem;
    }

    .welcome-message .divider {
        width: 80px;
        margin-bottom: 1rem;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-hover);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .back-to-top i {
        font-size: 20px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 30px;
    left: auto;
    transform: none;
    z-index: 1020;
    text-align: center;
    color: #fff;
    animation: bounce 2s infinite;
    pointer-events: none;
}

.scroll-indicator .text {
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: #fff;
    border-radius: 2px;
    animation: scroll 2s infinite;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 20px;
        right: 20px;
    }

    .scroll-indicator .text {
        font-size: 0.8rem;
    }

    .scroll-indicator .mouse {
        width: 22px;
        height: 34px;
    }
}

@media (max-width: 576px) {
    .scroll-indicator {
        bottom: 15px;
        right: 15px;
    }

    .scroll-indicator .text {
        font-size: 0.75rem;
    }

    .scroll-indicator .mouse {
        width: 20px;
        height: 30px;
    }
}

/* Estilos do Carousel */
.carousel-indicators {
    z-index: 1025;
    margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    margin: 0 6px;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 1025;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel:hover .carousel-control-prev {
    left: 30px;
    opacity: 1;
}

.carousel:hover .carousel-control-next {
    right: 30px;
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Ajustes responsivos para o carousel */
@media (max-width: 768px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }

    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

@media (max-width: 576px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }
}

/* Banner da Página */
.page-banner {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    text-align: center;
    margin-bottom: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.banner-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 15px 0 0;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 1px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
    position: relative;
}

.breadcrumb-item {
    color: #ac7d3e !important;
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-item a {
    color: #ac7d3e !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item.active {
    color: #ac7d3e !important;
    opacity: 0.8;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #ac7d3e !important;
    content: ">";
    padding: 0 10px;
    opacity: 0.8;
}

.breadcrumb-item a:hover {
    color: #ac7d3e !important;
    opacity: 0.7;
}

.banner {
    position: relative;
    min-height: 30px;
    display: flex;
    align-items: center;
    margin-top: 120px;
    padding: 0;
}

.banner .container {
    display: flex;
    align-items: center;
    min-height: 30px;
}

.banner .breadcrumb {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.banner .breadcrumb-item,
.banner .breadcrumb-item+.breadcrumb-item::before {
    color: #ac7d3e;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 30px;
}

.banner .breadcrumb-item.active {
    color: #ac7d3e;
    opacity: 0.8;
    font-weight: 700;
}

.banner .breadcrumb-item a {
    color: #ac7d3e;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 30px;
    padding: 0 3px;
    font-weight: 700;
}

.banner .breadcrumb-item a:hover {
    color: #ac7d3e;
    opacity: 0.7;
}

.banner .breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    font-size: 1.3rem;
    padding: 0 0.8rem;
    color: #ac7d3e;
    opacity: 0.8;
    line-height: 30px;
    font-weight: 700;
}

.banner h1 {
    color: var(--accent-color);
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    text-align: left;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin-top: 15px;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .banner {
        min-height: 30px;
    }

    .banner .breadcrumb-item,
    .banner .breadcrumb-item+.breadcrumb-item::before {
        font-size: 1rem;
        line-height: 30px;
    }
}

@media (max-width: 576px) {
    .banner {
        min-height: 30px;
    }

    .banner .breadcrumb-item,
    .banner .breadcrumb-item+.breadcrumb-item::before {
        font-size: 0.95rem;
        line-height: 30px;
    }
}

.contact-info {
    padding: 2rem !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info .d-flex {
    margin-bottom: 1.5rem !important;
}

.contact-info .contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info .contact-icon i {
    font-size: 1.8rem !important;
}

.contact-info h5.h6 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem !important;
}

.contact-info .text-muted {
    font-size: 1rem;
    line-height: 1.4;
}

.contact-info .social-links {
    text-align: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info .social-links a {
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-info .social-links a:hover {
    color: var(--primary-color) !important;
    opacity: 0.8;
    transform: translateY(-3px);
}

/* Estilos da Seção Quem Somos */
.about-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.about-image {
    margin-bottom: 30px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.social-media-box {
    background-color: transparent;
    border-radius: 15px;
    padding: 1.5rem;
}

.social-media-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.social-media-box .social-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.social-media-box .social-links .social-icon {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-media-box .social-links .social-icon i {
    display: inline-block;
    font-size: 2rem;
    color: var(--primary-color);
}

.social-media-box .social-links .social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.about-content {
    padding: 20px 0;
}

.about-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.content-text {
    max-width: 90%;
}

.about-content .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--primary-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 40px 0;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .content-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 30px 0;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content .lead {
        font-size: 1rem;
    }

    .social-media-box .social-links {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 20px 0;
    }

    .about-content h2 {
        font-size: 1.6rem;
    }

    .social-media-box h3 {
        font-size: 1.2rem;
    }

    .social-media-box .social-links {
        gap: 1rem;
    }
}

/* Seção de Busca Horizontal */
.search-section-horizontal {
    position: relative;
    overflow: hidden;
}

.search-section-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
}

.search-form-horizontal {
    position: relative;
    z-index: 2;
}

.search-form-horizontal .form-select {
    background-color: #fff;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.search-form-horizontal .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(172, 125, 62, 0.25);
    background-color: #fff;
}

.search-form-horizontal .btn-warning {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4a853 100%);
    border: none;
    color: #fff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-form-horizontal .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
    background: linear-gradient(135deg, #d4a853 0%, var(--accent-color) 100%);
}

@media (max-width: 768px) {
    .search-form-horizontal .row {
        gap: 1rem;
    }
    
    .search-form-horizontal .col-md-3 {
        margin-bottom: 1rem;
    }
}

/* Estilos aprimorados para o banner */
.banner-title-enhanced {
    font-size: 4.5rem;
    font-weight: 700; /* reduzido de 900 */
    margin-bottom: 0;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    letter-spacing: -1px;
    text-transform: uppercase;
}

.banner-separator {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, transparent 15%, var(--primary-color) 30%, var(--primary-color) 70%, transparent 85%, transparent 100%);
    margin: 4rem auto;
    border-radius: 1.5px;
    opacity: 0.6;
    box-shadow: none;
}

.banner-description-enhanced {
    font-size: 1.8rem;
    font-weight: 300; /* reduzido de 400 */
    margin-bottom: 0;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Subir um pouco o bloco de texto do banner */
.banner-slide .banner-content { 
    margin-top: -30px; 
}

@media (max-width: 768px) {
    .banner-slide .banner-content { 
        margin-top: -15px; 
    }
}

@media (max-width: 768px) {
    .banner-title-enhanced {
        font-size: 3rem;
        letter-spacing: 0;
    }
    
    .banner-description-enhanced {
        font-size: 1.4rem;
    }
    
    .banner-separator {
        width: 80px;
        height: 4px;
        margin: 2.5rem auto;
    }
}

@media (max-width: 480px) {
    .banner-title-enhanced {
        font-size: 2.2rem;
    }
    
    .banner-description-enhanced {
        font-size: 1.2rem;
    }
    
    .banner-separator {
        width: 60px;
        height: 3px;
        margin: 2rem auto;
    }
}


