@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: 'MADE Coachella';
    src: url('./fonts/MADE Coachella Light.otf') format('opentype');
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'MADE Coachella';
    src: url('./fonts/MADE Coachella Regular.otf') format('opentype');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'MADE Coachella';
    src: url('./fonts/MADE Coachella Medium.otf') format('opentype');
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'MADE Coachella';
    src: url('./fonts/MADE Coachella Bold.otf') format('opentype');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'MADE Coachella';
    src: url('./fonts/MADE Coachella Black.otf') format('opentype');
    font-style: normal;
    font-weight: 900;
    font-display: swap;
}



:root {
    --font-family: "Inter", sans-serif;
    /* --font-family-title: "Abril Fatface", serif; */
    --font-family-title: "MADE Coachella", serif;

    --color-primary: #B55434;
    --color-secondary: #595B3C;
    --color-button1: #B9BC8A;

    --color-base-1: #1D1D1B;
    --color-base-2: #EEEADA;  
    --color-base-3: #F6F5EE;

    --text-color: #000000;
}

img {
    max-width: 100%;
    object-fit: cover;
}

p {
    font-size: 20px;
    margin: 0;
}

.background {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.title {
    font-size: 50px;
    color: var(--color-secondary);
    font-family: var(--font-family-title);
    font-weight: 600;
}
.subtitle,
.subtitle > * {
    font-size: 32px;
    line-height: 120%;
    font-weight: normal;
    letter-spacing: 0;
}

.tag-title {
    font-size: 14px;
    display: flex;
}
.tag-title::before {
    content: "";
    width: 100px;
    border-bottom: 1px solid var(--color-primary);
}
.tag-title.text-white::before {
    border-color: white;
}

.w-fit { 
    width: fit-content; 
}
.max-600 { 
    max-width: 600px;
}
.rounded-custom { 
    border-radius: 30px;
}
.shadow-custom {
    box-shadow: 0 18px 12px 3px rgba(0, 0, 0, 0.1) ;
}

.bg-secondary-custom { 
    background-color: var(--color-secondary); 
}

.btn {
    padding: 5px 30px;
    text-decoration: none;
    border-radius: 0;
    font-size: 22px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}
.btn-primary-custom {
    background: var(--color-button1);
    color: var(--color-base-1);
    border: 2px solid var(--color-button1);
}
.btn-primary-custom:hover {
    background: transparent;
    border: 2px solid var(--color-button1);

}
.btn-secondary-custom {
    background: var(--color-secondary);
    color: var(--color-base-2);
}

.btn-light-custom {
    background: var(--color-base-2);
    color: var(--color-secondary);
    font-size: 18px;
}
@media (max-width: 475px) {
    .btn {
        white-space: wrap;
    }
}

input[type=radio] {
    display: none;
}

/** CARROSSEL */
.owl-controls.clickable {
    position: absolute;
    width: 100%;
    bottom: 10px;
    left: 0;
}
.owl-theme .owl-controls .owl-page span {
    width: 25px;
    height: 5px;
    margin: 0 5px 0 0;
    border-radius: 0;
    background: var(--color-secondary);
}
.owl-carousel .owl-item {
    padding: 5px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

/** HEADER */
header {
    background: rgba(29, 29, 27, 0.8);
    position: sticky;
    top: 0;
    min-height: 60px;
    z-index: 100000;
    transition: all .3s ease-in-out;
}
header .nav-list {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

header a {
    text-decoration: none;
    color: var(--color-base-3);
    text-transform: uppercase;
    font-size: 16px;
    display: flex;
    justify-content: center;
    position: relative;
}
header .menu-item a::after {
    content: "";
    width: 90%;
    height: 2px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    transition: all .3s ease-in-out;
}
header .page_item a {
    font-weight: bold;
}
header .page_item a,
header .menu-item a:hover {
    color: #B9BC8A;
}
header .page_item a::after,
header .menu-item a:hover::after {
    background: #B9BC8A;
    bottom: -3px;
}

/* Submenu de Reservar: abre apenas no clique */
#menu-item-698 {
    position: relative;
}
.menu-item{
    width: 8%;
}
.sub-menu .menu-item {
    width: auto;
}

/* Oculto por padrão — !important para sobrepor qualquer regra :hover do WP */
#menu-item-698 > .sub-menu {
    display: none !important;
    list-style: none;
    margin: 12px 0 0;
    padding: 5px 14px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    background: var(--color-button1);
    z-index: 100001;
}

/* Aberto apenas quando a classe é aplicada via JS */
#menu-item-698.submenu-open > .sub-menu {
    display: block !important;
}

#menu-item-698 > .sub-menu > li {
    border-bottom: 1px solid rgba(238, 234, 218, 0.8);
}

#menu-item-698 > .sub-menu > li:last-child {
    border-bottom: 0;
}

#menu-item-698 {
    background-color: var(--color-button1);
    border-radius: 10px;
    padding: 5px 20px;
}
#menu-item-698 a{
    color: #1d1d1b !important;
}
#menu-item-698:hover #menu-item-698 a{
    color: #f5f5f5 !important;
}

#menu-item-698 > .sub-menu > li > a {
    color: #4b4f56;
    padding: 8px 4px;
}

#menu-item-207 {
    width: 125px;
    height: 70px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
#menu-item-207 a {
    position: absolute;
    top: 12px;
    width: 100px;
    transition: all .3s ease-in-out;
}

/* === MOBILE NAV - estilos base (desktop: oculta controles mobile) === */
.mobile-bar {
    display: none;
}
.hamburger-btn {
    display: none;
}
.mobile-nav-top {
    display: none;
}
.mobile-reservar-submenu {
    display: none;
}
.nav-wrapper {
    width: 100%;
}

@media (max-width:991px) {
    .menu-item {
        width: auto;
    }
}

/** HOME */
.banner img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
}
.banner .carousel,
.banner .carousel-inner,
.banner .carousel-item {
    width: 100%;
    overflow: hidden;
}
.banner .carousel-indicators [data-bs-target] {
    width: 25px;
    height: 5px;
    margin: 0 5px 0 0;
    border: 0;
    border-radius: 0;
    background: var(--color-secondary);
    opacity: 0.5;
}
.banner .carousel-indicators .active {
    opacity: 1;
}

.home-intro {
    padding: 4rem 0;
}

.home-intro__item {
    position: relative;
    display: block;
    margin-top: 70px;
    z-index: 1;
}
.home-intro__item::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: -1;
    background: var(--text-color);
}
.home-intro__item.left {
    margin-top: 0;
}

.home-intro__item span {
    position: absolute;
    font-size: 40px;
    color: #f5f5f5;
}
.home-intro__item:not(.left) span {
    right: 15px;
}
.home-intro__item.left span {
    left: 15px;
}
.home-intro__item img {
    width: 100%;
    height: 100%;
}

/* --- Vinhos Catalog --- */
.vinos-catalog {
    background: var(--color-base-3);
}
.vino-card__img-wrapper {
    position: relative;
    padding-bottom: 20px;
    z-index: 1;
}
.vino-card__img-wrapper::before {
    content: "";
    width: 100%;
    height: 90%;
    background: var(--color-button1);
    position: absolute;
    bottom: 15%;
    left: 0;
    z-index: -1;
}

/* --- Landscape Section --- */
.cta-landscape__box {
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Experience Cards --- */
.experience-card {
    text-decoration: none;
    color: inherit;
    display: block;
}
.experience-card__img {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    max-height: 260px;
}
.experience-card__img img {
    width: 100%;
    height: 100%;
}
.experience-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    color: white;
}
.experience-card:hover .experience-card__overlay {
    opacity: 1;
}
.experience-card__title {
    position: relative;
    font-weight: bold;
    text-align: center;
    padding: 15px 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.experience-card__title::after {
    content: "";
    width: 40%;
    height: 2px;
    background: var(--color-secondary);
    position: absolute;
    bottom: 0;
}

/* --- Reservation Form Custom --- */
.form-control-custom {
    border: none;
    width: 100%;
    padding: 5px 0;
}
.form-control-custom:focus {
    outline: none;
    border-bottom-color: var(--color-button1);
}
.reservation-form .form-label {
    min-width: 100px;
    text-align: right;
    font-size: 14px;
}
.form-subtitle{
    font-size: 32px;
    /* font-weight: bold; */
    margin-bottom: 0;
    text-align: right;
    padding: 20px;
}
.form-title{
    font-size: 21px;
}

.wpforms-container .wpforms-field, .wp-core-ui div.wpforms-container .wpforms-field {
    padding: 10px 0 0 !important;
    position: relative !important;
}
.wpforms-container-full .wpforms-field-label, .wp-core-ui div.wpforms-container-full .wpforms-field-label {
    margin: 0 0 1px 0px !important;
}
#wpforms-583, #wpforms-689 {
    margin: 0;
}
#wpforms-submit-689{
    float: right;
}


/* -- Sobre -- */
.sobre-intro .title {
    position: relative;
}
.sobre-intro .title::before,
.sobre-intro .title::after {
    content: "";
    width: 30%;
    height: 2px;
    background: var(--color-primary);
    display: flex;
    margin-block: 30px;
}

#sobre .cta-landscape {
    min-height: 730px;
    padding: 40px;
    background-position: top;
}
#sobre .cta-landscape .subtitle,
#sobre .cta-landscape .subtitle > * {
    font-size: 42px;
}
#sobre .cta-landscape .subtitle strong {
    font-weight: bold;
}

.gallery {
    padding-block: 60px;
}

.base-section {
    padding-block: 60px;
    background: var(--color-base-3);
}
.base-section img {
    width: 100%;
}

#vino {
    background: var(--color-base-3);
}
#vino .intro {
    padding-block: 40px;
}


.vino-destaque {
    position: relative;
    padding-block: 60px;
}
.vino-destaque .detail {
    position: absolute;
    top: -160px;
    left: 0;
}
.vino-destaque .vino-card .btn-primary-custom {
    background: #5E2A2B;
}
.vino-destaque .vino-card__img-wrapper {
    padding-top: 20px;
    margin-inline: 30px;
}
.vino-destaque .vino-card__img-wrapper::before {
    bottom: initial;
    top: 0;
}
.vino-destaque-card {
    position: relative;
    background: #5E2A2B;
    padding: 40px;
    align-content: center;
}
.vino-destaque-card .subtitle {
    font-size: 24px;
    font-weight: 300;
}
.vino-destaque-card .tag {
    font-size: 24px;
    font-weight: bold;
    border: 2px solid;
    border-inline: none;
    width: fit-content;
    padding-block: 7px;
}

#cucina {
    background: var(--color-base-3);
}
#cucina .intro {
    padding-block: 40px;
}
#cucina .intro img {
    width: 100%;
}


#cucina .cucina {
    position: relative;
    overflow: hidden;
}
#cucina .cucina .detail {
    position: absolute;
    bottom: 15%;
    right: 40px;
}

.cta-cucina {
    background: var(--color-secondary);
}
.cta-cucina-white {
    background: transparent;
}
.cta-cucina-white .subtitle {
    color: var(--color-secondary);
}

.banner-cucina {
    align-content: center;
    min-height: 400px;
}

.space-cucina {
    background: #FFFEF9;
    padding-block: 60px;
}

.detail-line span {
    width: 30%;
    height: 2px;
    background: var(--color-secondary);
}

.owl-carousel-space-cucina .item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    display: block;
    padding-inline: 5px;
}
.owl-carousel-space-cucina .owl-controls.clickable {
    position: static;
    width: 100%;
    margin-top: 24px;
    text-align: center;
}
.owl-carousel-space-cucina.owl-theme .owl-controls .owl-page span,
.owl-carousel-space-cucina .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    margin: 0 7px;
    border-radius: 999px;
    background: var(--color-secondary);
    opacity: 1;
}
.owl-carousel-space-cucina.owl-theme .owl-controls .owl-page.active span,
.owl-carousel-space-cucina .owl-dots .owl-dot.active span {
    width: 32px;
}

#experiences .intro {
    padding-block: 40px;
}
.experiencies-list .subtitle {
    color: var(--color-secondary);
}
.experience-card__description, .experience-card__description li {
    font-size: 18px;
}
.experience-card__description {
    padding-block: 15px;
}
.experience-card__description ul {
    font-size: 18px;
}
.experience-card__description:not(ul) {
    text-align: center;
    padding-bottom: 10px;
}
.experience-card .btn-primary-custom {
    font-size: 18px;
}

#experiences .experience-card {
    padding: 17px;
}

.imagem_fundo {
    position: absolute;
    height: 100%;
    opacity: 0.25;
    top: 5%;
    z-index: 1;
}
.imagem_fundo img {
    max-height: 90%;
    filter: invert(1);
}
.background-transparent{
    background: #b9bc8a73 !important;
}
.cta-buttons {
    position: relative;
    padding-block: 70px;
    background: var(--color-button1);
    overflow: hidden;
}
.cta-buttons .title {
    font-size: 38px;
}
.cta-buttons .detail {
    position: absolute;
    top: 5%;
    left: 42%;
    max-height: 90%;
    opacity: 0.5;
}
.cta-buttons .container {
    position: relative;
    z-index: 1;
}

#eventos .intro {
    padding-block: 60px;
}

.separator .title {
    position: relative;
    padding-block: 20px;
    font-size: 32px;
}
.separator .title::before, 
.separator .title::after {
    content: "";
    width: 40%;
    height: 2px;
    background: var(--color-secondary);
    position: absolute;
}
@media (max-width: 991px) {
    .separator .title {
        line-height: 1.1;
    }
    .separator .title::before, 
    .separator .title::after {
        width: 90%;
    }
    .space-eventos .title {
        font-size: 24px !important;
        line-height: 1.1 !important;
    }
}

.separator .title::before {
    top: 0;
}
.separator .title::after {
    bottom: 0;
}

.tipos_eventos{
    padding: 50px 0 ;
}
.tipos_eventos h3{
    font-size: 30px;
    font-weight: bold;
    color: var(--color-secondary);
}
.tipos_eventos p{
    font-size: 21px;
    font-weight: 500;
    color: var(--color-secondary);
}
.tipos_eventos li{
    list-style: none;
    padding: 0 0 30px;
}
.space-eventos .title{
    font-size: 42px;
    font-family: var(--font-family);
}
#home .cucina-info .btn-primary-custom, #home .cucina-info .btn-secondary-custom {
    width: 100%;
}

@media (max-width: 991px) {
    .title { font-size: 32px; }
    .subtitle { font-size: 20px; }
    #home .cucina-info .btn-primary-custom, #home .cucina-info .btn-secondary-custom {
        width: 300px;
        text-align: center;
    }

    /* --- Mobile header bar --- */
    header {
        min-height: 60px;
        padding: 0;
    }

    .mobile-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 16px;
        min-height: 60px;
        position: relative;
        overflow: visible;
    }

    .mobile-bar .mobile-logo-link img,
    .mobile-bar .mobile-logo-link svg {
        max-height: 100px;
        width: auto;
    }

    .mobile-bar .mobile-logo-link {
        position: absolute;
        left: 50%;
        top: 6px;
        transform: translateX(-50%);
        z-index: 2;
        line-height: 0;
    }

    /* Botão hambúrguer */
    .hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        flex-shrink: 0;
        position: relative;
        z-index: 3;
    }
    .hamburger-btn span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--color-base-3);
        border-radius: 2px;
    }

    /* Botão RESERVAR na barra mobile */
    .mobile-bar .mobile-reservar-btn,
    .mobile-nav-top .mobile-reservar-btn {
        background: var(--color-button1);
        color: var(--color-base-1) !important;
        font-size: 13px;
        padding: 8px 16px;
        border-radius: 10px;
        text-transform: uppercase;
        flex-shrink: 0;
        text-decoration: none;
        position: relative;
        z-index: 3;
    }
    .mobile-bar .mobile-reservar-btn::after,
    .mobile-nav-top .mobile-reservar-btn::after {
        display: none !important;
    }

    .mobile-nav-top .mobile-reservar-btn {
        position: relative;
        z-index: 3;
    }

    /* --- Nav wrapper: oculto por padrão, exibido como overlay no clique --- */
    .nav-wrapper {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        z-index: 100002;
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
    }

    header.nav-open .nav-wrapper {
        display: flex;
    }

    /* Topo do overlay (X + logo + RESERVAR) */
    .mobile-nav-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        min-height: 60px;
        background: rgba(29, 29, 27, 0.9);
        position: sticky;
        top: 0;
        z-index: 1;
        flex-shrink: 0;
        overflow: visible;
    }

    .mobile-nav-top .mobile-logo-link img,
    .mobile-nav-top .mobile-logo-link svg {
        max-height: 100px;
        width: auto;
    }

    .mobile-nav-top .mobile-logo-link {
        position: absolute;
        left: 50%;
        top: 6px;
        transform: translateX(-50%);
        z-index: 2;
        line-height: 0;
    }

    /* Botão fechar (X) */
    .close-nav-btn {
        background: none;
        border: none;
        cursor: pointer;
        color: var(--color-base-3);
        font-size: 22px;
        line-height: 1;
        padding: 4px;
        width: 32px;
        text-align: center;
        flex-shrink: 0;
        position: relative;
        z-index: 3;
    }

    /* --- Lista de itens no overlay --- */
    .nav-wrapper .container {
        padding: 0;
        max-width: 100%;
        padding-top: 82px;
    }

    .nav-wrapper .nav-list {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0;
    }

    .nav-wrapper .nav-list > li {
        border-bottom: 1px solid #e0ddd0;
    }

    .nav-wrapper .nav-list > li > a {
        padding: 18px 24px;
        color: #1d1d1b;
        font-size: 15px;
        justify-content: center;
        display: flex;
    }

    .nav-wrapper .nav-list > li > a::after {
        display: none !important;
    }

    /* Ocultar item logo e item RESERVAR da lista (ficam na barra topo) */
    .nav-wrapper #menu-item-207,
    .nav-wrapper #menu-item-698 {
        display: none;
    }

    /* Garantir que sub-menu do RESERVAR não apareça dentro do overlay */
    .nav-wrapper .sub-menu {
        display: none !important;
    }

    /* === Submenu mobile do Reservar === */
    .mobile-reservar-submenu {
        display: none;
        list-style: none;
        margin: 0;
        padding: 6px 14px;
        background: var(--color-button1);
        position: absolute;
        top: 60px;
        right: 12px;
        min-width: 200px;
        border-radius: 10px;
        z-index: 100003;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .mobile-reservar-submenu.submenu-open {
        display: block;
    }

    .mobile-reservar-submenu > li {
        border-bottom: 1px solid rgba(238, 234, 218, 0.8);
    }

    .mobile-reservar-submenu > li:last-child {
        border-bottom: 0;
    }

    .mobile-reservar-submenu > li > a {
        display: block;
        padding: 12px 6px;
        color: #1d1d1b !important;
        text-align: center;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .mobile-reservar-submenu > li > a::after {
        display: none !important;
    }
}

@media (max-width: 475px) {
    #mobile-reservar-bar-btn{
        display: none;
    }
}
 

/* PAGINA CONTATO */
.contato-mapa {
    background-color: #EEEADA;
}
.contato-mapa .mapa iframe {
    width: 100%;
    border: none;

}
.item-contato {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.item-contato p{
    font-size: 15px;
}
.informacoes .row {
    justify-content: center;
    align-items: center;
}
.texto-contato {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
}
.texto-contato button{
    border-radius: 30px;
    border: 2px solid;
    background-color: transparent ;
    color: black;
    padding: 2px 25px;
    font-weight: 500;
}
.btn-whats{
    border-radius: 30px;
    border: 1px solid white;
    background-color: transparent ;
    color: white;
    padding: 5px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.form-contato h2 {
    font-size: 32px;
    color: white;
    font-family: var(--font-family);
    font-weight: bold;
}
.form-contato p {
    font-size: 24pxpx;
    color: white;
    font-family: var(--font-family);
}
section.informacoes {
    background: aliceblue;
    padding: 40px 0 70px;
    background: #EEEADA;
    background: linear-gradient(180deg, rgba(238, 234, 218, 1) 25%, rgba(185, 188, 138, 1) 100%);
}
a {
    color: unset;
    text-decoration: none;
}


/* INICIO FOOTER */
    .menu-footer {
        flex-direction: row;
        gap: 2rem !important;
    }
    .menu-footer .menu-item{
        width: auto;
    }


    .menu-footer li a{
        font-family: var(--font-family) !important;
        font-weight: 400; 
        color: #161814;
    }
    .menu-footer li a:hover {
        font-weight: bold !important;
    }
    .texto-sobre-footer{
        font-family: var(--font-family); 
        font-size: 14px;
        color:  #000000;
        text-align: center;
    }
    .texto-footer{
        padding: 50px 0 0 0;
    }

    .logo-footer p {
        text-align: center;
        padding: 30px 0;
    }
    .copyright-footer {
        background: #000000;
        padding: 25px 0;
    }
    .copyright-footer * {
        color: #FFF;
        font-weight: 400;
        font-size: 14px;
    }
    .copyright-footer a svg {
        margin-left: 10px;
    }
    footer {
        background: #f6f5ee;
        padding: 50px 20px;
    }

    @media (max-width: 1200px) {
        .logo-footer img {
            max-width: 350px;
        }
        .logo-footer a {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .logo-footer {
            padding-bottom: 30px;
        }
    }

    @media (max-width: 767px) {
        .footer-conteudo .blog-imagem img {
            max-height: unset;
        }
        .footer-conteudo h3 {
            font-size: 14px;
        }
        .footer-conteudo .titulo-footer h3 {
            font-size: 18px;
        }
        .menu-footer {
            flex-wrap: wrap;
            justify-content: center;
        }
        .texto-sobre-footer{
            margin-top: 30px;
        }
    }
    

    /** BTN TOP **/
        .div-gotop {
            opacity: 0;
            display: block;
            position: fixed;
            right: 15px;
            bottom: 95px;
            z-index: 10;
        }
        .div-gotop button.gotop {
            border-radius: 50px;
            background: #ffffff;
            outline: 0 !important;
            box-shadow: none;
            border: 2px solid var(--primaria-1);
            text-shadow: none;
            cursor: pointer;
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            -webkit-transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -ms-transition: all .3s ease-in-out;
            -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
        }
        .div-gotop.active {
            opacity: 1;
            background: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        } 
        .gotop svg {
            fill: var(--primaria-1);
            width: 30px;
            height: 30px;
        }
        .div-gotop.active:hover button.gotop {
            background: var(--primaria-1);
        }
        .div-gotop.active:hover svg {
            fill: white;
        }
    /* FIM GOTOP */
    
    
/* FIM FOOTER */

/* SINGLE VINHOS */

#vinhos .banner {
    background: #b9bc8a;
    text-align: center;
    padding: 100px 0 50px;
}
#vinhos{
    background-color: #f6f5ee;
}
#vinhos .title {
    font-size: 50px;
    color: black;
    font-family: var(--font-family);
    font-weight: bold;
    text-align: center;
}
#vinhos .subtitle {
    font-size: 24px;
    color: black;
    font-family: var(--font-family);
    text-align: center;
}
#vinhos .subtitle-2 {
    font-size: 24px;
    color: black;
    font-family: var(--font-family);
    font-weight: bold;
    margin-top: 45px;
    border-top: 2px solid #5b2828;
    border-bottom: 2px solid #5b2828;
    padding: 10px 0;
    text-align: center;
}
#vinhos .imagem-texto {
    margin-top: -325px;
    padding-bottom: 50px;
    background: transparent;
}
#vinhos .imagem-texto .imagem img{
    z-index: 1;
    position: relative
}
#vinhos .imagem-texto{
    position: relative;
}
#vinhos .detail{   
    position: absolute;
    width: 30%;
    z-index: 0;
    top: 0;
    left: 0;
}
#vinhos .resumo {
    margin-top: 325px;
    padding: 40px 10px;
}
.row-caracteristica, .row-harmonizacao {
    padding: 25px;
}
.row-caracteristica hr, .row-harmonizacao hr {
    border-top: 2px solid #5b2828; ;
    opacity: 0.8;
}
#vinhos .imagem-texto h3 {
    font-size: 24px;
    color: black;
    font-family: var(--font-family);
    font-weight: bold;
    text-align: start;
    text-transform: uppercase;
}
#vinhos .imagem-texto .texto {
    text-align: start;
    font-size: 20px;
    line-height: 2;
    margin-top: 40px;
}
#vinhos .vinos-catalog h2{
    text-align: center;
    font-size: 40px;
    line-height: 2;
    font-weight: 600;
    color: #595B3C;
    border-top: 2px solid #595B3C;
    border-bottom: 2px solid #595B3C;
    text-transform: uppercase   ;
    font-family: var(--font-family-title);
}

@media(max-width: 991px) {
    .home-intro__item {
        margin-top: 0;
    }
    .title {
        font-size: 32px;
    }
    .subtitle,
    .subtitle > * {
        font-size: 24px;
    }
    #sobre .cta-landscape .subtitle, #sobre .cta-landscape .subtitle > * {
        font-size: 25px;
    }
    #vinhos .imagem-texto {
        margin-top: -160px;
    }
    #vinhos .resumo {
        margin-top: 160px;
    }
}
@media (max-width: 765px) {
    #vinhos .imagem-texto {
        margin-top: 25px;
    }
    #vinhos .resumo {
        margin-top: -10px ;
    }
    p {
        font-size: 16px;
        margin: 0;
    }
        #vinhos .imagem-texto .imagem img {
        position: relative;
        z-index: 1;
    }
    #vinhos .imagem-texto .texto {
        text-align: start;
        font-size: 16px;
        line-height: 1.5;
        margin-top: 15px;
    }
    #vinhos .resumo {
        padding: 20px 10px 0;
    }
    #vinhos .vinos-catalog h2 {
        font-size: 32px;
        line-height: 1.5;
    }
    #vinhos .imagem-texto {
        padding: 0;
    }
}
@media (max-width: 575px) {
    #vinhos .imagem-texto .imagem {
        position: relative;
    }
    #vinhos .imagem-texto .imagem::before {
        content: "";
        width: 100%;
        height: 82%;
        background: var(--color-button1);
        position: absolute;
        bottom: 10%;
        left: 0;
        z-index: 0;
    }

}
@media (max-width: 475px) {
    #sobre .cta-landscape .subtitle, #sobre .cta-landscape .subtitle > * {
        font-size: 25px;
        background: #b9bc8a;
        padding: 10px;
    }
}