body {
    font-family: 'Nunito' !important;
    background: #e9e9e9;
}

:root {
    --primary: #f46a23;
}

.btn-primary {
    background-color: var(--primary);
    border: none;
}

.cat-card {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    color: white;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--primary);
}

/* Estilos baseados em image_f061e5.png */
.btn-pill {
    border-radius: 50px !important;
    padding: 0.3rem 1.3rem !important;
    font-weight: 500;
}

.btn-pill2 {
    border-radius: 50px !important;
    padding: 0.3rem 1.3rem !important;
    font-weight: 500;
}

.btn-outline-primary-custom {
    border: 2px solid #f46a23;
    color: #f46a23;
}

.btn-outline-secondary-custom {
    border: 2px solid #0d6efd;
    color: #0d6efd;
}

.btn-pill:hover {
    background: #f46a23;
    color: #fff;
}

.btn-pill2:hover {
    background: #0d6efd;
    color: #fff;
}

.btn-primary-custom {
    background-color: #0d6efd;
    color: white;
}

.search-bar-label {
    font-weight: bold;
    color: #555;
    align-self: center;
}

.cat-card {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Alinha o texto no topo */
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

/* Moldura interna */
.cat-card::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid #ff7043;
    /* Cor da moldura da sua imagem */
    border-radius: 8px;
    pointer-events: none;
}

.cat-card span {
    color: white;
    font-weight: bold;
    line-height: 1.2;
    z-index: 1;
}

/* Estilo para o rótulo abaixo do card */
.cat-label {
    background: #f2f2f2;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    transition: color 0.3s ease;
}

/* Efeito ao passar o mouse: o rótulo ganha destaque */
a:hover .cat-label {
    color: #ff7043;
    /* Cor da sua moldura */
}

/* Opcional: Efeito na imagem ao passar o mouse */
a:hover .cat-card {
    transform: scale(1.02);
}

/* HEADER */

.navbar-home {

    background: linear-gradient(135deg, #ff6b00, #ff8a00);

    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;

    padding-top: 25px;
    padding-bottom: 25px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);

}

.logo-home {

    display: inline-block;

}

.logo-home img {

    height: 72px;

    transition: .3s;

}

.logo-home:hover img {

    transform: scale(1.05);

}


/* BOTÕES */

.btn-anunciar {

    background: #FFF;

    color: #ff6b00;

    font-weight: 700;

    border-radius: 50px;

    padding: 14px 28px;

    transition: .25s;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);

}

.btn-anunciar:hover {

    background: #fff4ec;

    color: #ff6b00;

    transform: translateY(-3px);

}


.btn-painel {

    background: rgba(255, 255, 255, .15);

    color: #FFF;

    border: 2px solid rgba(255, 255, 255, .35);

    backdrop-filter: blur(8px);

    border-radius: 50px;

    padding: 14px 28px;

    font-weight: 700;

    transition: .25s;

}

.btn-painel:hover {

    background: #FFF;

    color: #ff6b00;

    transform: translateY(-3px);

}


/* RESPONSIVO */

@media(max-width:768px) {

    .logo-home img {

        height: 58px;

    }

    .btn-anunciar,
    .btn-painel {

        width: 100%;

    }

    .navbar-home {

        padding-top: 25px;
        padding-bottom: 25px;

    }

}

/* HERO */

.hero-home {

    margin-bottom: 45px;

}

.hero-banner {

    background-image: url(../images/banner.png);
    background-size: cover;
    background-position: center;

    height: 430px;


    overflow: hidden;

    box-shadow: 0 25px 50px rgba(0, 0, 0, .18);

    position: relative;

}

.hero-overlay {

    width: 100%;
    height: 100%;

    background: linear-gradient(90deg,
            rgba(0, 0, 0, .72),
            rgba(0, 0, 0, .25));

    display: flex;
    align-items: center;

}

.hero-content {

    max-width: 560px;
    color: #FFF;

}

.hero-badge {

    display: inline-block;

    background: #ff6b00;

    color: #FFF;

    padding: 8px 18px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;

}

.hero-content h1 {

    font-size: 46px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 18px;

}

.hero-content p {

    font-size: 18px;

    opacity: .95;

    margin-bottom: 35px;

}

.hero-info {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

}

.hero-info div {

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, .15);

    padding: 12px 18px;

    border-radius: 18px;

    font-weight: 600;

}

.hero-info i {

    color: #ff8a00;

    margin-right: 8px;

}

/* ========================= */
/* BOX DE FILTROS */
/* ========================= */

.search-box {

    background: #FFF;

    position: relative;

    z-index: 10;

    border-radius: 28px;

    padding: 40px;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, .12);

}

.search-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 15px;

}

.search-header h2 {

    font-size: 30px;

    font-weight: 700;

    margin-bottom: 6px;

    color: #222;

}

.search-header h2 i {

    color: #ff6b00;

    margin-right: 10px;

}

.search-header span {

    color: #777;

    font-size: 15px;

}

.search-box label {

    font-weight: 600;

    margin-bottom: 8px;

    color: #444;

}

.search-box .form-select {

    height: 58px;

    border-radius: 16px;

    border: 1px solid #ddd;

    padding-left: 18px;

    font-size: 15px;

    transition: .25s;

    box-shadow: none;

}

.search-box .form-select:hover {

    border-color: #ff6b00;

}

.search-box .form-select:focus {

    border-color: #ff6b00;

    box-shadow: 0 0 0 .2rem rgba(255, 107, 0, .18);

}

.btn-search {

    background: linear-gradient(135deg, #ff6b00, #ff8c1a);

    color: #FFF;

    font-size: 18px;

    font-weight: 700;

    padding: 16px 55px;

    border-radius: 50px;

    border: none;

    transition: .3s;

    box-shadow: 0 12px 25px rgba(255, 107, 0, .35);

}

.btn-search:hover {

    transform: translateY(-3px);

    color: #FFF;

    box-shadow: 0 18px 35px rgba(255, 107, 0, .45);

}

.search-title {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 35px;

}

.search-icon {

    width: 62px;

    height: 62px;

    background: linear-gradient(135deg, #ff6b00, #ff8c1a);

    border-radius: 18px;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #FFF;

    font-size: 24px;

    box-shadow: 0 12px 25px rgba(255, 107, 0, .35);

}

.search-title h2 {

    margin: 0;

    font-size: 30px;

    font-weight: 700;

    color: #222;

}

.search-title span {

    color: #777;

    font-size: 15px;

}

.header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    width: 100%;
    /* importante */
    margin: 0 auto;
    /* importante */
}

.header-buttons {
    display: flex;
    gap: 15px;
}

/* Mobile */
@media (max-width:768px) {
    .header-top {
        flex-direction: column;
    }

    .header-buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .header-buttons .btn {
        width: auto;
        max-width: none;
    }
}

@media (max-width:768px) {

    .hero-banner {
        background-image: url(../images/banner_mobile.png);
        background-size: cover;
        background-position: center;
    }


    .hero-home {
        margin-top: 20px;
        margin-bottom: 25px;
    }

    .hero-banner {
        height: auto;
        min-height: 320px;
        border-radius: 18px;
    }

    .hero-overlay {
        align-items: flex-end;
        height: 500px;
    }

    .hero-content {
        max-width: 100%;
        padding: 30px 20px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-info {
        gap: 10px;
    }

    .hero-info div {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

.whatsapp-help {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 12px;

    background: #fff;
    color: #333;
    text-decoration: none;

    padding: 12px 18px;
    border-radius: 60px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);

    transition: .25s;
    animation: floatIn .6s ease;
}

.whatsapp-help:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .25);
    color: #333;
}

.help-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 30px;

    animation: pulse 2s infinite;
}

.help-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.help-text strong {
    font-size: 15px;
}

.help-text small {
    color: #777;
    font-size: 13px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width:768px) {

    .whatsapp-help {
        right: 15px;
        bottom: 15px;
        padding: 10px;
        border-radius: 50%;
    }

    .help-text {
        display: none;
    }

    .help-icon {
        width: 56px;
        height: 56px;
        font-size: 32px;
    }

}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.badge i {
    font-size: 12px;
}

.badge-venda {
    background: #28a77d;
}

.badge-aluguel {
    background: #0d6efd;
}

.badge-temporada {
    background: #fd2f14;
}

/* Header / Navegação */
header {
    background-color: #e34234;
    background-image: linear-gradient(147deg, #e34234 0%, #ff7518 74%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: -1px;
    width: 2rem;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.9;
}

nav a:hover {
    opacity: 1;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-header {
    background-color: #a3e635;
    color: #111111;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.cta-header:hover {
    background-color: #bef264;
}

/* Seção Hero */
.hero {
    background-color: #e34234;
    background-image: linear-gradient(147deg, #e34234 0%, #ff7518 74%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    min-height: calc(100vh - 80px);
    position: relative;
}

.hero-content {
    max-width: 580px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.85;
    margin-bottom: 35px;
    max-width: 500px;
}

/* Botões de Ação */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-white {
    background-color: #ffffff;
    color: #111111;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: border-color 0.2s;
}

.btn-outline:hover {
    border-color: #ffffff;
}

/* Imagem à Direita */
.hero-image {
    position: absolute;
    right: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
    /* Garante que a imagem não bloqueie cliques */
}

.hero-image img {
    height: 100%;
    object-fit: contain;
}

/* Indicadores de Carousel */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.dot.active {
    background-color: #ffffff;
}

/* --- RESPONSIVIDADE (MEDIA QUERIES) --- */

/* Tablets e telas menores */
@media (max-width: 1024px) {
    header {
        padding: 20px;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-image {
        height: 70%;
        opacity: 0.4;
        /* Deixa a imagem mais suave para não atrapalhar o texto em telas médias */
    }
}

/* Celulares */
@media (max-width: 768px) {
    header nav {
        display: none;
        /* Em um site real, aqui entraria um menu hambúrguer */
    }

    .hero {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 30px 20px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-white,
    .btn-outline {
        text-align: center;
        width: 100%;
    }

    /* No mobile, jogamos a imagem para ocupar o espaço inferior centralizado */
    .hero-image {
        position: relative;
        height: 350px;
        width: 100%;
        justify-content: center;
        opacity: 1;
        margin-top: 20px;
    }

    .hero-image img {
        height: 100%;
        max-width: 100%;
    }

    .carousel-indicators {
        position: relative;
        margin-top: 20px;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
    }
}

/* Estilos customizados para os círculos sobrepostos e padrão de pontos */
.overlap-circles {
    display: flex;
    align-items: center;
    overflow-x: auto;
    padding: 2rem 1rem;
}

.brand-circle {
    width: 13rem;
    height: 13rem;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10;
}

.brand-circle:hover {
    transform: scale(1.05);
    z-index: 30;
}

.brand-circle:not(:first-child) {
    margin-left: -3rem;
}

.dots-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.4;
    z-index: 0;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #94a3b8;
}

.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    padding: 40px 8%;
    background:linear-gradient(135deg,#f34b25,#ff7b16);
    overflow:hidden;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    right:-250px;
    top:-250px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
}

.hero::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    left:-180px;
    bottom:-180px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
}

.hero-content{
    flex:1;
    color:#fff;
    z-index:2;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    margin-bottom:30px;
    font-size:.95rem;
}

.hero h1{
    font-size:3rem;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
}

.hero h1 span{
    color:#fff4d6;
}

.hero-description{
    max-width:620px;
    font-size:1.15rem;
    line-height:1.8;
    opacity:.95;
    margin-bottom:35px;
}

.hero-benefits{
    display:grid;
    grid-template-columns:repeat(2,minmax(220px,1fr));
    gap:18px;
    margin-bottom:40px;
}

.benefit{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:1rem;
}

.benefit i{
    color:#fff;
    font-size:20px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-bottom:45px;
}

.btn-primary{
    background:#fff;
    color:#ff5a17;
    padding:18px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-outline{
    border:2px solid rgba(255,255,255,.5);
    color:#fff;
    padding:18px 34px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.btn-outline:hover{
    background:#fff;
    color:#ff5a17;
}

.hero-stats{
    display:flex;
    gap:50px;
}

.stat h3{
    font-size:2rem;
    margin:0;
}

.stat p{
    margin:5px 0 0;
    opacity:.8;
}

.hero-image{
    flex:1;
    position:relative;
    justify-content:center;
    align-items:center;
}

.hero-glow{
    position:absolute;
    width:500px;
    height:500px;
    background:#fff;
    opacity:.12;
    filter:blur(120px);
    border-radius:50%;
}

.hero-image img{
    width:100%;
    max-width:650px;
    position:relative;
    z-index:2;
    filter:drop-shadow(0 40px 70px rgba(0,0,0,.35));
}

.floating-card{
    position:absolute;
    display:flex;
    gap:15px;
    align-items:center;
    background:#fff;
    border-radius:16px;
    padding:15px 18px;
    box-shadow:0 20px 40px rgba(0,0,0,.18);
    z-index:5;
    animation:float 5s ease-in-out infinite;
}

.floating-card i{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:#fff3ec;
    color:#ff5a17;
}

.card-1{
    top:40px;
    left:-10px;
}

.card-2{
    bottom:100px;
    right:-20px;
    animation-delay:1s;
}

.card-3{
    bottom:20px;
    left:50px;
    animation-delay:2s;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}

@media(max-width:991px){

    .hero h1{
        font-size:2.8rem;
    }

    .hero-benefits{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-stats{
        justify-content:space-between;
        gap:20px;
    }

}

.hero-numbers{
    margin-top:-55px;
}

.numbers-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.number-card{
    padding:22px 16px;
    border-radius:18px;
}

.icon{
    width:58px;
    height:58px;
    font-size:22px;
    border-radius:14px;
    margin-bottom:15px;
}

.number-card h3{
    font-size:2rem;
    margin-bottom:5px;
}

.number-card p{
    font-size:.95rem;
}

.number-card{
    background:#fff;
    border-radius:22px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    transition:.35s;
    animation:floatCard 5s ease-in-out infinite;
    position:relative;
    overflow:hidden;
}

.number-card:nth-child(2){
    animation-delay:.4s;
}

.number-card:nth-child(3){
    animation-delay:.8s;
}

.number-card:nth-child(4){
    animation-delay:1.2s;
}

.number-card:nth-child(5){
    animation-delay:1.6s;
}

.number-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#ff5b17,#ff8b17);
}

.number-card:hover{
    transform:translateY(-12px);
    box-shadow:0 35px 60px rgba(255,91,23,.18);
}

.icon{
    width:75px;
    height:75px;
    margin:auto;
    margin-bottom:20px;
    border-radius:18px;
    background:linear-gradient(135deg,#ff5b17,#ff8b17);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    transition:.3s;
}

.number-card:hover .icon{
    transform:rotate(-8deg) scale(1.12);
}

.number-card h3{
    font-size:2.2rem;
    font-weight:800;
    color:#222;
    margin-bottom:8px;
}

.number-card p{
    color:#666;
    margin:0;
    font-size:1rem;
}

.destaque{
    background:linear-gradient(135deg,#ff5b17,#ff7d1a);
    color:#fff;
}

.destaque h3,
.destaque p{
    color:#fff;
}

.destaque .icon{
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(15px);
}

@keyframes floatCard{

    0%,100%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

}

@media (max-width: 991px){

    .hero-numbers{
        margin-top:30px;
    }

    .numbers-grid{
        grid-template-columns:repeat(3,1fr);
        gap:12px;
    }

    .number-card{
        padding:18px 10px;
        border-radius:14px;
    }

    .icon{
        width:46px;
        height:46px;
        font-size:18px;
        margin-bottom:12px;
        border-radius:12px;
    }

    .number-card h3{
        font-size:1.4rem;
        margin-bottom:3px;
    }

    .number-card p{
        font-size:.8rem;
        line-height:1.3;
    }

}