:root {
  --bg-dark: #111111;
  --bg-light: #ffffff;
  --gold: #f0cc84;;
  --gold-dark: #c5a76f;
  --text-dark: #111111;
  --text-light: #ffffff;
  --muted: #777777;
  --glass: rgba(255,255,255,0.06);
  --container: 1200px;
  font-family: 'Montserrat', sans-serif;
  --footer-bg: #0f0f0f;
}

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


/* Botão de Orçamento */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.btn-primary i {
  font-size: 1.1rem;
}



           .mais-vendidos {
            padding: 80px 20px;
            background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
        }

        .carousel-container {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            padding: 0 80px;
        }

        .carousel-track {
            overflow: hidden;
            width: 100%;
            border-radius: 20px;
        }

        .carousel-slides {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .card {
            flex: 0 0 33.333%;
            padding: 0 15px;
        }

        .card-content {
            background: #fff;
            border-radius: 20px;
            padding: 30px;
            border: 1px solid #f0f0f0;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            height: 100%;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        /* Borda superior animada - expande do centro */
        .card-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            right: 50%;
            height: 5px;
            background: linear-gradient(90deg, #f0cc84 0%, #d9c79c 50%, #c5b286 100%);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 0 0 3px 3px;
            z-index: 1;
        }

        /* Efeito de brilho sutil */
        .card-content::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(240, 204, 132, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .card-content:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.12);
            border-color: rgba(217, 199, 156, 0.4);
        }

        .card-content:hover::before {
            left: 0;
            right: 0;
        }

        .card-content:hover::after {
            opacity: 1;
        }

        /* Container da imagem com overflow */
        .card-image-wrapper {
            position: relative;
            width: 100%;
            height: 220px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 20px;
            background: #f5f5f5;
        }

        .card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card-content:hover img {
            transform: scale(1.08);
        }

        /* Badge de destaque */
        .card-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #f0cc84 0%, #d9c79c 100%);
            color: #fff;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 2;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.4s ease;
            box-shadow: 0 4px 12px rgba(240, 204, 132, 0.4);
        }

        .card-content:hover .card-badge {
            opacity: 1;
            transform: translateY(0);
        }

        .card h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #2c3e50;
            min-height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            transition: all 0.3s ease;
            line-height: 1.4;
        }

        .card-content:hover h3 {
            color: #d9c79c;
            transform: translateY(-2px);
        }

        .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: linear-gradient(135deg, #25D366 0%, #1ebe5a 100%);
            color: #fff;
            font-weight: 600;
            padding: 14px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-whatsapp::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-whatsapp:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-whatsapp:hover {
            background: linear-gradient(135deg, #1ebe5a 0%, #128c3f 100%);
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
        }

        .btn-whatsapp span {
            position: relative;
            z-index: 1;
        }

        /* Botões de navegação aprimorados */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #fff;
            border: 2px solid #f0cc84;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            font-size: 24px;
            color: #f0cc84;
            cursor: pointer;
            z-index: 100;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            user-select: none;
        }

        .carousel-nav:hover {
            background: linear-gradient(135deg, #f0cc84 0%, #d9c79c 100%);
            color: #fff;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 24px rgba(240, 204, 132, 0.4);
        }

        .carousel-nav:active {
            transform: translateY(-50%) scale(0.95);
        }

        .carousel-nav.prev {
            left: 10px;
        }

        .carousel-nav.next {
            right: 10px;
        }

        /* Indicadores (dots) melhorados */
        .dots {
            margin-top: 40px;
            text-align: center;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: #ddd;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .dot::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-radius: 50%;
            transition: all 0.4s ease;
        }

        .dot:hover {
            background: #bbb;
            transform: scale(1.2);
        }

        .dot.active {
            background: linear-gradient(135deg, #f0cc84 0%, #d9c79c 100%);
            width: 32px;
            border-radius: 6px;
        }

        .dot.active::after {
            border-color: rgba(240, 204, 132, 0.3);
        }

        /* Responsividade aprimorada */
        @media (max-width: 768px) {
            .mais-vendidos {
                padding: 50px 15px;
            }
            .carousel-container {
                padding: 0 15px;
            }

            .card {
                flex: 0 0 100%;
                padding: 0 5px;
            }

            .card-content {
                padding: 25px;
            }

            .card-image-wrapper {
                height: 200px;
            }

            .carousel-nav {
                display: none;
            }

            .dots {
                margin-top: 30px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {

            .card {
                flex: 0 0 50%;
            }

            .card-image-wrapper {
                height: 210px;
            }
        }

        @media (min-width: 1440px) {
            .carousel-container {
                max-width: 1400px;
            }

            .card-image-wrapper {
                height: 240px;
            }
        }

/* ================= Preloader ================= */
/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d0d0d, #1c1c1c); /* fundo escuro elegante */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Loader mais sofisticado */
.loader {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top: 6px solid #c6a15b;
  animation: spin 1s linear infinite;
  position: relative;
  box-shadow: 0 0 25px rgba(198,161,91,0.4);
}

/* Efeito duplo circular */
.loader::before,
.loader::after {
  content: "";
  position: absolute;
  border: 6px solid transparent;
  border-radius: 50%;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  animation: spinReverse 2s linear infinite;
}

.loader::before {
  border-top: 6px solid rgba(198,161,91,0.7);
}

.loader::after {
  border-right: 6px solid rgba(198,161,91,0.5);
}

/* Animações */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spinReverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}



body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* Header - AJUSTADO */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(17, 17, 17, 0.97);
  padding: 8px 0;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 199, 156, 0.2);
}

.site-header.scrolled {
  background: rgba(41, 41, 41, 0.9);
  padding: 6px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

/* Logo - AUMENTADO */
.brand {
  display: flex;
  align-items: center;
}

.brand img.logo {
  height: 130px; /* Logo maior */
  width: auto;
  transition: height 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.site-header.scrolled .brand img.logo {
  height: 90px; /* Menor quando scrolled, mas ainda grande */
}

/* Navigation - Desktop */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Menu base */
.menu {
  list-style: none;
  display: flex;
  gap: 35px;
  align-items: center;
  position: relative;
}

.menu > li {
  position: relative;
}

.menu a {
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 12px 8px;
  transition: all 0.3s ease;
  font-size: 16px;
  border-radius: 6px;
  position: relative;
}

.menu a.active {
  color: var(--gold) !important;
  background: rgba(217, 199, 156, 0.1);
  transform: translateY(-2px);
}

.site-header .menu a {
  color: var(--text-light);
}

.site-header.scrolled .menu a {
  color: var(--text-light);
}

.menu a:hover {
  color: var(--gold);
  background: rgba(217, 199, 156, 0.1);
  transform: translateY(-2px);
}

/* Submenu - Desktop */
.has-sub {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  padding: 16px 8px;
  border-radius: 12px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  border: 1px solid rgba(217, 199, 156, 0.3);
  z-index: 1001;
}

.has-sub:hover .submenu { 
  opacity: 1;
  visibility: visible;
}

.submenu li {
  list-style: none;
  margin: 0;
}

.submenu a {
  display: block;
  padding: 5px 10px !important;
  font-weight: 500 !important;
  color: var(--text-light) !important;
  border-radius: 8px;
  margin: 2px 0;
  font-size: 16px !important;
  transition: all 0.2s ease;
}

.submenu a:hover {
  background: var(--gold) !important;
  color: var(--text-dark) !important;
  transform: translateX(4px) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-light);
  padding: 8px;
}

.site-header.scrolled .menu-toggle { 
  color: var(--text-light); 
}

/* Media Queries - Mobile */
@media (max-width: 768px) {
  /* Esconder menu por padrão no mobile */
  .main-nav {
    display: none;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
    overflow: hidden;
  }

  /* Mostrar botão toggle no mobile */
  .menu-toggle {
    display: block;
  }

  /* Menu aberto no mobile */
  .main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(17, 17, 17, 0.97);
    padding: 20px 0;
    text-align: center;
    max-height: 750px !important;
    opacity: 1;
  }

  .main-nav.active .menu {
    flex-direction: column;
    gap: 20px;
  }

  .main-nav.active .menu a {
    display: block;
    padding: 12px 20px;
    font-size: 18px;
  }

  /* Submenu no mobile */
  .submenu {
    position: static;
    transform: none;
    margin-top: 10px;
    background: rgba(0,0,0,0.3);
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .has-sub.mobile-open .submenu {
    display: block;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      max-height: 0;
    }
    to {
      opacity: 1;
      max-height: 300px;
    }
  }
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-left:35px;
  margin-bottom: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, transform 0.3s ease;
  color: #fff;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--gold, #F2D497);
  color: #000;
  transform: scale(1.2);
}

/* Esconde redes sociais no mobile */
@media (max-width: 768px) {
  .social-icons {
    margin-right: 35px;
  }
}

/* Hero / Slider - AJUSTADO PARA NÃO FICAR ATRÁS DO HEADER */
.hero {
  margin-top: 0; /* Removido margin-top */
  position: relative;
  z-index: 1;
}

.swiper {
  width: 100%;
  height: 100vh; /* Altura total da tela */
}

.hero-slide-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--gold);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Overlay escuro para contraste */
.swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.3));
  z-index: 1;
}

/* Conteúdo do slide */
.swiper-slide .overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  color: #fff;
  margin-top: 80px; /* Espaço para o header */
}

.swiper-slide h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--gold);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
  line-height: 1.2;
}

.swiper-slide p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #f1f1f1;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
  font-weight: 300;
}



/* Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--text-dark);
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(217, 199, 156, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(217, 199, 156, 0.4);
}

/* Swiper Navigation */
/* ================= Swiper Navigation Arrows ================= */
.swiper-button-next,
.swiper-button-prev {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4); /* fundo levemente escuro */
  color: #c6a05be3; /* seta dourada */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px; /* tamanho da seta */
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}


/* Swiper Pagination */
.swiper-pagination {
  bottom: 30px !important;
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.6) !important;
  opacity: 0.8 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 6px !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  background: var(--gold) !important;
  opacity: 1 !important;
  transform: scale(1.3) !important;
}

.swiper-pagination-bullet:hover {
  background: var(--gold) !important;
  transform: scale(1.1) !important;
}

/* Sections */
.section { 
  padding: 100px 0; 
}

.section:nth-child(even) {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section:nth-child(odd) {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--gold);
  font-weight: 700;
  position: relative;
}

.section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

 .about {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.02'%3E%3Cpolygon points='50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            min-height: 600px;
        }

        .about-content {
            position: relative;
            z-index: 2;
        }

        .section-label {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold), #b8941f);
            color: white;
            padding: 8px 24px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 30px;
        }

        .about-title {
            font-size: clamp(2.2rem, 4vw, 3.5rem);
            color: var(--text-dark);
            margin-bottom: 30px;
            font-weight: 300;
            letter-spacing: -1px;
            line-height: 1.2;
        }

        .about-subtitle {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 40px;
            font-weight: 400;
            line-height: 1.6;
        }

        .about-description {
            font-size: 1.1rem;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 40px;
            font-weight: 400;
        }

        .about-highlights {
            list-style: none;
            margin: 40px 0; 
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
            padding: 20px;
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 5px 20px var(--shadow-light);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .highlight-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--gold);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .highlight-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 30px var(--shadow-medium);
        }

        .highlight-item:hover::before {
            transform: scaleY(1);
        }

        .highlight-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gold), #b8941f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .highlight-text {
            font-size: 1rem;
            color: var(--text-dark);
            font-weight: 500;
        }

        .about-cta {
            margin-top: 50px;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: var(--gold);
            color: white;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
            background: #b8941f;
        }

        .cta-icon {
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .cta-button:hover .cta-icon {
            transform: translateX(5px);
        }

        .about-image-container {
            position: relative;
            height: 600px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px var(--shadow-medium);
        }

        .about-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .about-image-container:hover .about-image {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(212, 175, 55, 0.1) 0%,
                rgba(212, 175, 55, 0.05) 50%,
                transparent 100%
            );
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .about-image-container:hover .image-overlay {
            opacity: 1;
        }

        .floating-stats {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 25px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .about-image-container:hover .floating-stats {
            transform: translateY(0);
            opacity: 1;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            display: block;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .experience-badge {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--gold), #b8941f);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
            z-index: 3;
        }

        .badge-number {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .badge-text {
            font-size: 0.7rem;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            text-align: center;
            line-height: 1.2;
        }

        /* Responsividade */
        @media (max-width: 968px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }

            .about-image-container {
                height: 450px;
                order: -1;
            }

            .floating-stats {
                position: relative;
                bottom: auto;
                left: auto;
                right: auto;
                margin-top: 30px;
                transform: none;
                opacity: 1;
            }

            .experience-badge {
                position: relative;
                top: -60px;
                right: auto;
                margin: 0 auto 20px;
            }
        }

        @media (max-width: 768px) {
            .about {
                padding: 80px 0;
            }

            .about-grid {
                gap: 40px;
            }

            .about-image-container {
                height: 350px;
            }

            .highlight-item {
                flex-direction: column;
                text-align: center;
                gap: 15px;
                padding: 25px 20px;
            }

            .floating-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                padding: 20px;
            }

            .experience-badge {
                width: 100px;
                height: 100px;
                top: -50px;
            }

            .badge-number {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .about-highlights {
                margin: 30px 0;
            }

            .highlight-item {
                margin-bottom: 15px;
                padding: 20px 15px;
            }

            .floating-stats {
                grid-template-columns: 1fr;
            }
        }

        /* Animações */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .experience-badge {
            animation: float 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 5px 20px var(--shadow-light); }
            50% { box-shadow: 0 8px 30px var(--shadow-medium); }
        }

        .highlight-item {
            animation: pulse 4s ease-in-out infinite;
            animation-delay: calc(var(--delay) * 0.5s);
        }
/* Products */
        .products {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.02'%3E%3Cpath d='M0 0h80v80H0V0zm20 20v40h40V20H20zm20 35a15 15 0 1 1 0-30 15 15 0 0 1 0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--text-dark);
            margin-bottom: 20px;
            font-weight: 300;
            letter-spacing: -1px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            font-size: 1.2rem;
            margin-bottom: 80px;
            font-weight: 300;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .product-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--shadow-light);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            cursor: pointer;
            border: 1px solid #f1f1f1;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--gold), #b8941f);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
            pointer-events: none;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px var(--shadow-medium);
        }

        .product-card:hover::before {
            opacity: 0.05;
        }

        .product-image {
            position: relative;
            height: 280px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .product-card:hover .product-image img {
            transform: scale(1.08);
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to bottom,
                rgba(0,0,0,0) 0%,
                rgba(0,0,0,0.1) 50%,
                rgba(0,0,0,0.3) 100%
            );
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        .product-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gold);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            transform: translateY(-10px);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 2;
        }

        .product-card:hover .product-badge {
            transform: translateY(0);
            opacity: 1;
        }

        .product-info {
            padding: 35px;
            position: relative;
            z-index: 2;
        }

        .product-info h3 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 15px;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .product-card:hover .product-info h3 {
            color: var(--gold);
        }

        .product-info p {
            color: var(--text-dark);
            line-height: 1.7;
            margin-bottom: 25px;
            font-weight: 400;
        }

        .product-features {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .feature-tag {
            background: var(--bg-light);
            color: var(--text-dark);
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .product-card:hover .feature-tag {
            background: rgba(212, 175, 55, 0.1);
            color: var(--gold);
        }

        .btn-product {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
            padding: 14px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-product::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gold);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .btn-product:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
        }

        .btn-product:hover::before {
            left: 0;
        }

        .btn-icon {
            font-size: 1rem;
            transition: transform 0.3s ease;
        }

        .btn-product:hover .btn-icon {
            transform: translateX(3px);
        }

        .products-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 80px;
            padding: 60px 0;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 10px;
            display: block;
        }

        .stat-label {
            color: var(--text-dark);
            font-size: 0.95rem;
            font-weight: 500;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .products {
                padding: 80px 0;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .product-card {
                margin: 0 10px;
            }

            .product-info {
                padding: 25px;
            }

            .products-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .stat-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .section-subtitle {
                margin-bottom: 50px;
            }

            .product-image {
                height: 220px;
            }

            .products-stats {
                grid-template-columns: 1fr;
            }
        }

        /* Animações */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .product-badge {
            animation: float 3s ease-in-out infinite;
            animation-delay: var(--delay, 0s);
        }

        /* Filtro de produtos (opcional) */
        .products-filter {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            padding: 10px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--gold);
            color: white;
        }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-form {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--gold);
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--text-light);
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.contact-form button {
  width: 100%;
}

.contact-info h3 { 
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.socialsfooter-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.socialsfooter-icons a {
  font-size: 1.4rem;
  width: 45px;
  height: 45px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #222; /* fundo discreto */
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  color: #fff; /* default branco para ícone */
}


/* Cores oficiais nos ícones */
.socialsfooter-instagram i { color: #E1306C; }
.socialsfooter-facebook i { color: #1877F2; }
.socialsfooter-whatsapp i { color: #25D366; }

/* Efeito hover minimalista */
.socialsfooter a:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  filter: brightness(1.2);
}


.testimonials {
            background: linear-gradient(135deg, #f7f7f7 0%, #ffffff 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            border-top: solid 2px #f0cc84;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .section-title {
            text-align: center;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: var(--text-dark);
            margin-bottom: 20px;
            font-weight: 300;
            letter-spacing: -0.5px;
            color: #222;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 80px;
            font-weight: 300;
            color: #222;
        }

        .testimonials-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            min-height: 300px;
        }

        .testimonial-slide {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            padding: 0 40px;
        }

        .testimonial-slide.active {
            opacity: 1;
            transform: translateY(0);
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--gold);
            opacity: 0.3;
            margin-bottom: 30px;
        }

        .testimonial-text {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 40px;
            font-weight: 300;
            font-style: italic;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold), #b8941f);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            flex-shrink: 0;
        }

        .author-info h4 {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 5px;
            font-weight: 600;
        }

        .author-info span {
            font-size: 0.95rem;
            color: var(--text-dark);
            font-weight: 300;
        }

        .testimonials-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 60px;
            gap: 30px;
        }

        .nav-btn {
            width: 50px;
            height: 50px;
            border: 2px solid var(--gold);
            background: transparent;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .nav-btn:hover {
            background: var(--gold);
            color: white;
            transform: scale(1.05);
        }

        .nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            transform: scale(1);
        }

        .nav-btn:disabled:hover {
            background: transparent;
            color: var(--gold);
        }

        .testimonials-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--gold);
            transform: scale(1.2);
        }

        .progress-bar {
            position: absolute;
            bottom: -20px;
            left: 0;
            height: 2px;
            background: var(--gold);
            width: 0%;
            transition: width 10s linear;
            border-radius: 1px;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .testimonials {
                padding: 60px 0;
            }

            .testimonial-slide {
                padding: 0 20px;
            }

            .testimonial-author {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .author-avatar {
                width: 50px;
                height: 50px;
                font-size: 1rem;
            }

            .testimonials-nav {
                gap: 20px;
                margin-top: 40px;
            }

            .nav-btn {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }

            .quote-icon {
                font-size: 2.5rem;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            .section-subtitle {
                margin-bottom: 50px;
            }
        }

.site-footer {
  background: var(--footer-bg);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
}

.footer-top {
  padding: 60px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.footer-about {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  border-radius: 8px;
}

.footer-logo h3 {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
}

.footer-awards {
  margin-top: 15px;
}

.award-badge {
  display: inline-block;
  background: rgba(217, 199, 156, 0.1);
  padding: 5px 12px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-right: 8px;
  transition: background 0.3s ease;
}

.award-badge:hover {
  background: rgba(217, 199, 156, 0.2);
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 1.2rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 5px;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

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

.contact-item .icon {
  font-size: 18px;
  color: var(--gold);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  display: flex;
  text-decoration: none;
  gap: 15px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  font-size: 20px;
  color: #fff;
}

.social-icon.facebook {
  background: #3b5998;
}

.social-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.whatsapp {
  background: #25D366;
}

.social-icon.twitter {
  background: #1DA1F2;
}

.social-icon.linkedin {
  background: #0077B5;
}

.social-icon:hover {
  filter: brightness(1.1);
  transform: translateY(-4px) scale(1.15);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 20px;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* 🌐 Footer Responsivo — Mobile até 768px */
@media (max-width: 768px) {

  .footer-top {
    padding: 40px 15px;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .footer-about {
    max-width: 350px;
  }

  .footer-about .footer-logo img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
  }

  .footer-about h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .footer-about p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ddd;
  }

  .footer-col {
    width: 100%;
    max-width: 340px;
  }

  .footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #f4d496;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin: 5px 0;
  }

  .footer-links a {
    color: #ddd;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover {
    color: #f2d497;
  }

  .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    margin-bottom: 10px;
  }

  .contact-item .icon {
    display: none; /* esconde ícones para evitar poluição visual */
  }

  .socialsfooter-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }

  .socialsfooter-icons a {
    font-size: 1.4rem;
    color: #fff;
    transition: transform 0.2s, color 0.2s;
  }

  .socialsfooter-icons a:hover {
    transform: scale(1.1);
    color: #fff;
  }

  .footer-bottom {
    text-align: center;
    padding: 20px 10px;
    font-size: 0.85rem;
  }

  .footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }

  .footer-bottom-content a {
    font-weight: 600;
    color: #f4d496;
  }
}

.footer-bottom {
  background: #1b1b1b;
  color: #ccc;
  text-align: center;
  padding: 20px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content p {
  margin: 5px 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-credit {
  color: #aaa;
}

.footer-credit a {
  color: #f2d497;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.footer-credit a:hover {
  color: #fff;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .footer-bottom {
    font-size: 0.85rem;
    padding: 15px;
  }
}


/* Responsive */
@media (max-width: 1024px) {
  .menu {
    gap: 25px;
  }
  
  .brand img.logo {
    height: 120px;
  }
  
  .site-header.scrolled .brand img.logo {
    height: 80px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .brand img.logo {
    height: 100px;
  }
  
  .site-header.scrolled .brand img.logo {
    height: 70px;
  }
  
  .swiper-slide h1 {
    font-size: 2.5rem;
  }
  
  .swiper-slide p {
    font-size: 1.1rem;
  }
  
  .about .grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
  }
  
  .header-inner {
    min-height: 70px;
  }
  
  .brand img.logo {
    height: 80px;
  }
  
  .site-header.scrolled .brand img.logo {
    height: 60px;
  }
  
  .swiper-slide .overlay {
    padding: 20px 15px;
    margin-top: 60px;
  }
  
  .swiper-slide h1 {
    font-size: 2rem;
  }
  
  .section h2 {
    font-size: 2rem;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background: #25D366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0.9;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  opacity: 1;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}
.whatsapp-float:hover svg {
  transform: scale(1.1) rotate(10deg);
}

/* Tooltip do WhatsApp */
.whatsapp-float::before {
  content: "Fale conosco no WhatsApp";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  margin-right: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.8);
  margin-right: 7px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Animação de pulso */
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Animação de entrada */
@keyframes whatsappSlideIn {
  from {
    transform: translateX(100px) scale(0);
    opacity: 0;
  }
  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

.whatsapp-float {
  animation: whatsappSlideIn 0.6s ease-out 1s both, whatsappPulse 2s infinite 2s;
}

/* Responsivo para WhatsApp */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-float::before {
    font-size: 13px;
    padding: 8px 12px;
    right: 110%;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
  
  .whatsapp-float::before {
    display: none; /* Esconde tooltip em telas muito pequenas */
  }
  
  .whatsapp-float::after {
    display: none;
  }
}

/* Loading Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.card {
  animation: fadeIn 0.6s ease forwards;
}

.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.2s; }
.card:nth-child(4) { animation-delay: 0.3s; }


/* ==================== SOCIAL SIDEBAR ==================== */
.social-sidebar {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  animation: fadeInSidebar 0.8s ease forwards 1s;
}

@keyframes fadeInSidebar {
  to {
    opacity: 1;
  }
}

.social-sidebar-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-sidebar-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: -1;
}

.social-sidebar-link:hover {
  transform: translateX(5px) scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.social-sidebar-link:hover::before {
  transform: scale(1);
}

.social-sidebar-link i {
  font-size: 22px;
  z-index: 1;
  transition: all 0.3s ease;
}

/* Instagram */
.social-sidebar-link.instagram::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-sidebar-link.instagram i {
  color: #e4405f;
}

.social-sidebar-link.instagram:hover i {
  color: #ffffff;
}

/* Facebook */
.social-sidebar-link.facebook::before {
  background: #1877f2;
}

.social-sidebar-link.facebook i {
  color: #1877f2;
}

.social-sidebar-link.facebook:hover i {
  color: #ffffff;
}

/* WhatsApp */
.social-sidebar-link.whatsapp::before {
  background: #25d366;
}

.social-sidebar-link.whatsapp i {
  color: #25d366;
}

.social-sidebar-link.whatsapp:hover i {
  color: #ffffff;
}

/* Tooltip ao passar o mouse */
.social-sidebar-link::after {
  content: attr(data-label);
  position: absolute;
  left: 65px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.social-sidebar-link:hover::after {
  opacity: 1;
  left: 70px;
}

/* Esconder em dispositivos móveis */
@media (max-width: 768px) {
  .social-sidebar {
    display: none;
  }
}

/* Ajuste para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .social-sidebar {
    left: 15px;
  }
  
  .social-sidebar-link {
    width: 45px;
    height: 45px;
  }
  
  .social-sidebar-link i {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-item {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }
}

.servicos-home {
  background: #111;
  color: #eee;
  text-align: center;
  padding: 80px 20px;
}

.servicos-home h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: #d9c78c;
  margin-bottom: 10px;
}

.servicos-home p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.servico {
  background: #1a1a1a;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(217,199,140,0.15);
}

.servico img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.servico h3 {
  padding: 15px;
  color: #f4f4f4;
  font-size: 1.1rem;
  font-weight: 600;
}

.servico:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(217,199,140,0.15);
  border-color: rgba(217,199,140,0.3);
}

.btn-servicos {
  background: linear-gradient(135deg, #d9c78c, #b69b58);
  color: #1a1a1a;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.8px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-servicos:hover {
  background: linear-gradient(135deg, #b69b58, #d9c78c);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(217,199,140,0.25);
}

/* Links do footer */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  position: relative;
  display: inline-block;
  color: #ddd;
  text-decoration: none;
  font-size: 0.95rem;
  padding-left: 16px;
  transition: all 0.3s ease;
}

/* Adiciona seta minimalista */
.footer-links a::before {
  content: "›"; /* seta simples e leve */
  position: absolute;
  left: 0;
  top: 0;
  color: #f2d497; /* cor dourada sutil */
  font-size: 1rem;
  line-height: 1.2;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Efeito hover */
.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-links a:hover::before {
  transform: translateX(3px);
  color: #fff;
}

/* Responsivo */
@media (max-width: 600px) {
  .footer-links a {
    font-size: 1rem;
    padding-left: 18px;
  }

  .footer-links a::before {
    font-size: 1.1rem;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  animation: slideUp 0.5s ease-out forwards;
  border-top: 3px solid #f0cc84;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
  min-width: 250px;
}

.cookie-link {
  color: #f0cc84;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.cookie-link:hover {
  color: #f0cc84;
  border-bottom-color: #ffed4e;
}

.cookie-btn {
  padding: 12px 30px;
  background: #f0cc84;
  border: none;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
  white-space: nowrap;
}

.cookie-btn:hover {
  background: #f0cc84;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.cookie-btn:active {
  transform: translateY(0);
}

.cookie-banner.hide {
  animation: slideDown 0.5s ease-out forwards;
}

@keyframes slideDown {
  to {
    transform: translateY(100%);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    font-size: 14px;
  }
  
  .cookie-btn {
    width: 100%;
  }
}
