* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  font-family: "Lato", sans-serif;
}

#cabecalho-principal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a120b;
    padding: 20px 8%;
    color: #f5ebe0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img{
    height: 80px;
}

.logo-texto {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4a373; 
}

.lista-navegacao {
    display: flex;
    list-style: none; 
    gap: 25px;       
}


.link-nav {
    text-decoration: none;
    color: #f5ebe0;
    transition: 0.3s;
}

.link-nav:hover {
    color: #d4a373; 
}

.botao-pedido {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #d4a373;
    color: #1a120b;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.1s ease, background-color 0.2s ease;
}


.botao-pedido:hover {
    background-color: #b3865a;
    transform: scale(1.05); 
}

.botao-pedido:active {
    transform: scale(0.98);
    opacity: 0.9;
}


.radio-slide,
.check-cardapio,
.check-video {
  display: none;
}

.hero {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
  margin-top: 120px;
}

.slide {
  width: 100%;
  height: 320px;
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.slide-1 {
  background-image: url("../imagens/cafe-principal.jpg");
}

.slide-2 {
  background-image: url("../imagens/cafe-2.jpg");
}

.slide-3 {
  background-image: url("../imagens/cafe-3.jpg");
}

#s1:checked ~ .slide-1,
#s2:checked ~ .slide-2,
#s3:checked ~ .slide-3 {
  animation-name: primeiro;
}

#s1:checked ~ .slide-2,
#s2:checked ~ .slide-3,
#s3:checked ~ .slide-1 {
  animation-name: segundo;
}

#s1:checked ~ .slide-3,
#s2:checked ~ .slide-1,
#s3:checked ~ .slide-2 {
  animation-name: terceiro;
}

@keyframes primeiro {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  38% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes segundo {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  41% {
    opacity: 1;
  }
  63% {
    opacity: 1;
  }
  71% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes terceiro {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  74% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.escuro {
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.88),
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.08)
  );
}

.conteudo {
  position: relative;
  z-index: 2;
  color: white;
  padding-left: 72px;
  padding-top: 48px;
  max-width: 430px;
}

.subtitulo {
  color: #d6a328;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.conteudo h1 {
  font-family: "Playfair Display", serif;
  font-size: 58px;
  line-height: 48px;
  font-weight: 900;
  margin-bottom: 14px;
}

.conteudo h1 span {
  color: #d6a328;
}

.descricao {
  font-size: 14px;
  line-height: 21px;
  margin-top: 8px;
  margin-bottom: 22px;
}

.botoes {
  display: flex;
  align-items: center;
  gap: 20px;
}

.botao {
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.botao-cardapio {
  background-color: #d6a328;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
}

.botao-cardapio:hover {
  background-color: #b98420;
  transform: scale(1.03);
}

.botao-video {
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.botao-video:hover {
  color: #d6a328;
}

.icone-play {
  width: 32px;
  height: 32px;
  border: 1px solid #d6a328;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  padding-left: 2px;
}

.conteudo h1::first-letter {
  color: white;
}

.descricao::selection {
  background-color: #d6a328;
  color: black;
}

.indicadores {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.bolinha {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.bolinha:hover {
  background-color: #d6a328;
}

#s1:checked ~ .indicadores .bolinha-1,
#s2:checked ~ .indicadores .bolinha-2,
#s3:checked ~ .indicadores .bolinha-3 {
  animation-name: bolinhaPrimeira;
}

#s1:checked ~ .indicadores .bolinha-2,
#s2:checked ~ .indicadores .bolinha-3,
#s3:checked ~ .indicadores .bolinha-1 {
  animation-name: bolinhaSegunda;
}

#s1:checked ~ .indicadores .bolinha-3,
#s2:checked ~ .indicadores .bolinha-1,
#s3:checked ~ .indicadores .bolinha-2 {
  animation-name: bolinhaTerceira;
}

@keyframes bolinhaPrimeira {
  0% {
    background-color: white;
  }
  8% {
    background-color: #d6a328;
  }
  30% {
    background-color: #d6a328;
  }
  38% {
    background-color: white;
  }
  100% {
    background-color: white;
  }
}

@keyframes bolinhaSegunda {
  0% {
    background-color: white;
  }
  33% {
    background-color: white;
  }
  41% {
    background-color: #d6a328;
  }
  63% {
    background-color: #d6a328;
  }
  71% {
    background-color: white;
  }
  100% {
    background-color: white;
  }
}

@keyframes bolinhaTerceira {
  0% {
    background-color: white;
  }
  66% {
    background-color: white;
  }
  74% {
    background-color: #d6a328;
  }
  92% {
    background-color: #d6a328;
  }
  100% {
    background-color: white;
  }
}

.modal-cardapio {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.88);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-cardapio img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.fechar-cardapio {
  position: absolute;
  top: 25px;
  right: 35px;
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.fechar-cardapio:hover {
  color: #d6a328;
}

#abrir-cardapio:checked ~ .modal-cardapio {
  display: flex;
}

.modal-video {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.88);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.caixa-video {
  width: 650px;
  height: 365px;
  background-color: #111;
  border: 2px solid #d6a328;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.caixa-video video {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #000;
}

.fechar-video {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 34px;
  height: 34px;
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fechar-video:hover {
  color: #d6a328;
}

#abrir-video:checked ~ .modal-video {
  display: flex;
}

.sobre-nos {
  background-color: #fdf6ec;
  padding: 80px 0;
  color: #333;
}

.container-sobre {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 0 72px;
}

.sobre-conteudo {
  flex: 1;
}

.subtitulo-sobre {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: #8b5e34;
  margin-bottom: 10px;
}

.subtitulo-sobre::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #8b5e34;
  margin-top: 6px;
}

.sobre-conteudo h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #2c1a0f;
  line-height: 1.1;
  margin-bottom: 25px;
}

.sobre-conteudo h2 span {
  color: #8b5e34;
}

.texto-descricao {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.capitular {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  float: left;
  line-height: 40px;
  padding-right: 8px;
  color: #8b5e34;
}

.sobre-imagem-container {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.moldura-foto {
  position: relative;
  z-index: 2;
  width: 95%;
  height: 400px;
}

.foto-principal {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 90px 90px 0 90px;
}

.selo-qualidade {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  height: 180px;
  background: #3a2a1d;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  padding: 20px;
  line-height: 1.4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  gap: 15px;
}

.icone-selo {
  width: 15px;
}

.selo-qualidade p {
  font-size: 11px;
  margin: 5px 0;
}

.decoracao-pontilhada {
  position: absolute;
  top: -20px;
  left: 40px;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(#ccc 20%, transparent 20%);
  background-size: 10px 10px;
  z-index: 1;
}

.icones-diferenciais {
  display: flex;
  gap: 30px;
}

.item-icone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.item-icone p {
  font-size: 12px;
  font-weight: bold;
  color: #444;
}



body {
  font-family: 'Lato', sans-serif; 
  background: #F2E9DE;
  margin: 0;
  padding: 0;
}

.carrossel {
  text-align: center;
  padding: 60px 20px;
}


.carrossel h4 {
  font-size: 12px;
  letter-spacing: 2px;
  color: #e4903c;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.carrossel h2 {
  font-size: 38px;
  margin-bottom: 30px;
  color: #3E271F;
  font-family: "Playfair Display", serif; 
}


.container {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}


.cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px;
  scrollbar-width: none; 
}

.cards::-webkit-scrollbar {
  display: none;
}


.card {
  min-width: 260px;
  background: #F9F5F0; 
  border-radius: 15px;
  text-align: left;
  scroll-snap-align: start;
  flex: 0 0 260px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}


.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}


.card-content {
  padding: 15px;
}

.card h3 {
  font-size: 16px;
  color: #2C1A11;
  margin: 0 0 8px 0;
}

.card p {
  font-size: 13px;
  color: #6B544B;
  line-height: 1.4;
  margin: 0 0 15px 0;
  min-height: 36px; 
}


.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card span {
  font-weight: 800;
  color: #2C1A11;
  font-size: 15px;
}



.seta {
  position: absolute;
  background: #2C1A11;
  color: #fff;
  text-decoration: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s;
  border: none;
  cursor: pointer;
}

.seta:hover {
  background: #4d2f21;
}

.esquerda { left: -20px; }
.direita { right: -20px; }

.nossos-servicos {
    background-color: #2b1408; 
    padding: 80px 0;
    color: white;
    text-align: center;
}
 
.subtitulo-servicos {
    font-size: 20px;
    letter-spacing: 2px;
    color: white;             
    margin-bottom: 12px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}
 
.linha-servicos {
    width: 40px;
    height: 2px;
    background-color: #d7a35d;
    margin: 0 auto 40px auto;  
}
 
.servicos-box {
    display: flex;              
    align-items: center;         
    justify-content: center;
    margin-top: -25px;
    gap: 10px;             
    max-width: 1300px; 
    margin-left: auto;
    margin-right: auto;
}
 

.item-servico {
    display: flex;               
    align-items: flex-start;     
    gap: 15px;                   
    flex: 1;                     
    padding: 0 15px;
    text-align: left;
    transition: transform 0.3s;
}
 
.item-servico:hover {
    transform: translateY(-5px);
}
 
.icone-servico i {
    font-size: 50px;
    color: #d7a35d;
    flex-shrink: 0;
}
 
.texto-servico h3 {
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
}
 
.texto-servico p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.80);
}
 
.divisor-vertical {
    width: 2px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.depoimentos {
    background-color: #fcfaf7;
    padding: 140px 0 70px 0;
    text-align: center;
}
 
.subtitulo-dep {
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: -55px;
    margin-bottom: 2px;
    color: #9b6a35;
    font-weight: 700;
}
 
.titulo-dep {
    font-size: 28px;
    color: #2b1408;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 15px;
}
 
.linha-dep {
    width: 40px;
    height: 2px;
    background-color: #d7a35d;
    margin: 0 auto 50px auto;
    margin-top: -10px;
}
 
.cards-depoimentos {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin: 0 auto;
}
 
.card {
    flex: 1;
    min-width: 260px;
    max-width: 360px;
    background-color: white;
    border: 1px solid #e8e3da;
    border-radius: 16px;
    padding: 28px 28px 24px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}
 
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}
 
.card-topo {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}
 
.aspas {
    font-size: 52px;
    color: #c8903a;
    line-height: 0.75;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    flex-shrink: 0;
}
 
.texto-dep {
    font-size: 13px;
    line-height: 1.7;
    color: #4a3b2a;
    margin: 0;
    font-style: italic;
    padding-top: 6px;
}
 
.estrelas {
    color: #c8903a;
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: -20px;
    margin-left: 39px;
    letter-spacing: 2px;
}
 
.cliente-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
 
.cliente-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    margin-left: -8px;
}
 
.cliente-texto strong {
    display: block;
    font-size: 14px;
    color: #2b1408;
    font-weight: 700;
}
 
.cliente-texto span {
    font-size: 12px;
    color: #999;
}
 
 
@media (max-width: 1024px) {
    .nossos-servicos {
        padding: 40px 30px;
    }
 
    .servicos-box {
        flex-wrap: wrap;
        gap: 30px;
    }
 
    .item-servico {
        flex: 0 0 45%;
    }
 
    .divisor-vertical {
        display: none;
    }
}
 
 
@media (max-width: 768px) {
    .nossos-servicos,
    .depoimentos {
        padding: 40px 20px;
    }
 
    .item-servico {
        flex: 0 0 100%;
    }
 
    .titulo-dep {
        font-size: 26px;
    }
 
    .card {
        width: 100%;
    }
}

#rodape-principal {
    background-color: #1a120b;
    color: #f5ebe0;
    padding: 20px 8%;
}

.container-footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.coluna-footer {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.coluna-footer:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 10%;
    bottom: 10%;
    right: 0;
    width: 1px;
    background-color: #3c2a21;
}

.titulo-footer {
    color: #d4a373;
    margin-bottom: 15px;
}

.subtitulo-footer {
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.redes-sociais a {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.redes-sociais a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}


.redes-sociais img{
    height: 20px;
    margin-top: 10px;
}

.lista-footer {
    list-style: none;
}


.lista-footer li {
    margin-bottom: 8px;
}

.lista-footer a {
    color: #f5ebe0;
    text-decoration: none;
    font-size: 0.9rem;
}

.lista-footer a:hover {
    text-decoration: underline;
}

.item-contato {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.icone-contato {
    height: 20px;
    width: 20px;
    flex-shrink: 0;
}

#inicio,
#sobre,
#cardapio,
#nossos-servicos,
#depoimentos,
#contato {
  scroll-margin-top: 120px;
}