body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #222;
}
a:hover{
    text-decoration: none;
}
/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    line-height: 12px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar:hover {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
}

.logo {
    position: relative;
    top: -8px;
}

/* MENU */
.menu {
    list-style: none;
    display: flex;
    gap: 25px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    height: 60px;
    position: relative;
}

.menu li a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: #313131;
    transition: width 0.3s ease;
}

.menu li a:hover::after {
    width: 100%;
}

.menu li a:hover {
    color: #000;
    transform: translateY(-2px);
}

/* BOTÃO PEDIDO */
.btn-pedido {
    background: #111;
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: -16px;
    font-weight: 400 !important;
}

.btn-pedido:hover {
    background: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    color: #fff;
    font-weight: 400;
    text-decoration: none;
}

/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 100px 100px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
}

.hero .text {
    flex: 1;
}

.hero .tag-info {
    background: #f2f2f2;
    padding: 4px 8px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #555;
}

.hero h1 {
    font-size: 3rem;
    margin: 20px 0;
    transition: color 0.3s ease;
}

.hero h1 span {
    color: #777;
    font-weight: 600;
}

.hero p {
    max-width: 500px;
    color: #666;
    transition: color 0.3s ease;
}

.hero p:hover {
    color: #333;
}

/* BOTÕES HERO */
.buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-primary {
    background: #000;
    color: #fff;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.9em;
    text-decoration: none;
}

.btn-primary:hover {
    background: #333;
    text-decoration: none;
}

.btn-secondary {
    border: 1px solid #ddd;
    color: #313131;
    padding: 4px 20px;
    border-radius: 50px;
    text-decoration: none;
    background-color: transparent;
}

.btn-secondary:hover {
    background: #ddd;
    color: #313131;
    text-decoration: none;
}

.btn-link {
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #000;
}

/* IMAGEM */
.image img {
    width: 500px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    object-fit: contain;

}

.image img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* ========================= */
/* RESPONSIVIDADE */
/* ========================= */

/* Tablets (até 1024px) */
@media (max-width: 1024px) {
    .navbar .container {
        padding: 15px 30px;
    }

    .hero {
        padding: 120px 60px 80px;
    }

    .hero-content {
        gap: 30px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .image img {
        width: 400px;
    }
}

/* Celulares grandes (até 768px) */
@media (max-width: 768px) {
    .navbar .container {
        padding: 10px 20px;
    }

    .menu {
        display: none; /* escondemos o menu no mobile (pode virar menu hambúrguer depois) */
    }

    .btn-pedido {
        display: none; /* opcional, pode esconder também */
    }

    .hero {
        padding: 100px 30px 60px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero .text {
        order: 2;
    }

    .image img {
        width: 90%;
        max-width: 350px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-primary,
    .btn-secondary {
        padding: 8px 24px;
        font-size: 1rem;
    }
}

/* Celulares pequenos (até 480px) */
@media (max-width: 480px) {
    .hero {
        padding: 90px 20px 50px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .buttons {
        flex-direction: column;
        gap: 10px;
    }

    .image img {
        width: 100%;
        border-radius: 20px;
    }
}

/* Botões 100% no mobile e tablet */
@media (max-width: 992px) {
    .buttons {
        flex-direction: column;
        width: 100%;
    }

    .buttons a {
        width: 100%;
        text-align: center;
    }
}

/* DESTAQUE */
.colecao-destaque {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.colecao-destaque .container {
    max-width: 1200px;
    margin: 0 auto;
}

.colecao-destaque .titulo {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.colecao-destaque .subtitulo {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

/* GRID */
.grid-destaque {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

/* IMAGEM */
.card-img {
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

.card-img img {
    width: 100%;
    height: 280px;
    object-fit: contain !important;
    transition: transform 0.5s ease;
}

/* Zoom apenas na imagem */
.card:hover img {
    transform: scale(1.07);
}

/* TEXTO */
.card-info {
    padding: 15px 18px 20px;
    text-align: left;
}

.card-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.card-info span {
    font-size: 0.85rem;
    color: #777;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .grid-destaque {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card-img img {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .grid-destaque {
        grid-template-columns: 1fr;
    }

    .card-img img {
        height: 280px;
    }

    .card-info {
        text-align: center;
    }
}

/* ACTION FINALIZADOS */

.actions-finalizados {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.actions-finalizados .container {
    max-width: 1200px;
    margin: 0 auto;
}

.actions-finalizados .titulo {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.actions-finalizados .subtitulo {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

/* CARROSSEL */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

/* CARD */
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    flex: 0 0 calc(33.333% - 20px);
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* IMAGEM */
.card-img-finalizados {
    overflow: hidden;
}

.card-img-finalizados img {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

/* Zoom apenas na imagem */
.card:hover img {
    transform: scale(1.07);
}

/* INFO */
.card-info {
    padding: 15px;
    text-align: left;
}

.card-info h3 {
    font-size: 1rem;
    color: #111;
    margin: 0;
}

/* BOTÕES */
.carousel-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 50%;
    z-index: 2;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: #f5f5f5;
}

.carousel-btn.prev {
    left: -20px;
}

.carousel-btn.next {
    right: -20px;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .card {
        flex: 0 0 calc(50% - 20px);
    }

    .card-img-finalizados img {
        height: 260px;
    }

    .carousel-btn.prev {
        left: 0;
    }

    .carousel-btn.next {
        right: 0;
    }
}

@media (max-width: 600px) {
    .card {
        flex: 0 0 100%;
    }

    .card-img-finalizados img {
        height: 240px;
    }
}

/* --- Seção --- */
.actions-finalizados {
    padding: 80px 20px;
    background: #fff;
    text-align: left;
}

.actions-finalizados .container {
    max-width: 1200px;
    margin: 0 auto;
}

.actions-finalizados .titulo {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.actions-finalizados .subtitulo {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* --- Carrossel --- */
.carousel-wrapper {
    position: relative;
    overflow: visible; /* controles ficam visíveis */
}

/* Controles no canto superior direito (pequenos e lado a lado) */
.carousel-controls {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    z-index: 20;
}

.carousel-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.98);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: transform 0.16s ease, background 0.16s ease, opacity 0.16s ease;
    color: #444;
    padding: 0;
}

.carousel-btn svg { display:block; }

.carousel-btn:hover {
    background: #fff;
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: default;
    transform: none;
}

/* Zona rolável */
.carousel {
    display: flex;
    gap: 20px; /* usado no cálculo do JS */
    overflow-x: auto;
    padding: 20px 8px 24px 0; /* leve padding para dar espaço ao começo */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* esconde scrollbar visual (mantém acessibilidade) */
.carousel::-webkit-scrollbar { height: 8px; }
.carousel::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.08); border-radius: 10px; }
.carousel { scrollbar-width: thin; scrollbar-color: rgba(0,0,0,0.08) transparent; }

/* --- Cards --- */
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    flex: 0 0 calc(33.333% - 13.333px); /* 3 colunas no desktop */
    transition: transform 0.28s ease;
}

/* Imagem - só ela faz zoom */
.card-img {
    overflow: hidden;
    background: #f6f6f6;
}

.card-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

/* Aplica zoom apenas em dispositivos com hover (desktop) */
@media (hover: hover) and (pointer: fine) {
    .card:hover img { transform: scale(1.07); }
}

/* Texto do card */
.card-info {
    padding: 16px;
}

.card-info h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #111;
}

/* --- Responsividade --- */
/* Tablet: 2 colunas */
@media (max-width: 992px) {
    .card { flex: 0 0 calc(50% - 10px); }
    .card-img img { height: 280px; }
    .carousel-controls { top: 10px; right: 12px; }
}

/* Mobile: 1 coluna */
@media (max-width: 600px) {
    .card { flex: 0 0 calc(100% - 8px); }
    .card-img img { height: 220px; }
    .carousel { padding-left: 0; }
    .carousel-controls { top: 8px; right: 8px; }
}


/* SOBRE NOS */

.sobre-nos {
  padding: 80px 20px;
  background: #f9f9f9;
}

.sobre-nos .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.sobre-nos-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  object-fit: cover;
}

.sobre-nos-texto {
  flex: 1;
}

.sobre-nos-texto .tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
  background: #e0e0e0;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.sobre-nos-texto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #111;
}

.sobre-nos-texto p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

/* Responsividade */
@media(max-width: 900px){
  .sobre-nos .container {
    flex-direction: column;
    text-align: center;
  }
  .sobre-nos-texto h2 {
    font-size: 1.8rem;
  }
}


/* RODAPE */

.rodape {
  background: #111;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: sans-serif;
}

.rodape-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.rodape h3, .rodape h4 {
  margin-bottom: 15px;
  font-weight: 700;
}

.rodape-info p {
  color: #aaa;
}

.rodape-navegacao ul {
  list-style: none;
  padding: 0;
}

.rodape-navegacao ul li {
  margin-bottom: 10px;
}

.rodape-navegacao ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.rodape-navegacao ul li a:hover {
  color: #fff;
}

.rodape-redes .redes-icones a {
  margin-right: 15px;
}

.rodape-redes img {
  width: 24px;
  height: 24px;
}

.rodape p {
  text-align: center;
  margin-top: 40px;
  color: #777;
  font-size: 0.9rem;
}

/* Responsividade */
@media(max-width: 900px){
  .rodape-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .rodape-redes {
    margin-top: 20px;
  }
}




.navbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.menu {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.menu li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color 0.3s;
}

.menu li a:hover {
  color: #007bff;
}

.btn-pedido {
  background: #000;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-pedido:hover {
  background: #333;
}

/* Ícone sanduíche (oculto no desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: 0.3s;
}

/* Menu mobile oculto inicialmente */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 998;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul li a {
  color: #000;
  font-size: 1.2rem;
  text-decoration: none;
}

.mobile-menu.active {
  display: flex;
}

/* Responsividade */
@media (max-width: 992px) {
  .menu, .btn-pedido {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}



