/* Estilos Gerais */
:root {
  --bg: #f6f2ee;
  --surface: #ffffff;
  --text: #000000;
  --muted: #a2a2a2;
  --accent: #33772f;
  --accent-hover: #40a13b;
  --accent-2: #ccb5a3;
  --border: rgba(0, 0, 0, 0.12);
  --header-height: 80px;
  --color-gold: var(--accent-2);
  --color-gold-light: #e2cfc1;
  --color-black: var(--text);
  --color-white: var(--surface);
  --color-dark-gray: #3d2f2f;
  --color-light-gray: var(--bg);
  --font-primary: 'Sail', serif;
  --font-secondary: 'Roboto', sans-serif;
  --font-accent: 'Rosario', sans-serif;
}

#main-content {
  opacity: 1;
  transition: opacity 0.5s ease;
  display: block !important; /* Remove a necessidade de mudar display */
}

/* ===== AJUSTE FINAL DE POSICIONAMENTO DAS ESTRELAS ===== */
.star-rating {
  display: flex;
  gap: 0.5rem;
  margin-left: 2rem;
  margin-top: 1rem;
  transform: translateX(-5px) translateY(-3px);
}

.star {
  font-size: 1.4rem;
  color: var(--color-gold);
  text-shadow:
    0 6px 16px rgba(0, 0, 0, 0.3),
    0 0 10px rgba(200, 162, 77, 0.35);
  animation: starPulse 2s infinite alternate;
  position: relative;
  top: -2px;
  left: -50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-secondary);
  color: var(--text);
  line-height: 1.6;
  background-color: var(--bg);
  transition: background-image 0.5s ease;
  overflow-x: hidden;
  padding-top: var(--header-height);
}

a {
  color: var(--accent);
}

a:hover {
  color: var(--accent-hover);
}

@media (max-width: 992px) {
  :root {
    --header-height: 64px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 110px 0;
}

.section-title {
  font-family: var(--font-primary);
  font-size: 2.9rem;
  color: var(--color-black);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
  font-weight: 400;
}

h1,
h2,
h3 {
  font-family: var(--font-primary);
  font-weight: 400;
  letter-spacing: 0.4px;
}

.divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  margin: 0 auto 50px;
}
.bg-light {
  background-color: var(--color-light-gray);
  background-image: linear-gradient(180deg, rgba(204, 181, 163, 0.08), rgba(245, 243, 238, 0));
}

/* Botões Luxuosos */
.btn {
    display: inline-block;
    padding: 14px 34px;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.6s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--accent);
    box-shadow: none;
}


/* Brilho animado estilo espelho */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    transition: all 0.6s ease-in-out;
}

/* Efeito ao passar o mouse */
.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    background: rgba(51, 119, 47, 0.14);
    box-shadow:
        0 12px 28px rgba(14, 14, 14, 0.2),
        0 0 0 1px rgba(51, 119, 47, 0.2);
}


/* Versão primária */
.btn-primary {
    color: #ffffff;
    background: var(--accent);
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    color: #ffffff;
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}


/* Cabeçalho */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--header-height);
    background-color: #0b0b0b;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    z-index: 9999;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid var(--border);
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 12px;
}

.logo img {
    height: 90px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.2));
}
nav {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.menu-link {
    font-family: var(--font-secondary);
    color: var(--color-black);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    text-shadow: none;
}

.menu-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.menu-link:hover {
    color: var(--color-gold);
}

.menu-link:hover:after {
    width: 100%;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    scroll-behavior: smooth;
}

/* Fundo fixo */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../images/webp/15.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    filter: brightness(0.58);
}

/* Overlay escuro sobre o fundo */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

.hero-content {
    position: relative;
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
    animation: fadeIn 2s ease-in-out;
}

.hero h1 {
    font-family: var(--font-primary);
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.4),
        0 3px 6px rgba(0, 0, 0, 0.3),
        0 5px 10px rgba(0, 0, 0, 0.2);
}

.hero h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 0.6px;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efeito de cursor piscando */
.cursor {
    display: inline-block;
    font-weight: 300;
    animation: blink 0.8s infinite;
    color: inherit;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ===== Seção Sobre ===== */
.section#sobre {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 80px 0;
}

.sobre-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/webp/13.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.5);
  z-index: -1;
  will-change: transform;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

#sobre .section-title {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.6);
}

#sobre .divider {
  width: 80px;
  height: 4px;
  background-color: var(--color-gold);
  margin: 0 auto 40px;
  border-radius: 2px;
}

.about-content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-image {
  flex: 0 1 500px; /* Largura fixa de 500px mas pode encolher */
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.about-text {
  flex: 0 1 500px; /* Mesma largura que a imagem */
  min-height: 500px;
  padding: 34px;
  background-color: rgba(245, 243, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(200, 162, 77, 0.18);
  text-align: left;
  color: var(--color-dark-gray);
  font-size: 1.1rem;
  line-height: 1.8;
  overflow: hidden;
}

.about-text p {
  margin-bottom: 25px;
}

/* Responsividade */
@media (max-width: 1100px) {
  .about-image, 
  .about-text {
    flex: 0 1 100%;
    max-width: 600px;
    height: auto;
  }
  
  .about-image img {
    max-height: 400px;
  }
  
  .about-content {
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .about-image, 
  .about-text {
    flex: 0 1 100%;
    max-width: 100%;
  }
  
  .about-image img {
    max-height: 350px;
  }
  
  .about-text {
    padding: 20px;
  }
}

/* Fundo da Seção Serviços */
#servicos {
    background: linear-gradient(180deg, #fef9f1 0%, #fff 100%);
    padding: 80px 20px;
    box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Título da seção */
#servicos .section-title {
    color: #000;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

/* Grade de Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Card de Serviço */
.service-item {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 42px 32px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid rgba(200, 162, 77, 0.18);
    box-shadow:
        0 16px 30px rgba(14, 14, 14, 0.12),
        0 6px 16px rgba(14, 14, 14, 0.06);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
}


#servicos {
    background: 
        linear-gradient(180deg, #fef9f1 0%, #fff 100%),
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-blend-mode: overlay;
    padding: 100px 20px;
    box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 70px;
    text-align: center;
}

#servicos .section-title {
    color: #000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding: 0 30px;
    text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25);
}

.title-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f4e8c1, #d4af37, #f4e8c1);
    border-radius: 2px;
    margin: 0 auto;
    animation: goldShine 3s linear infinite;
    background-size: 200% 100%;
}

@keyframes goldShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.service-item {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 42px 32px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid rgba(200, 162, 77, 0.18);
    box-shadow:
        0 16px 30px rgba(14, 14, 14, 0.12),
        0 6px 16px rgba(14, 14, 14, 0.06);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
}


.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-item:hover {
    transform: translateY(-15px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.2),
        -10px 15px 40px rgba(0, 0, 0, 0.1);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-item h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--color-black);
    font-weight: 600;
}

/* Seção de menus especiais */
.special-menus {
    background-color: rgba(255, 255, 255, 0.96);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    text-align: center;
    border: 1px solid rgba(200, 162, 77, 0.1);
}

.special-menus h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--color-black);
    margin-bottom: 20px;
    font-weight: 600;
}

.special-menus p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Tipos de culinária com visual de botão espelhado */
.cuisine-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.cuisine-types span {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-white);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow:
        0 5px 15px rgba(200, 162, 77, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cuisine-types span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    transition: all 0.6s ease-in-out;
}

.cuisine-types span:hover::before {
    left: 100%;
}

.cuisine-types span:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(200, 162, 77, 0.3);
}

/* Seção Galeria */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: 
        transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.gallery-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover:after {
    opacity: 1;
}

/* Modal da Galeria */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(200, 162, 77, 0.3);
    animation: zoom 0.4s ease;
}

@keyframes zoom {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--color-white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--color-gold);   
    transform: rotate(90deg);
}

/* Seção Contato */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

#contato .section-title {
  color: #000;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(200, 162, 77, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--color-black);
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(200, 162, 77, 0.1);
    background-color: white;
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(200, 162, 77, 0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.info-item a {
    color: var(--color-dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.info-item a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.info-item a:hover {
    color: var(--color-gold);
}

.info-item a:hover:after {
    width: 100%;
}

.map {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(200, 162, 77, 0.1);
}

.map iframe {
    width: 100%;
    height: 320px;
    display: block;
    border: 0;
}

/* Rodapé */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo img {
    height: 90px;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.footer-info p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    letter-spacing: 1px;
    color: var(--muted);
}

/* Botão WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #1b3c2a 0%, #25d366 55%, #7ad7a6 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    box-shadow:
        0 12px 28px rgba(14, 14, 14, 0.25),
        0 0 0 1px rgba(200, 162, 77, 0.3);
    z-index: 999;
    animation: pulse 2.4s infinite;
    transition: all 0.6s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(200, 162, 77, 0.4);
    text-decoration: none;
}


.whatsapp-btn:hover {
    transform: scale(1.06) translateY(-4px);
    box-shadow:
        0 16px 32px rgba(14, 14, 14, 0.3),
        0 0 0 1px rgba(200, 162, 77, 0.45);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.4rem;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .logo img {
        height: 80px;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .contact-container {
        gap: 30px;
    }
    
    .map iframe {
        width: 100%;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .logo img {
        height: 80px;
    }
    
    .about-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .about-text {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .star-rating {
        margin-left: 0;
        transform: translateX(0) translateY(0);
    }
    
    .star {
        left: 0;
    }
    
    .cuisine-types {
        gap: 10px;
    }
    
    .cuisine-types span {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .contact-form, .contact-info {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 20px;
        left: 20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .logo img {
        height: 70px;
    }
    
    .special-menus {
        padding: 25px 15px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    .form-group input, .form-group textarea {
        padding: 12px;
    }
    
    .close-modal {
        top: 10px;
        right: 20px;
        font-size: 32px;
    }
    
    .modal-content {
        max-width: 95%;
    }
    
    .footer-logo img {
        height: 80px;
    }
}

/* Ajustes específicos para dispositivos muito pequenos */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-item h3 {
        font-size: 1.3rem;
    }
}

/* Refinos premium e acessibilidade */
#header.scrolled {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-bottom-color: var(--border);
}

#header.scrolled .logo img {
  height: 56px;
}

.hero .btn-primary {
  color: #ffffff;
  background: var(--accent);
}

.hero .btn-primary:hover {
  background: var(--accent-hover);
}

.menu-link:focus-visible,
.btn:focus-visible,
.whatsapp-btn:focus-visible,
.close-modal:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.local-section {
  background-color: var(--color-dark-gray);
  color: var(--color-white);
}

.local-section .section-title {
  color: var(--color-white);
  text-shadow: none;
}

.local-section .divider {
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.section-lead {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1.1rem;
  font-family: 'Roboto Slab', serif;
  color: rgba(245, 243, 238, 0.82);
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.authority-item {
  background: rgba(245, 243, 238, 0.08);
  border: 1px solid rgba(200, 162, 77, 0.25);
  padding: 24px;
  border-radius: 16px;
}

.authority-item h3 {
  font-family: var(--font-primary);
  color: var(--color-white);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.authority-item p {
  color: rgba(245, 243, 238, 0.8);
}

#servicos {
  background: linear-gradient(180deg, #f7f3ea 0%, #fff 100%);
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  background-blend-mode: normal;
}

#servicos::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/webp/14.webp') center/cover no-repeat;
  opacity: 0.08;
  filter: saturate(0.8);
  pointer-events: none;
}

#servicos::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M80 12c16 22 20 42 6 64 22-10 34-28 30-52-6-34-40-30-36-12z' fill='%23c8a24d' fill-opacity='0.08'/%3E%3Cpath d='M40 120c10 12 22 18 40 18s30-6 40-18' stroke='%23c8a24d' stroke-opacity='0.12' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.7;
  pointer-events: none;
}

#servicos .container {
  position: relative;
  z-index: 1;
}

.service-item {
  border: 1px solid rgba(200, 162, 77, 0.18);
  box-shadow:
    0 18px 35px rgba(14, 14, 14, 0.12),
    -5px 10px 25px rgba(14, 14, 14, 0.08);
  transition: all 0.5s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 50px rgba(14, 14, 14, 0.18),
    -10px 15px 35px rgba(14, 14, 14, 0.08);
}

.special-menus {
  border: 1px solid rgba(200, 162, 77, 0.12);
}

.gallery-img {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.contact-form,
.contact-info {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(14, 14, 14, 0.08);
  border: 1px solid rgba(200, 162, 77, 0.12);
}

@keyframes starPulse {
  from {
    opacity: 0.7;
    transform: translateY(-1px) scale(1);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  #main-content {
    opacity: 1 !important;
  }

  .service-item,
  .gallery-item,
  .about-text,
  .special-menus,
  .contact-form,
  .contact-info,
  .authority-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

.close-modal {
  background: none;
  border: none;
}

/* Ajustes de visual profissional adicional */
body {
  background: radial-gradient(circle at top, rgba(204, 181, 163, 0.12), transparent 45%), var(--bg);
}

.section-title {
  letter-spacing: 0.4px;
}

.divider {
  width: 120px;
}

.hero::before {
  background: linear-gradient(180deg, rgba(61, 47, 47, 0.6), rgba(42, 31, 31, 0.85));
}

.hero h1 {
  font-size: 4.2rem;
  letter-spacing: 1.2px;
}

.hero h2 {
  font-size: 1.35rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn {
  padding: 16px 38px;
  text-transform: none;
  letter-spacing: 0.6px;
}

.services-grid {
  gap: 36px;
}

.service-item {
    border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 243, 238, 0.9));
}

.service-item h3 {
  letter-spacing: 0.5px;
}

.gallery-item {
  border: 1px solid rgba(204, 181, 163, 0.18);
}

.gallery-img {
  height: 300px;
}

.contact-form input,
.contact-form textarea {
  background-color: rgba(245, 243, 238, 0.6);
  border-color: rgba(200, 162, 77, 0.2);
}

footer {
  background: #000000;
}

footer .footer-info p {
  letter-spacing: 0.5px;
}

.whatsapp-btn {
  border-radius: 50%;
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 3.4rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.6rem;
  }

  .hero h2 {
    font-size: 1.15rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .btn {
    padding: 14px 30px;
  }
}

/* Carrossel hero */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

/* Navbar luxuosa */
#header .container {
  padding: 0 12px;
}

#header {
  background: #0b0b0b;
}

.logo img {
  height: 60px;
}

.star-rating {
  gap: 0.35rem;
  padding: 6px 14px;
  border: 1px solid rgba(200, 162, 77, 0.35);
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.06);
  box-shadow: inset 0 0 12px rgba(200, 162, 77, 0.12);
}

.star {
  font-size: 1.15rem;
  color: var(--color-gold);
  text-shadow:
    0 4px 12px rgba(200, 162, 77, 0.45),
    0 0 8px rgba(200, 162, 77, 0.35);
}

/* Estrelas com acabamento joia */
.star-rating {
  position: relative;
  overflow: hidden;
}

.star {
  background: linear-gradient(140deg, #f7e4b1 0%, #c8a24d 45%, #f1d48a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 6px rgba(200, 162, 77, 0.4));
}

.star-rating::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  transform: translateX(-120%);
  animation: starShine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes starShine {
  0%, 60% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

.menu-link {
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .logo img {
    height: 78px;
  }

  .star-rating {
    padding: 4px 10px;
  }
}

/* Selo premium no topo */
.brand-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  border-radius: 18px;
  border: 1px solid rgba(200, 162, 77, 0.35);
  background: linear-gradient(135deg, rgba(14, 14, 14, 0.08), rgba(245, 243, 238, 0.65));
  box-shadow: 0 10px 24px rgba(14, 14, 14, 0.08);
  text-align: center;
  min-width: 140px;
  position: relative;
}

.brand-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.brand-badge:hover::after {
  opacity: 1;
}

.badge-label {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-black);
}

.badge-sub {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: rgba(28, 26, 23, 0.7);
}

.badge-stars {
  display: flex;
  gap: 4px;
  line-height: 1;
}

.badge-stars span {
  font-size: 1.05rem;
  background: linear-gradient(140deg, #f7e4b1 0%, #c8a24d 45%, #f1d48a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 6px rgba(200, 162, 77, 0.4));
}

@media (max-width: 768px) {
  .brand-badge {
    min-width: 120px;
    padding: 8px 12px;
  }

  .badge-label {
    font-size: 0.85rem;
  }
}

/* Servicos ultra premium (sem arredondado) */
#servicos .service-item {
  border-radius: 0;
  background: #ffffff;
  box-shadow:
    0 14px 26px rgba(14, 14, 14, 0.12),
    0 4px 12px rgba(14, 14, 14, 0.06);
}

#servicos .service-item:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 34px rgba(14, 14, 14, 0.18),
    0 8px 18px rgba(14, 14, 14, 0.08);
}

#servicos .service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 162, 77, 0.5);
  background: rgba(245, 243, 238, 0.6);
  border-radius: 0;
  font-size: 1.6rem;
  color: var(--color-gold);
}

#servicos .service-item:hover .service-icon {
  transform: translateY(-2px);
}

#servicos .service-item h3 {
  letter-spacing: 0.6px;
}

/* Novas secoes premium */
.section-dark {
  background: linear-gradient(180deg, #3d2f2f 0%, #2a1f1f 100%);
  color: var(--color-white);
}

.section-dark .section-title {
  color: var(--color-white);
}

.section-dark .divider {
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.section-dark h3,
.section-dark p,
.section-dark li,
.section-dark span {
  color: rgba(245, 243, 238, 0.9);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.differential-item {
  border: 1px solid rgba(200, 162, 77, 0.35);
  padding: 28px;
  background: rgba(245, 243, 238, 0.06);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.differential-item h3 {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--color-white);
}

.differential-item p {
  color: rgba(245, 243, 238, 0.8);
}

.experience-timeline {
  display: grid;
  gap: 22px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(200, 162, 77, 0.2);
  background: rgba(245, 243, 238, 0.55);
}

.step-number {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--color-gold);
}

.timeline-step h3 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.testimonials-section {
  position: relative;
  background: linear-gradient(180deg, #f7f1e8 0%, #ffffff 70%);
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(204, 181, 163, 0.18), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(51, 119, 47, 0.08), transparent 40%),
    radial-gradient(rgba(204, 181, 163, 0.12) 1px, transparent 1px);
  background-size: auto, auto, 70px 70px;
  pointer-events: none;
}

.testimonial-grid {
  position: relative;
  z-index: 1;
}

.testimonial-card {
  border: 1px solid rgba(204, 181, 163, 0.25);
  background: rgba(255, 255, 255, 0.96);
  padding: 28px;
  box-shadow: 0 20px 36px rgba(14, 14, 14, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 44px rgba(14, 14, 14, 0.16);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-photo {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(204, 181, 163, 0.45);
  box-shadow: 0 10px 18px rgba(14, 14, 14, 0.12);
  flex-shrink: 0;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-meta h3 {
  font-family: var(--font-secondary);
  margin: 0;
  font-size: 1.02rem;
  text-transform: none;
  letter-spacing: 0.2px;
  font-weight: 600;
  color: var(--color-dark-gray);
}

.testimonial-meta span {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: rgba(28, 26, 23, 0.55);
}

.testimonial-card p {
  margin: 0;
  font-style: italic;
  color: rgba(28, 26, 23, 0.78);
  line-height: 1.7;
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-dark-gray);
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 24px;
  }

  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cta-section {
  background: linear-gradient(120deg, rgba(61, 47, 47, 0.95), rgba(42, 31, 31, 0.95)), url('../images/webp/14.webp') center/cover no-repeat;
  color: var(--color-white);
  text-align: center;
}

.cta-section .section-title {
  color: var(--color-white);
  margin-bottom: 12px;
}

.cta-section p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(245, 243, 238, 0.85);
}

.cta-section h3,
.cta-section span {
  color: rgba(245, 243, 238, 0.9);
}

@media (max-width: 768px) {
  .timeline-step {
    grid-template-columns: 1fr;
  }
}

/* Correcoes finais de contraste e acabamento */
.section-dark,
.section-dark .section-title,
.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark li,
.section-dark span,
.section-dark a {
  color: rgba(245, 243, 238, 0.92);
}

.local-section,
.local-section .section-title,
.local-section h2,
.local-section h3,
.local-section p,
.local-section span,
.local-section a {
  color: rgba(245, 243, 238, 0.92);
}

.cta-section,
.cta-section .section-title,
.cta-section h2,
.cta-section p,
.cta-section span {
  color: rgba(245, 243, 238, 0.92);
}

.cta-section .btn-primary {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
}

.cta-section .btn-primary:hover {
  background: var(--accent-hover);
}

.section-dark .divider,
.local-section .divider,
.cta-section .divider {
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* Header moderno + sidebar luxuoso */
#header {
  background: #0b0b0b;
  border-bottom: 1px solid var(--border);
}

#header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 12px;
}

#header nav {
  margin-top: 0;
  justify-self: end;
  gap: 16px;
}

#header .navbar-brand,
#header .nav-link.menu-link,
#header .brand-name,
#header .brand-since {
  color: rgba(255, 255, 255, 0.92);
}

#header .nav-link.menu-link {
  font-family: var(--font-secondary);
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: none;
}

#header .nav-link.menu-link:hover {
  color: var(--accent-2);
}

#header .brand-meta {
  color: rgba(255, 255, 255, 0.7);
}

#header .navbar-toggler {
  border-color: rgba(204, 181, 163, 0.7);
}

#header .navbar-toggler-icon {
  filter: none;
}

.brand-badge {
  justify-self: center;
}

/* Header minimalista refinado */
#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
  padding: 0 12px;
}

#header nav {
  margin-top: 0;
  margin-left: auto;
}

.brand-badge {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  min-width: auto;
  gap: 2px;
  align-items: flex-start;
}

.brand-badge::after {
  display: none;
}

.badge-label {
  font-size: 0.75rem;
  letter-spacing: 1.8px;
  color: var(--color-black);
}

.badge-sub {
  font-size: 0.7rem;
  color: rgba(28, 26, 23, 0.7);
}

.badge-stars {
  gap: 2px;
}

.badge-stars span {
  font-size: 0.7rem;
  color: var(--color-gold);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  filter: none;
}

/* Sobre nós - visual moderno */
#sobre {
  background: linear-gradient(180deg, #f7f2e8 0%, #ffffff 65%);
}

#sobre .sobre-background {
  opacity: 0.08;
  filter: grayscale(1) brightness(1.2);
}

#sobre .section-title {
  color: var(--color-black);
  text-shadow: none;
}

#sobre .divider {
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

#sobre .about-content {
  align-items: center;
  gap: 48px;
}

#sobre .about-image {
  position: relative;
}

#sobre .about-image::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(200, 162, 77, 0.3);
  pointer-events: none;
}

#sobre .about-image img {
  border-radius: 0;
  box-shadow: 0 18px 32px rgba(14, 14, 14, 0.18);
}

#sobre .about-text {
  background: #ffffff;
  border-radius: 0;
  border: 1px solid rgba(200, 162, 77, 0.15);
  border-left: 3px solid var(--color-gold);
  padding: 38px;
  box-shadow: 0 18px 30px rgba(14, 14, 14, 0.08);
}

#sobre .about-text p {
  font-size: 1.05rem;
}

#sobre .about-text p:first-child {
  font-weight: 500;
}

@media (max-width: 768px) {
  #sobre .about-content {
    gap: 28px;
  }

  #sobre .about-image::before {
    inset: -8px;
  }
}

/* Sobre nos - luxo minimalista */
#sobre {
  background: var(--bg);
}

#sobre .sobre-background {
  display: none;
}

#sobre .section-title {
  color: var(--text);
  text-transform: none;
  letter-spacing: 0.4px;
  font-weight: 400;
  font-size: 2.4rem;
}

#sobre .divider {
  width: 140px;
  height: 1px;
  margin: 16px auto 48px;
}

#sobre .about-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

#sobre .about-image {
  width: 100%;
  max-width: 560px;
  justify-self: center;
}

#sobre .about-image::before {
  inset: -12px;
  border: 1px solid rgba(200, 162, 77, 0.25);
}

#sobre .about-image img {
  border-radius: 0;
  box-shadow: none;
  max-height: none;
  filter: saturate(0.9);
}

#sobre .about-text {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  min-height: auto;
  height: auto;
}

#sobre .about-text p {
  font-size: 1.06rem;
  line-height: 1.9;
  color: rgba(28, 26, 23, 0.86);
}

#sobre .about-text p:first-child {
  font-weight: 500;
}

@media (max-width: 900px) {
  #sobre .about-content {
    grid-template-columns: 1fr;
  }

  #sobre .about-image {
    max-width: 100%;
  }

  #sobre .about-image::before {
    inset: -8px;
  }
}

/* Bootstrap layout overrides (moderno e minimalista) */
#header.navbar {
  padding: 0;
  min-height: var(--header-height);
}

#header .navbar-brand img {
  height: 60px;
}

.brand-meta {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  color: rgba(28, 26, 23, 0.7);
}

.brand-name {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  text-transform: none;
  font-weight: 500;
  color: var(--color-black);
}

.brand-since {
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.navbar-nav .nav-link.menu-link {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--color-black);
  padding: 0.25rem 0;
}

.navbar-nav .nav-link.menu-link:hover {
  color: var(--color-gold);
}

.navbar-toggler {
  border: 1px solid rgba(200, 162, 77, 0.4);
  border-radius: 6px;
  padding: 0.35rem 0.55rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.services-grid.row,
.gallery-grid.row,
.contact-container.row,
.differentials-grid.row,
.testimonial-grid.row,
.authority-grid.row,
.experience-timeline.row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.services-grid.row {
  margin-bottom: 2.5rem;
}

.gallery-grid.row {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 992px) {
  #header .navbar-brand img {
    height: 48px;
  }

  .navbar-nav .nav-link.menu-link {
    color: rgba(245, 243, 238, 0.9);
  }
}

@media (max-width: 992px) {
  #navbarMain {
    background: rgba(14, 14, 14, 0.96);
    padding: 16px 18px;
    border: 1px solid var(--border);
    margin-top: 12px;
    flex-basis: auto;
    flex-grow: 0;
    width: min(360px, 100%);
    margin-left: auto;
    border-radius: 12px;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.25);
  }

  #navbarMain .navbar-nav {
    gap: 0.35rem;
  }

  #navbarMain .nav-link.menu-link {
    font-size: 0.82rem;
    letter-spacing: 1.6px;
    padding: 0.55rem 0;
  }

  #navbarMain .nav-link.menu-link {
    color: rgba(245, 243, 238, 0.9);
  }
}

#header nav {
  margin-top: 0;
}

/* Container alinhado ao Bootstrap */
.container {
  width: 100%;
  max-width: 1320px;
  padding-left: var(--bs-gutter-x, 1.5rem);
  padding-right: var(--bs-gutter-x, 1.5rem);
}

#header nav.navbar-collapse.collapse:not(.show) {
  display: none;
}

#header nav.navbar-collapse.show {
  display: block;
}

#navbarMain.collapsing {
  transition: none;
}

@media (min-width: 992px) {
  #header nav.navbar-collapse {
    display: flex;
  }
}

#sobre .about-content.row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.services-grid.row,
.gallery-grid.row,
.contact-container.row,
.differentials-grid.row,
.testimonial-grid.row,
.authority-grid.row,
.experience-timeline.row {
  margin-left: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
  margin-right: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
  padding-left: 0;
  padding-right: 0;
}

.form-control {
  border-radius: 0;
}

/* Logo retangular premium */
.brand-logo {
  border-radius: 0;
  background: transparent !important;
  padding: 0;
  object-fit: contain;
}

.luxury-logo {
  background: transparent !important;
}

#header .navbar-brand img.brand-logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
}

@media (max-width: 992px) {
  #header .navbar-brand img.brand-logo {
    height: 48px;
  }
}

.footer-logo img.brand-logo {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
}

@media (max-width: 768px) {
  .footer-logo img.brand-logo {
    height: 80px;
  }
}

/* Carrossel de fundo - Diferenciais */
#diferenciais {
  position: relative;
  overflow: hidden;
}

#diferenciais .section-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#diferenciais .section-carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61, 47, 47, 0.7), rgba(42, 31, 31, 0.85));
}

#diferenciais .section-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

#diferenciais .section-slide.is-active {
  opacity: 1;
}

#diferenciais .container {
  position: relative;
  z-index: 1;
}

/* Header hide on scroll + logo size desktop */
#header {
  will-change: transform;
}

#header.header-hidden {
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@media (min-width: 992px) {
  #header .navbar-brand img,
  #header .navbar-brand img.brand-logo {
    height: 60px;
  }
}

/* Sobre nós - painel Bootstrap moderno */
.about-panel {
  background: #ffffff;
  border: 1px solid rgba(200, 162, 77, 0.2);
  border-left: 4px solid var(--color-gold);
}

@media (max-width: 992px) {
  .about-panel {
    margin-top: 12px;
  }
}

/* Carrossel de momentos */
.media-carousel {
  width: 100%;
  border: 1px solid rgba(200, 162, 77, 0.2);
  box-shadow: 0 18px 30px rgba(14, 14, 14, 0.1);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.media-carousel .carousel-item img {
  height: 420px;
  object-fit: cover;
}

.media-carousel .carousel-link {
  display: block;
  position: relative;
  text-decoration: none;
}

.media-carousel .carousel-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.1), rgba(14, 14, 14, 0.65));
}

.media-carousel .carousel-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 10px 16px;
  border: 1px solid rgba(200, 162, 77, 0.35);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: rgba(245, 243, 238, 0.95);
  background: rgba(14, 14, 14, 0.55);
}

@media (max-width: 768px) {
  .media-carousel .carousel-item img {
    height: 300px;
  }
}

#momentos.momentos-section {
  position: relative;
  background: linear-gradient(180deg, #f7f2ea 0%, #f6f1e8 45%, #ffffff 100%);
  overflow: hidden;
}

#momentos.momentos-section::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -120px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(204, 181, 163, 0.35);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}

#momentos.momentos-section::after {
  content: '';
  position: absolute;
  bottom: -180px;
  left: -160px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(204, 181, 163, 0.25);
  border-radius: 50%;
  opacity: 0.35;
  pointer-events: none;
}

#momentos .momentos-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

#momentos .momentos-header .divider {
  margin: 0 auto 28px;
}

#momentos .momentos-kicker {
  display: inline-block;
  font-family: var(--font-accent);
  letter-spacing: 2.6px;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(61, 47, 47, 0.7);
  margin-bottom: 14px;
}

#momentos .momentos-sub {
  margin: 12px auto 0;
  max-width: 620px;
  font-size: 1.05rem;
  color: rgba(61, 47, 47, 0.72);
}

#momentos .media-carousel {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(204, 181, 163, 0.7);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(204, 181, 163, 0.25),
    0 0 40px rgba(204, 181, 163, 0.18);
  background: radial-gradient(circle at top, rgba(204, 181, 163, 0.12), transparent 55%),
    linear-gradient(135deg, rgba(18, 15, 13, 0.98), rgba(9, 9, 9, 0.98));
  padding: clamp(12px, 2vw, 26px);
  overflow: hidden;
  border-radius: 20px;
}

#momentos .media-carousel::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(226, 207, 193, 0.45);
  border-radius: 16px;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(204, 181, 163, 0.18);
  pointer-events: none;
}

#momentos .media-carousel::after {
  content: '';
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(204, 181, 163, 0.35);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

#momentos .carousel-inner,
#momentos .carousel-item,
#momentos .carousel-link {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

#momentos .carousel-inner {
  border-radius: 16px;
  background: #0b0b0b;
  border: 1px solid rgba(204, 181, 163, 0.35);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.6);
}

#momentos .carousel-link {
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(204, 181, 163, 0.12), rgba(0, 0, 0, 0.08));
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(204, 181, 163, 0.35);
}

#momentos .media-carousel .carousel-item img {
  width: 100%;
  height: clamp(240px, 45vh, 520px);
  display: block;
  position: relative;
  z-index: 0;
  object-fit: cover;
  object-position: center;
  background: #0b0b0b;
  filter: saturate(1.04) contrast(1.06);
}

#momentos .carousel-link::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45));
}

#momentos .carousel-link::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(204, 181, 163, 0.55);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 1;
  pointer-events: none;
}

#momentos .carousel-control-prev,
#momentos .carousel-control-next {
  width: 38px;
  height: 38px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  opacity: 0.35;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(204, 181, 163, 0.35);
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

#momentos .carousel-control-prev {
  left: 16px;
}

#momentos .carousel-control-next {
  right: 16px;
}

#momentos .carousel-control-prev-icon,
#momentos .carousel-control-next-icon {
  width: 0.95rem;
  height: 0.95rem;
  filter: invert(1);
}

#momentos .carousel-fade .carousel-item {
  transition: opacity 1.4s ease-in-out;
}

#momentos .carousel-pair {
  margin: 0;
}

#momentos .carousel-col {
  padding: clamp(4px, 0.8vw, 10px);
}

@media (hover: hover) {
  #momentos .media-carousel:hover .carousel-control-prev,
  #momentos .media-carousel:hover .carousel-control-next {
    opacity: 0.7;
    background: rgba(0, 0, 0, 0.55);
    border-color: rgba(204, 181, 163, 0.6);
  }
}

@media (max-width: 768px) {
  #momentos .momentos-header {
    margin-bottom: 30px;
  }

  #momentos .momentos-sub {
    font-size: 1rem;
  }

  #momentos .media-carousel {
    padding: 10px;
    border-radius: 16px;
  }

  #momentos .media-carousel::before {
    inset: 7px;
    border-radius: 12px;
  }

  #momentos .media-carousel::after {
    inset: 16px;
    border-radius: 10px;
  }

  #momentos .media-carousel .carousel-item img {
    height: clamp(200px, 38vh, 320px);
  }

  #momentos .carousel-control-prev,
  #momentos .carousel-control-next {
    width: 32px;
    height: 32px;
  }

  #momentos .carousel-control-prev {
    left: 10px;
  }

  #momentos .carousel-control-next {
    right: 10px;
  }
}

/* Rodape profissional */
.site-footer {
  background: radial-gradient(circle at top, rgba(204, 181, 163, 0.18), transparent 55%), #0b0b0b;
  color: rgba(245, 243, 238, 0.9);
  padding: 80px 0 45px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204, 181, 163, 0.55), transparent);
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  align-items: start;
}

.site-footer .footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer .footer-logo {
  margin-bottom: 6px;
}

.site-footer .footer-logo img.brand-logo {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.site-footer .footer-tagline {
  color: rgba(245, 243, 238, 0.72);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 320px;
}

.site-footer .btn-footer {
  align-self: flex-start;
  padding: 12px 26px;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
}

.site-footer h3 {
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.85rem;
  color: var(--accent-2);
  margin-bottom: 6px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: rgba(245, 243, 238, 0.78);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--accent-2);
}

.site-footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(245, 243, 238, 0.78);
  line-height: 1.6;
}

.site-footer .footer-contact i {
  color: var(--accent-2);
  font-size: 1rem;
  margin-top: 4px;
}

.site-footer .footer-info p,
.site-footer .footer-note {
  color: rgba(245, 243, 238, 0.72);
  margin: 0;
  line-height: 1.7;
}

.site-footer .footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(204, 181, 163, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  color: rgba(245, 243, 238, 0.65);
  font-size: 0.95rem;
}

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

  .site-footer .btn-footer {
    align-self: stretch;
    text-align: center;
  }

  .site-footer .footer-tagline {
    max-width: 100%;
  }

  .site-footer .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .site-footer .footer-logo img.brand-logo {
    height: 72px;
  }
}

/* About section upgrade */
#sobre.about-section {
  position: relative;
  background: linear-gradient(180deg, #f8f3ed 0%, #ffffff 70%);
  overflow: hidden;
}

#sobre.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(204, 181, 163, 0.2), transparent 40%),
    radial-gradient(circle at 85% 12%, rgba(51, 119, 47, 0.08), transparent 45%),
    radial-gradient(rgba(204, 181, 163, 0.12) 1px, transparent 1px);
  background-size: auto, auto, 60px 60px;
  opacity: 0.85;
  pointer-events: none;
}

#sobre.about-section .container {
  position: relative;
  z-index: 1;
}

#sobre.about-section .about-content {
  align-items: center;
}

#sobre.about-section .about-image {
  position: relative;
}

#sobre.about-section .about-image::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(204, 181, 163, 0.35);
  pointer-events: none;
}

#sobre.about-section .about-image::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

#sobre.about-section .about-image img {
  border-radius: 0;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.18);
  filter: saturate(1.02);
}

#sobre.about-section .about-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(204, 181, 163, 0.2);
  box-shadow: 0 20px 35px rgba(14, 14, 14, 0.08);
}

#sobre.about-section .about-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(28, 26, 23, 0.6);
  margin-bottom: 10px;
}

#sobre.about-section .about-lead {
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--color-dark-gray);
  margin-bottom: 12px;
}

#sobre.about-section .about-panel p {
  color: rgba(28, 26, 23, 0.8);
}

#sobre.about-section .about-highlights {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

#sobre.about-section .about-highlight {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}

#sobre.about-section .about-highlight-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(204, 181, 163, 0.4);
  color: var(--accent-2);
  background: rgba(204, 181, 163, 0.12);
}

#sobre.about-section .about-highlight h3 {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 4px;
  color: var(--color-dark-gray);
}

#sobre.about-section .about-highlight p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(28, 26, 23, 0.75);
}

#sobre.about-section .about-stats {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(204, 181, 163, 0.25);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

#sobre.about-section .about-stat {
  padding: 12px;
  border: 1px solid rgba(204, 181, 163, 0.2);
  background: rgba(245, 243, 238, 0.6);
}

#sobre.about-section .stat-value {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-dark-gray);
}

#sobre.about-section .stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(28, 26, 23, 0.55);
}

@media (max-width: 768px) {
  #sobre.about-section .about-image::before {
    inset: -8px;
  }

  #sobre.about-section .about-image::after {
    inset: 6px;
  }
}

/* Galeria luxuosa */
#galeria.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(204, 181, 163, 0.16), transparent 45%),
    radial-gradient(circle at 85% 8%, rgba(51, 119, 47, 0.12), transparent 40%),
    linear-gradient(180deg, #1c1716 0%, #0d0b0a 100%);
  color: rgba(245, 243, 238, 0.9);
}

#galeria.gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(204, 181, 163, 0.08), transparent 55%),
    radial-gradient(rgba(204, 181, 163, 0.14) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  background-size: auto, 140px 140px, 180px 180px;
  opacity: 0.5;
  pointer-events: none;
}

#galeria.gallery-section::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(204, 181, 163, 0.12);
  opacity: 0.6;
  pointer-events: none;
}

#galeria.gallery-section .container {
  position: relative;
  z-index: 1;
}

#galeria.gallery-section .section-title {
  color: rgba(245, 243, 238, 0.95);
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

#galeria.gallery-section .divider {
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

#galeria.gallery-section .gallery-grid {
  margin-top: 10px;
}

#galeria.gallery-section .gallery-item {
  border: 1px solid rgba(204, 181, 163, 0.35);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.7));
  box-shadow:
    var(--bs-box-shadow-lg),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 30px rgba(204, 181, 163, 0.12);
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.6s ease;
}

#galeria.gallery-section .gallery-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  overflow: hidden;
  background: #0b0b0b;
  border: 1px solid rgba(204, 181, 163, 0.2);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.7);
  border-radius: inherit;
}

#galeria.gallery-section .gallery-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(204, 181, 163, 0.6);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}

#galeria.gallery-section .gallery-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.65));
  opacity: 0.25;
  transition: opacity 0.6s ease;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
}

#galeria.gallery-section .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  position: absolute;
  inset: 0;
  filter: saturate(1.06) contrast(1.08);
  transition: transform 1s ease, filter 0.6s ease;
}

@supports not (aspect-ratio: 1 / 1) {
  #galeria.gallery-section .gallery-frame {
    height: 0;
    padding-top: 75%;
  }
}

#galeria.gallery-section .gallery-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 30px 55px rgba(0, 0, 0, 0.5),
    0 0 35px rgba(204, 181, 163, 0.18);
}

#galeria.gallery-section .gallery-item:hover .gallery-img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.12);
}

#galeria.gallery-section .gallery-item:hover .gallery-frame::after {
  opacity: 0.65;
}

@media (max-width: 576px) {
  #galeria.gallery-section .gallery-frame::before {
    inset: 8px;
  }

  #galeria.gallery-section::after {
    inset: 12px;
  }
}
