/* CONFIGURAÇÕES GERAIS E RESETS */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #00040a;
    background-color: #fcfcfc;
    line-height: 1.6;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-minimal {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CABEÇALHO (NAVBAR) */
.main-header {
    background-color: #000008;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, #ffe066, #d4af37, #ffe066) 1;
}

.header-titulo {
    display: flex;
    align-items: left;
    gap: 0.75rem;
}

.logo-inline {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

/* Efeito de Letras Cursivas e Degradê Dourado */
.title-colorido {
    font-family: 'Arial Black', serif;
    font-size: 3.0rem;
    font-weight: 300;
    background: linear-gradient(to right, #C0C0C0 , #C0C0C0, #888885);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.1));
    text-align: center; 
    
}


.nav-menu a {
    text-decoration: none;
    color: #555555;
    margin-left: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #d4af37;
}

/* SEÇÃO HERO (FOTO GRANDE) */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: url('balcao.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    
}

.html {
    scroll-behavior: smooth; /* Faz a rolagem ficar suave e elegante */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 1, 58, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: #f7d206;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* From Uiverse.io by nikk7007 */ 
.bubbles {
  --c1: #0e0101; /* Recommendation: same background color */
  --c2: #ffffff;
  --size-letter: 20px;
  padding: 0.5em 1em;
  font-size: var(--size-letter);

  background-color: transparent;
  border: calc(var(--size-letter) / 6) solid var(--c2);
  border-radius: 0.2em;
  cursor: pointer;

  overflow: hidden;
  position: relative;
  transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);
}

.bubbles > .text {
  font-weight: 300;
  color: var(--c2);
  position: relative;
  z-index: 1;
  transition: color 700ms cubic-bezier(0.83, 0, 0.17, 1);
}

.bubbles::before {
  top: 0;
  left: 0;
}

.bubbles::after {
  top: 50%;
  left: 50%;
}

.bubbles::before,
.bubbles::after {
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  scale: 0;
  transition: 1000ms cubic-bezier(0.76, 0, 0.24, 1);

  background-color: var(--c2);
  border-radius: 50%;

  position: absolute;
  translate: -50% -50%;
}

.bubbles:hover {
  & > span {
    color: var(--c1);
  }
  &::before,
  &::after {
    scale: 1;
  }
}

.bubbles:active {
  scale: 0.98;
  filter: brightness(0.9);
}
/* SEÇÕES GENÉRICAS */
section {
    padding: 3rem 0;
    text-align: center;
}

.subtitle {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-size: 3.1rem;
}

.subtitle.light {
    color: #ffe066;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* DIVISÃO DE CORES DO SITE */
.fundo-branco {
    background-color: #01000f;
    color: #ffff;
}

.fundo-colorido {
    background: linear-gradient(135deg, #eeeddb, #00080f, #C0C0C0);
    color: #f5d548;
}

.fundo-colorido h2 {
    color: #ffffff;
    margin-bottom: 3rem;
}

/* VITRINE DE PRODUTOS COM FOTOS GRANDES (GRID) */
.grid-produtos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.produto-card-grande {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.produto-card-grande:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.card-img-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.produto-card-grande:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-info {
    padding: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #eec302;
}

.card-info p {
    font-size: 0.9rem;
    color: #dddddd;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* BOTÕES INTERATIVOS */
.btn-foto {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #f8f4f7;
    border: 2px solid #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    transition: all 0.3s;
}

.btn-foto:hover {
    background-color: #250212;
    color: #f6f8fa;
}

/* CONTATO & WHATSAPP */
.endereco-texto, .telefone-texto {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-contato {
    margin-top: 30px;
    color: #f4f5f8;
}


.btn-whatsapp {
    display: inline-block;
    padding: 15px 30px;
    background-color: #25d366;
    color: #110101;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(248, 250, 249, 0.3);
    transition: background-color 0.3s, transform 0.3s;
    margin: 10px 15px;
}

.btn-whatsapp:hover {
    background-color: #1ebd5c;
    transform: translateY(-3px);
}

/* RODAPÉ PRINCIPAL */
.main-footer {
    background-color: #010311;
    color: #777777;
    padding: 2rem 0;
    font-size: 0.85rem;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-texto {
    margin: 0;
    text-align: center;
}

.footer-redes {
    display: flex;
    gap: 1.25rem;
}

.footer-redes a {
    color: #1082ec;
    font-size: 2.5rem;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.footer-redes a:hover {
    color: #d4af37;
    transform: translateY(-3px);
}

/* RESPONSIVIDADE PARA CELULARES */
@media (max-width: 600px) {
    .container-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-texto {
        text-align: center;
    }
}

/* TABLETS (Telas médias) */
@media (max-width: 992px) {
    .grid-produtos {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content h2 {
        font-size: 2.8rem;
    }
}

/* SMARTPHONES (Telas pequenas) */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 15px;
    }
    .nav-menu a {
        margin: 0 10px;
    }
    .grid-produtos {
        grid-template-columns: 1fr;
    }
    .hero-section {
        height: 60vh;
    }
    .hero-content h2 {
        font-size: 2.2rem;
    }
    .card-img-wrapper {
        height: 280px;
    }
}