:root {
    font-size: 10px;
    --main-color: #d3ad7f;
    --black: #131313;
    --bg: #010103;
    --button-color: #a02a2a;
    --border: 0.1 rem solid rgba(255, 255, 255, 0.3);
    --whatsapp-color: #38aa66;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Winky Rough", sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: var(--bg);
    border-bottom: var(--border);
    width: 100vw;
}

header section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 1.5rem 0;
    position: relative;
}

header section a img {
    height: 6rem;
    justify-content: center;
}

.delivery-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  padding: 1rem 2.5rem;
  border: 2px solid #fff; 
  background-color: transparent;  
  border-radius: 0.75rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.delivery-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#menuBtn {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

#menuBtn:hover {
  transform: scale(1.1);
}

/*FIM DO HEADER FIXO*/

section {
    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

/*SIDEBAR*/
.sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100vh;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(8px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 9999;
  padding: 2rem;
  transition: left 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sidebar.open {
  left: 0;
}

.sidebar .close-btn {
  background: transparent;
  border: none;
  color: var(--main-color);
  font-size: 2.5rem;
  cursor: pointer;
  margin-bottom: 2rem;
  transition: transform 0.2s;
}

.sidebar .close-btn:hover {
  transform: rotate(90deg);
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-bottom: 1.8rem;
}

.sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--main-color);
  font-size: 1.6rem;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.sidebar-menu a:hover {
  background-color: var(--button-color);
  color: white;
}

/*video*/
.caixa-video {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.caixa-video video {
    min-width: 100%;
    min-height: 100%;
    position: fixed;
    top: 0;
}

.mascara {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%);
}

/*caixa principal*/
.caixa-principal {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.caixa-principal div {
    max-width: 60rem;
}

.caixa-principal div h3 {
    color: #fff;
    font-size: 6rem;
    text-transform: uppercase;
}

.caixa-principal div p {
    font-size: 2rem;
    color: #fff;
    font-weight: lighter;
    padding: 1rem 0;
    line-height: 1.8;
}

.button-menu {
    background-color: var(--button-color);
    cursor: pointer;
    margin-top: 2rem;
    display: inline-block;
    font-size: 1.7rem;
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 2rem;
    text-transform: uppercase;
}

.button-menu:hover {
    background: linear-gradient(45deg, #8e2de2, #4a00e0);
}

.titulo {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
}

.titulo span {
    color: var(--main-color);
}

/*novidades - Bolinhas indicadoras */

.caixa-new {
  color: #fff;
  border-radius: 30px;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.caixa-new .titulo {
  color: #fff;
  font-size: 3.8rem;
  margin-bottom: 3rem;
}

.new-slide {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch; /* iguala a altura entre imagem e texto */
    gap: 10px;
    flex-wrap: wrap;
    transition: transform 0.6s ease-in-out;
}

.new-slide:not(.active) {
    display: none; /* Oculta slides não ativos */
}

/* Agrupamento de slides para deslizar */
.new-carousel-inner {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

.new-slide.active {
    display: flex;
}

/* Imagem */
.new-imagem img {
    width: 100%;
    max-width: 900px; /* Aumenta largura máxima */
    height: 600px;     /* Aumenta altura */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

@media (min-width: 769px) {
    .new-texto {
        min-height: 400px; /* mesma altura da imagem */
    }
}

/* Texto */

.new-texto {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* centraliza verticalmente */
    background-color: rgba(255, 255, 255, 0.03); /* opcional: fundo sutil */
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.new-texto h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff;
}

.new-texto p {
    font-size: 16px;
    color: #c9bcbc;
    line-height: 1.5;
}

/* Bolinhas (dots) */
.dots {
    text-align: center;
    margin-top: 25px;
}

.dot {
    cursor: pointer;
    height: 14px;
    width: 14px;
    margin: 0 6px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.dot.active-dot {
    background-color: #333;
}

/* Fade Animation */
@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* COMO CHEGAR */

.caixa-como-chegar {
  background-size: cover;
  text-align: center;
  color: #fff;
  animation: fadeIn 1s ease-in-out;
}

.mapa {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.mapa:hover {
  transform: scale(1.02);
}

/*FOOTER*/
footer {
    font-size: 1.5rem;
    background-color: #000;
    color: #fff;
    top: 100px;
    padding: 1.5rem;
    text-align: center;
}

.footer-logo {
    width: 110px;
    height: auto;
    margin-top: 10px;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a.instagram:hover {
    color: #E1306C;
}

.social-icons a.whatsapp:hover {
    color: var(--whatsapp-color);
}

.footer-info {
    margin: 10px 0;
    font-size: 14px;
}

.footer-info i {
    margin-right: 6px;
    color: #555;
}

.footer-logo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    background-color: rgba(0,0,0,0.6);
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
}

.footer-logo-container:hover .footer-logo-text {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
  .caixa-principal div h3 {
    font-size: 4rem;
  }

  .caixa-principal div p {
    font-size: 1rem;
  }

  .new-imagem img {
    max-width: 100%;
    height: auto;
  }

  footer {
    font-size: 1.3rem;
    padding: 1rem;
  }

  .footer-logo {
    width: 90px;
  }

  .social-icons a {
    font-size: 20px;
    margin: 0 8px;
  }

  .footer-info {
    font-size: 12px;
  }
}
