/* index.css */

/* ============================= */
/* HERO */
/* ============================= */

.hero-home {
    position: relative;
    height: 825px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* ============================= */
/* OWL FIX */
/* ============================= */

.hero-home__banner {
    position: absolute;
    inset: 0;
}

/* ============================= */
/* ITEM */
/* ============================= */

.hero-home__banner .item {
    width: 100%;
    height: 825px;
    position: relative;
}

.hero-home__banner .item img {
    width: 100% !important;
    height: 825px;
    object-fit: cover;
}

.hero-home__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: #0000005e;
    pointer-events: none;
}

.hero-home__content {
    position: absolute;
    padding: 0 !important;
    width: 1200px !important;
    height: 185px;
    left: 50%;
    top: 50%;
    margin-left: -600px !important;
    margin-top: -45px !important;
    pointer-events: none;
    z-index: 2;
}

.hero-home__title-wrapper {
    border-left: 5px solid var(--color-gold);
    padding-left: 20px;
    max-width: 600px;
}

.hero-home__title {
    font-size: 55px;
    font-weight: 300;
    letter-spacing: 4px;
}

.hero-home__title .text-gold {
    color: var(--color-gold);
    font-weight: 700;
}

.hero-home__subtitle {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 10px;
}

.hero-home__subtitle span {
    font-size: 50px;
}

.hero-home__desc {
    font-size: 18px;
}

/* About Section */
.about-home {
    padding: 80px 0;
    background-color: #fff;
}

.about-home__container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-home__text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-home__desc {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.about-home__desc p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.about-home .btn {
    align-self: flex-end;
}

.mt-30 {
    margin-top: 30px;
}

.about-home__img-col {
    flex: 1;
    position: relative;
}

.about-home__img-wrapper {
    position: relative;
    padding: 0;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-home__img-wrapper::before {
    content: '';
    width: 460px;
    height: 715px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -357px;
    margin-left: -230px;
    background-color: var(--color-gold);
    z-index: -1;
}

.about-home__img-wrapper::after {
    content: '';
    width: 480px;
    height: 680px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -340px;
    margin-left: -240px;
    background-color: var(--color-dark-gray);
    z-index: -2;
}

.about-home__img {
    width: 100%;
    height: auto;
    display: block;
}

.badge-24h {
    position: absolute;
    top: 40px;
    left: -20px;
    width: 120px;
    text-align: center;
    overflow: hidden;
    border-radius: 4px;
}

/* Parte de cima (preta) */
.badge-24h__top {
    background-color: #1a1a1a;
    color: #c9a96e;
    /* dourado claro */
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 0;
}

/* Parte de baixo (dourada) */
.badge-24h__bottom {
    background-color: var(--color-gold);
    color: #fff;
    font-size: 50px;
    font-weight: 800;
    padding: 10px 0;
    line-height: 1;
}

/* Conveniências */
.conveniencias {
    background-color: #1a1a1a;
    padding: 80px 0;
    color: #fff;
}

.conveniencias__header {
    text-align: center;
    margin-bottom: 50px;
}

.conveniencias__title {
    font-size: 36px;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 10px;
}

.conveniencias__subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.conveniencias__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 50px;
}

/* Cards */
.conv-card {
    background: transparent;
    padding: 0;
    text-align: center;
}

.conv-card__img-box {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 10px 10px 0 0;
}

.conv-card__img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.conv-card:hover .conv-card__img {
    transform: scale(1.05);
}

.conv-card__title {
    color: var(--color-gold);
    font-size: 17px;
    margin-bottom: 15px;
    display: inline-block;
}

.conv-card__title::after {
    content: '';
    display: block;
    width: 95px;
    height: 1px;
    background-color: var(--color-gold);
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

.conv-card__text p {
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.conv-card__text p:last-child {
    margin-bottom: 0;
}

.text-bold {
    font-weight: 700;
}

.conveniencias__action {
    text-align: center;
    margin-top: 50px;
}

.conveniencias__action .btn {
    font-size: 18px;
    padding-left: 50px;
    padding-right: 50px;
}

/* Acomodações */
.acomodacoes {
    padding: 80px 0;
    background-color: #fff;
}

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

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

.acomodacoes__header {
    margin-bottom: 50px;
}

.acomodacoes__title {
    font-size: 20px;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.acomodacoes__title::after {
    content: '';
    display: block;
    position: relative;
    width: 250px;
    height: 1px;
    background-color: #27221D;
    margin: 15px auto 0;
}

.acomodacoes__header .section-subtitle {
    font-size: 30px;
    font-weight: 400;
}

.acomodacoes__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.acomodacao-card {
    position: relative;
    overflow: visible;
    transition: transform 0.3s ease;
}

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

.acomodacao-card__img {
    width: 100%;
    vertical-align: bottom;
    display: block;
}

.acomodacao-card__content {
    background-color: var(--color-gold);
    color: #fff;
    padding: 25px 20px 30px;
    text-align: center;
    position: relative;
}

.acomodacao-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark-gray);
}

.acomodacao-card__desc {
    font-size: 11px;
    margin-bottom: 0px;
    line-height: 1.5;
}

.btn-detalhes {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: var(--color-dark-gray);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s;
    white-space: nowrap;
}

.btn-detalhes:hover {
    background-color: #000;
}

/* Feiras e Locais */
.feiras-locais {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.feiras-locais__container {
    display: flex;
    gap: 60px;
}

.feiras-col {
    flex: 6;
}

.locais-col {
    flex: 4;
}

.feiras-locais__title {
    font-size: 30px;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.feiras-locais__subtitle {
    font-size: 25px;
    margin-bottom: 80px;
}

.feira-item {
    display: flex;
    height: 150px;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.feira-item__img-box {
    width: 250px;
    height: 150px;
    flex-shrink: 0;
}

.feira-item__img-box img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
}

.feira-item__title {
    color: var(--color-gold);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feira-item__desc {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

.mt-20 {
    margin-top: 20px;
}

.locais-col__desc {
    font-size: 20px;
    color: #666;
    margin-bottom: 80px;
}

.locais-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}