/* --- RESET E BASES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #080808;
    color: #f0ece4;
    font-family: 'Jost', sans-serif;
    line-height: 1.7;
}

.container {
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 0;
}

.label-secao {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 14px;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.subtitulo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: #9a8c7e;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

/* --- NAVBAR --- */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 36px 0;
    display: flex;
    justify-content: center;
}

.navbar-links {
    display: flex;
    gap: 50px;
}

.navbar-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a84c;
    transition: width 0.3s ease;
}

.navbar-links a:hover {
    color: #c9a84c;
}

.navbar-links a:hover::after {
    width: 100%;
}

/* --- HERO --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.slideshow {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    animation: fadeSlide 24s infinite ease-in-out;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 6s; }
.slide:nth-child(3) { animation-delay: 12s; }
.slide:nth-child(4) { animation-delay: 18s; }

@keyframes fadeSlide {
    0%   { opacity: 0; transform: scale(1.06); }
    5%   { opacity: 1; }
    25%  { opacity: 1; }
    30%  { opacity: 0; transform: scale(1); }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 24px;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8.5rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 10px;
    margin-top: -60px;
}

.hero-sub {
    font-size: 1.45rem;
    color: rgba(227, 227, 225, 0.7);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 45px;
}

.btn {
    display: inline-block;
    border: 1px solid rgba(201,168,76,0.7);
    color: #c9a84c;
    padding: 15px 48px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    transition: all 0.4s ease;
    background: transparent;
}

.btn:hover {
    background-color: #c9a84c;
    color: #080808;
    border-color: #c9a84c;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll span {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.6));
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --- SOBRE --- */
.sobre {
    background-color: #0e0e0e;
}

.sobre-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.sobre-texto {
    flex: 1.2;
}

.sobre-texto h2,
.sobre-texto .subtitulo,
.sobre-texto .label-secao {
    text-align: left;
}

.linha-tempo p {
    margin-bottom: 20px;
    color: #a09080;
    font-size: 1.15rem;
    font-weight: 300;
}

.linha-tempo strong {
    color: #d4c4a8;
    font-weight: 500;
}

.frase-final {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-style: italic;
    color: #c9a84c;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(201,168,76,0.2);
}

.sobre-imagem {
    flex: 0.85;
}

.moldura-foto {
    position: relative;
    padding: 14px 0 0 14px;
}

.moldura-foto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 70%;
    border-top: 1px solid #c9a84c;
    border-left: 1px solid #c9a84c;
}

.sobre-imagem img {
    width: 100%;
    display: block;
    border-radius: 1px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* --- DESTAQUES --- */
.destaques {
    background-color: #080808;
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.destaques-inner {
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.destaque-item {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.destaque-divisor {
    width: 1px;
    height: 120px;
    background: rgba(201,168,76,0.15);
    align-self: center;
    flex-shrink: 0;
}

.destaque-icone {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px auto;
    color: #c9a84c;
}

.destaque-icone svg {
    width: 100%;
    height: 100%;
}

.destaque-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.destaque-item p {
    color: #8a7e72;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
}

/* --- MENU GASTRONOMIA --- */
.menu-gastronomia {
    padding: 110px 0;
    background: #0e0e0e;
    overflow: hidden;
}

.container-titulo {
    text-align: center;
    margin-bottom: 55px;
}

.carrossel-container {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.carrossel-track {
    display: flex;
    flex-shrink: 0;
}

.foto-item {
    width: 280px;
    padding: 0 10px;
    flex-shrink: 0;
}

.foto-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    filter: brightness(0.88) saturate(0.9);
    transition: filter 0.4s ease;
}

.foto-item img:hover {
    filter: brightness(1.05) saturate(1.1);
}

.track-esquerda {
    width: calc(280px * 12);
    animation: scrollLeft 36s linear infinite;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-280px * 6)); }
}

.track-direita {
    width: calc(280px * 11);
    animation: scrollRight 33s linear infinite;
}

@keyframes scrollRight {
    0% { transform: translateX(calc(-280px * 5.5)); }
    100% { transform: translateX(0); }
}

.menu-whatsapp-container {
    max-width: 600px;
    margin: 65px auto 0;
    text-align: center;
    padding: 0 20px;
}

.texto-chamada {
    color: #8a7e72;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-cardapio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c9a84c;
    color: #080808;
    border: 1px solid #c9a84c;
    padding: 15px 38px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.35s ease;
}

.btn-cardapio:hover {
    background: transparent;
    color: #c9a84c;
}

/* --- FOOTER --- */
footer {
    background-color: #050505;
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-topo {
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;

    gap: 70px;

    padding-bottom: 60px;

    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-col h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 8px;
}

.footer-col{
    min-width: 180px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-icon{
    font-size: 28px;
    color: #c9a84c;
    margin-bottom: 12px;
    transition: transform .3s ease, color .3s ease;
}

.footer-col:hover .footer-icon{
    transform: translateY(-3px);
    color: #e6c46a;
}

.footer-slogan {
    font-size: 0.88rem;
    color: #5a5248;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.footer-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 10px;
}

.footer-info{
    color: #6a6258;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
}

.footer-instagram{
    color: #6a6258; 
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    transition: color .3s ease;
}

.footer-instagram:hover{
    color: #c9a84c;
}

.mapa-localizacao {
    width: 100%;
}

.mapa-localizacao iframe {
    width: 100%;
    height: 320px;
    display: block;
    border: 0;
    filter: grayscale(30%) brightness(0.8) contrast(1.1);
}

.footer-copy {
    text-align: center;
    padding: 24px 0;
    font-size: 0.75rem;
    color: #333;
    letter-spacing: 1px;
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25d366;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    text-decoration: none;
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- SCROLL REVEAL --- */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .9s ease, transform .9s ease;
}

.reveal.visivel {
    opacity: 1;
    transform: translateY(0);
}


/* --- AVALIAÇÕES --- */

.avaliacoes-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:30px;

    margin-top:50px;
}


.avaliacao-card{

    background:#111;

    padding:30px;

    min-height:230px;

    border-radius:14px;

    border:1px solid rgba(201,168,76,.12);

    border-left:3px solid #c9a84c;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    position:relative;

    transition:.35s ease;

}


.avaliacao-card:hover{

    transform:translateY(-5px);

    border-color:rgba(201,168,76,.35);

    box-shadow:
    0 15px 35px rgba(0,0,0,.35);

}



.estrelas{

    color:#d9b45b;

    font-size:16px;

    letter-spacing:3px;

    margin-bottom:12px;

}


.aspas{

    font-size:45px;

    color:#c9a84c33;

    position:absolute;

    top:15px;
    right:20px;

}



.avaliacao-card p{

    color:#d8d8d8;

    line-height:1.6;

    font-size:.95rem;

    margin:10px 0 20px;

}



.autor{

    display:flex;

    align-items:center;

    gap:12px;

}


.avatar{

    width:40px;
    height:40px;

    border-radius:50%;

    background:#c9a84c;

    color:#111;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}



.autor span{

    color:#c9a84c;

    font-size:.8rem;

    letter-spacing:1.5px;

    text-transform:uppercase;

}

/* BOTÃO AVALIAR */
.btn-avaliar {

    display: inline-flex;
    justify-content: center;
    align-items: center;

    margin: 40px auto 0;

    padding: 15px 45px;

    background: transparent;

    border: 1px solid #c9a84c;

    color: #c9a84c;

    text-decoration: none;

    text-transform: uppercase;

    font-size: 0.75rem;

    font-weight: 500;

    letter-spacing: 3px;

    transition: all .35s ease;

    border-radius: 2px;

}


.btn-avaliar:hover {

    background: #c9a84c;

    color: #080808;

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(201,168,76,.25);

}

.avaliar-container {
    text-align: center;
    margin-top: 60px;
}

.texto-avaliar {
    color: #8a7e72;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {

    .container {
        padding: 70px 0;
    }

    h2 {
        font-size: 2.4rem;
    }

    .navbar {
        padding: 24px 0;
    }

    .navbar-links {
        gap: 20px;
    }

    .navbar-links a {
        font-size: 0.68rem;
        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .sobre-wrapper {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .sobre-texto h2,
    .sobre-texto .subtitulo,
    .sobre-texto .label-secao {
        text-align: center;
    }

    .sobre-imagem {
        width: 100%;
    }

    .destaques-inner {
        flex-direction: column;
        align-items: center;
        padding: 60px 0;
        gap: 40px;
    }

    .destaque-divisor {
        width: 60px;
        height: 1px;
    }

    .destaque-item {
        padding: 0;
        max-width: 320px;
    }

    .foto-item {
        width: 180px;
        padding: 0 6px;
    }

    .foto-item img {
        height: 180px;
    }

    .track-esquerda {
        width: calc(180px * 12);
        animation: scrollLeftMobile 22s linear infinite;
    }

    .track-direita {
        width: calc(180px * 11);
        animation: scrollRightMobile 20s linear infinite;
    }

    .footer-topo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;

    justify-items: center;
    align-items: start;
    }

    .footer-col {
    width: 100%;
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    }

   .avaliacoes-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
}


.avaliacao-card{

    padding:16px;

    min-height:190px;

    height:auto;

    aspect-ratio: auto;

    border-radius:15px;

}


.estrelas{
    font-size:12px;
    letter-spacing:1px;
}


.aspas{
    font-size:40px;
    top:10px;
    right:15px;
}


.avaliacao-card p{

    font-size:0.78rem;

    line-height:1.5;

    margin:10px 0 15px;

}


.autor{
    gap:10px;
}


.avatar{
    width:34px;
    height:34px;
    font-size:.8rem;
}


.autor span{

    font-size:.65rem;

}
}

@keyframes scrollLeftMobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-180px * 6)); }
}

@keyframes scrollRightMobile {
    0% { transform: translateX(calc(-180px * 5.5)); }
    100% { transform: translateX(0); }
}

.idiomas{
    position: fixed;

    left: 25px;
    bottom: 25px;

    display: flex;
    gap: 1px;

    z-index: 9999;
}

.idiomas button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform .3s ease;
}

.idiomas button:hover {
    transform: scale(1.15);
}

.idiomas img{
    width: 30px;
    height: 20px;

    border-radius: 5px;

    cursor: pointer;

    box-shadow: 0 5px 15px rgba(0,0,0,.35);

    transition: .3s;
}

.modal-horario {
    display: none;

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.6);

    justify-content: center;
    align-items: center;

    z-index: 99999;
}

.modal-conteudo{

    background: #111111;

    color: #f5f5f5;

    width: 90%;
    max-width: 500px;

    padding: 25px 35px;

    border-radius: 18px;

    border: 1px solid rgba(201,168,76,.35);

    box-shadow: 0 20px 50px rgba(0,0,0,.6);

    position: relative;

    animation: aparecer .3s ease;

}

.modal-conteudo h2{

    color:#c9a84c;

    font-size:2rem;

    text-align:center;

    margin-bottom:25px;

    margin-top:0;

    font-family:'Cormorant Garamond', serif;

}

.fechar{

    color:#c9a84c;

    font-size:30px;

    transition:.3s;

}

.fechar:hover{

    transform:rotate(90deg);

    color:white;

}

.horarios{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.horarios p{

    margin:0;

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

    font-size:1rem;

    color:#d8d8d8;

}

.horarios strong{

    color:#c9a84c;

    font-weight:600;

}

.status-restaurante{
    margin-top: 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.status{

    display:flex;
    align-items:center;
    gap:10px;

    background:rgba(0,0,0,.45);

    padding:10px 18px;

    border-radius:30px;

    backdrop-filter: blur(8px);

    color:white;

    font-size:.95rem;

}

.bolinha{

    width:12px;
    height:12px;

    border-radius:50%;

    background:gray;

}

.bolinha.aberto{

    background:#22c55e;

    box-shadow:0 0 12px #22c55e;

}

.bolinha.fechado{

    background:#ef4444;

    box-shadow:0 0 12px #ef4444;

}

#abrirHorario{

    background:#c9a84c;

    color:#080808;

    border:none;

    padding:12px 24px;

    border-radius:30px;

    cursor:pointer;

    font-size:.9rem;

    font-weight:600;

    transition:.3s;

}

#abrirHorario:hover{

    transform:scale(1.05);

    background:#d8b55b;

}

@keyframes aparecer {
    from {
        opacity: 0;
        transform: scale(.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

/* ==========================================================
   ESPAÇO DE EVENTOS
========================================================== */

.eventos-section {
    width: 100%;
    background: #090909;
    padding: 110px 24px;
    overflow: hidden;
}

.eventos-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* ==========================================================
   CABEÇALHO
========================================================== */

.eventos-header {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 65px;
    text-align: center;
}

.eventos-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 14px;
}

.eventos-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.7rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 15px;
    letter-spacing: 1px;
}

.eventos-subtitulo {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;

    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.7;
    color: #9a8c7e;
}


/* ==========================================================
   GALERIA
   NOTEBOOK / DESKTOP
   2 + 2
========================================================== */

.eventos-galeria {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 55px;
    row-gap: 70px;
}


/* ==========================================================
   CADA FOTO
========================================================== */

.evento-foto {
    position: relative;

    width: 100%;
    max-width: 460px;

    margin: 0 auto;

    overflow: visible;

    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.evento-foto.visivel {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================
   LINHA DOURADA
========================================================== */

.evento-foto::before {
    content: "";

    position: absolute;

    top: -13px;
    left: -13px;

    width: 55%;
    height: 55%;

    border-top: 1px solid #c9a84c;
    border-left: 1px solid #c9a84c;

    pointer-events: none;

    z-index: 0;
}


/* ==========================================================
   IMAGEM
   IMPORTANTE:
   NÃO FORÇAMOS AS FOTOS A FICAREM QUADRADAS
========================================================== */

.evento-foto img {
    display: block;

    width: 100%;
    height: auto;

    /*
       Mantém a proporção REAL da imagem.
       Nada de aspect-ratio.
    */

    object-fit: contain;
    object-position: center;

    position: relative;
    z-index: 1;

    border-radius: 1px;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.55);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* ==========================================================
   HOVER
========================================================== */

.evento-foto:hover img {
    transform: translateY(-3px);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.65);
}


/* Remove brilho antigo */

.foto-brilho {
    display: none;
}


/* ==========================================================
   DIFERENCIAIS
   NOTEBOOK:
   4 EM UMA ÚNICA FILEIRA
========================================================== */

.eventos-diferenciais {
    width: 100%;
    max-width: 1150px;

    margin: 85px auto 0;

    padding-top: 48px;

    border-top:
        1px solid rgba(201, 168, 76, 0.25);

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    column-gap: 35px;
}


/* ==========================================================
   CADA DIFERENCIAL
========================================================== */

.evento-diferencial {
    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    gap: 13px;

    text-align: center;

    min-width: 0;
}


/* ==========================================================
   ÍCONE
========================================================== */

.evento-icone {
    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #c9a84c;

    font-size: 23px;

    border:
        1px solid rgba(201, 168, 76, 0.38);

    border-radius: 50%;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.evento-diferencial:hover .evento-icone {
    color: #e5c86c;

    border-color:
        rgba(201, 168, 76, 0.7);

    transform: translateY(-3px);
}


/* ==========================================================
   TÍTULO
========================================================== */

.evento-diferencial strong {
    display: block;

    color: #eee;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(1.45rem, 1.8vw, 1.8rem);

    font-weight: 500;

    line-height: 1.15;

    max-width: 230px;
}


/* ==========================================================
   TEXTO
========================================================== */

.evento-diferencial span {
    display: block;

    color: #9a8c7e;

    font-family: 'Jost', sans-serif;

    font-size: clamp(0.95rem, 1.05vw, 1.12rem);

    margin-top: 2px;

    line-height: 1.4;

    max-width: 220px;
}


/* ==========================================================
   BOTÃO
========================================================== */

.eventos-cta {
    display: flex;

    justify-content: center;

    margin-top: 60px;
}

.eventos-botao {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 32px;

    border:
        1px solid rgba(201, 168, 76, 0.7);

    color: #c9a84c;

    background: transparent;

    text-decoration: none;

    font-family: 'Jost', sans-serif;

    font-size: 0.7rem;

    font-weight: 500;

    letter-spacing: 2.2px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.eventos-botao i {
    font-size: 17px;
    color: #25d366;
}

.eventos-botao:hover {
    background: #c9a84c;

    color: #090909;

    border-color: #c9a84c;

    transform: translateY(-3px);
}

.eventos-botao:hover i {
    color: #090909;
}


/* ==========================================================
   TABLETS
   769px — 1000px
========================================================== */

@media (max-width: 1000px) {

    .eventos-section {
        padding: 90px 30px;
    }

    .eventos-galeria {
        max-width: 820px;

        column-gap: 35px;
        row-gap: 60px;
    }

    .evento-foto {
        max-width: 380px;
    }

    .eventos-diferenciais {
        max-width: 900px;

        column-gap: 20px;
    }

    .evento-icone {
        width: 56px;
        height: 56px;

        flex-basis: 56px;

        font-size: 21px;
    }

    .evento-diferencial strong {
        font-size: 1.4rem;
    }

    .evento-diferencial span {
        font-size: 0.95rem;
    }
}


/* ==========================================================
   CELULARES
   ========================================================== */

@media (max-width: 768px) {

    .eventos-section {
        padding:
            75px
            clamp(18px, 5vw, 28px);
    }


    /* ------------------------------------------------------
       CABEÇALHO
    ------------------------------------------------------ */

    .eventos-header {
        margin-bottom: 48px;
    }

    .eventos-label {
        font-size: 0.68rem;
        letter-spacing: 3px;
    }

    .eventos-header h2 {
        font-size: clamp(2.25rem, 9vw, 3rem);
    }

    .eventos-subtitulo {
        font-size: clamp(1rem, 4vw, 1.25rem);

        line-height: 1.6;
    }


    /* ------------------------------------------------------
       FOTOS
       UMA POR LINHA
       
       MAS CONTROLADAS
       PARA NÃO FICAREM GIGANTES
    ------------------------------------------------------ */

    .eventos-galeria {
        width: 100%;

        max-width: 520px;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 48px;
    }

    .evento-foto {
        width: 88%;

        max-width: 390px;

        margin: 0 auto;
    }

    .evento-foto::before {
        top: -9px;
        left: -9px;

        width: 55%;
        height: 55%;
    }

    .evento-foto img {
        width: 100%;
        height: auto;

        object-fit: contain;
    }


    /* ------------------------------------------------------
       DIFERENCIAIS
       2 + 2
    ------------------------------------------------------ */

    .eventos-diferenciais {
        width: 100%;

        max-width: 560px;

        margin-top: 65px;

        padding-top: 38px;

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        column-gap: 22px;

        row-gap: 40px;
    }


    /* ------------------------------------------------------
       ITEM
    ------------------------------------------------------ */

    .evento-diferencial {
        gap: 10px;

        text-align: center;
    }


    /* ------------------------------------------------------
       ÍCONE MAIOR
    ------------------------------------------------------ */

    .evento-icone {
        width: clamp(50px, 14vw, 62px);
        height: clamp(50px, 14vw, 62px);

        flex: 0 0 auto;

        font-size: clamp(19px, 5vw, 23px);
    }


    /* ------------------------------------------------------
       TÍTULO MAIOR
    ------------------------------------------------------ */

    .evento-diferencial strong {
        font-size:
            clamp(1.25rem, 5.5vw, 1.55rem);

        line-height: 1.15;

        max-width: 180px;
    }


    /* ------------------------------------------------------
       TEXTO
    ------------------------------------------------------ */

    .evento-diferencial span {
        font-size:
            clamp(0.86rem, 3.8vw, 1rem);

        line-height: 1.45;

        max-width: 180px;
    }


    /* ------------------------------------------------------
       BOTÃO
    ------------------------------------------------------ */

    .eventos-cta {
        margin-top: 48px;
    }
}


/* ==========================================================
   CELULARES PEQUENOS
   até 500px
========================================================== */

@media (max-width: 500px) {

    .eventos-section {
        padding-left: 16px;
        padding-right: 16px;
    }


    /* ------------------------------------------------------
       FOTOS
    ------------------------------------------------------ */

    .eventos-galeria {
        gap: 42px;
    }

    .evento-foto {
        width: 86%;

        max-width: 350px;
    }


    /* ------------------------------------------------------
       DIFERENCIAIS
    ------------------------------------------------------ */

    .eventos-diferenciais {
        column-gap: 12px;

        row-gap: 34px;

        margin-top: 58px;

        padding-top: 34px;
    }

    .evento-diferencial {
        gap: 9px;
    }

    .evento-icone {
        width: 52px;
        height: 52px;

        font-size: 19px;
    }

    .evento-diferencial strong {
        font-size:
            clamp(1.15rem, 5.5vw, 1.4rem);

        max-width: 165px;
    }

    .evento-diferencial span {
        font-size:
            clamp(0.82rem, 3.7vw, 0.95rem);

        max-width: 165px;
    }


    /* ------------------------------------------------------
       BOTÃO
    ------------------------------------------------------ */

    .eventos-botao {
        width: 100%;

        max-width: 320px;

        padding: 14px 18px;

        font-size: 0.61rem;

        letter-spacing: 1.4px;
    }
}


/* ==========================================================
   CELULARES MUITO PEQUENOS
   até 360px
========================================================== */

@media (max-width: 360px) {

    .eventos-section {
        padding-left: 12px;
        padding-right: 12px;
    }


    /* FOTOS */

    .eventos-galeria {
        gap: 38px;
    }

    .evento-foto {
        width: 88%;

        max-width: 320px;
    }


    /* DIFERENCIAIS */

    .eventos-diferenciais {
        column-gap: 7px;

        row-gap: 28px;
    }

    .evento-diferencial {
        gap: 7px;
    }

    .evento-icone {
        width: 46px;
        height: 46px;

        font-size: 17px;
    }

    .evento-diferencial strong {
        font-size: 1.08rem;

        max-width: 145px;
    }

    .evento-diferencial span {
        font-size: 0.78rem;

        max-width: 145px;
    }
}
