@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700&display=swap');

:root {
   --main-color: #3a6b8f;
   /* azul mais suave e escuro */
   --main-dark: #2c4f6b;
   /* tom mais escuro para contrastes */
   --main-light: #5f8aac;
   /* tom mais claro, mas ainda suave */
   --orange: #f39c12;
   --red: #e74c3c;
   --black: #333;
   --white: #fff;
   --light-color: #666;
   --light-bg: #f4f6f9;
   /* fundo mais claro e suave */
   --border: .2rem solid #ddd;
   /* borda mais neutra */
   --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .05);
}

* {
   font-family: 'Nunito', sans-serif;
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   outline: none;
   border: none;
   text-decoration: none;
}

*::selection {
   background-color: var(--main-color);
   color: var(--white);
}

::-webkit-scrollbar {
   height: .5rem;
   width: 1rem;
}

::-webkit-scrollbar-track {
   background-color: transparent;
}

::-webkit-scrollbar-thumb {
   background-color: var(--main-color);
}

html {
   font-size: 62.5%;
   overflow-x: hidden;
}

body {
   background-color: var(--light-bg);
}

section {
   padding: 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.heading {
   font-size: 2rem;
   color: var(--black);
   margin-bottom: 2rem;
   text-align: center;
   text-transform: uppercase;
}

/* Banner estático */
.static-banner {
   position: relative;
   width: 100%;
   height: 350px;
   /* Altura reduzida */
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   overflow: hidden;
   margin: 2rem 0;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.banner-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
   z-index: 1;
}

.banner-content {
   position: relative;
   z-index: 2;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: flex-start;
   /* Alinhamento à esquerda */
   text-align: left;
   /* Texto à esquerda */
   color: white;
   padding: 0 2rem 0 4rem;
   /* Mais espaço à esquerda */
}

.banner-tag {
   font-size: 1.6rem;
   color: #ffd369;
   text-transform: uppercase;
   letter-spacing: 2px;
   font-weight: 500;
   margin-bottom: 0.5rem;
   background: rgba(0, 0, 0, 0.3);
   padding: 0.3rem 1.5rem;
   border-radius: 30px;
   display: inline-block;
}

.banner-title {
   font-size: 2.8rem;
   font-weight: 700;
   margin-bottom: 0.5rem;
   text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.banner-description {
   font-size: 1.8rem;
   margin-bottom: 1.5rem;
   text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.banner-btn {
   display: inline-block;
   background: var(--main-color);
   color: white;
   padding: 1rem 2.5rem;
   border-radius: 50px;
   font-size: 1.6rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   transition: all 0.3s ease;
   text-decoration: none;
   border: none;
   cursor: pointer;
   box-shadow: 0 5px 15px rgba(58, 107, 143, 0.3);
}

.banner-btn:hover {
   background: var(--main-dark);
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(58, 107, 143, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
   .static-banner {
      height: 200px;
   }

   .banner-content {
      padding: 0 2rem;
   }

   .banner-tag {
      font-size: 1.4rem;
   }

   .banner-title {
      font-size: 2.2rem;
   }

   .banner-description {
      font-size: 1.5rem;
   }

   .banner-btn {
      padding: 0.8rem 2rem;
      font-size: 1.4rem;
   }
}

@media (max-width: 480px) {
   .static-banner {
      height: 180px;
   }

   .banner-title {
      font-size: 1.8rem;
   }

   .banner-description {
      font-size: 1.3rem;
      margin-bottom: 1rem;
   }
}

.btn,
.delete-btn,
.option-btn {
   display: block;
   width: 100%;
   margin-top: 1rem;
   border-radius: .5rem;
   padding: 1rem 3rem;
   font-size: 1.7rem;
   text-transform: capitalize;
   color: var(--white);
   cursor: pointer;
   text-align: center;
}

.btn:hover,
.delete-btn:hover,
.option-btn:hover {
   background-color: var(--black);
}

.btn {
   background-color: var(--main-color);
}

.option-btn {
   background-color: var(--orange);
}

.delete-btn {
   background-color: var(--red);
}

.flex-btn {
   display: flex;
   gap: 1rem;
}

.message {
   position: sticky;
   top: 0;
   max-width: 1200px;
   margin: 0 auto;
   background-color: var(--light-bg);
   padding: 2rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1.5rem;
   z-index: 1100;
}

.message span {
   font-size: 2rem;
   color: var(--black);
}

.message i {
   cursor: pointer;
   color: var(--red);
   font-size: 2.5rem;
}

.message i:hover {
   color: var(--black);
}

.empty {
   padding: 1.5rem;
   background-color: var(--white);
   border: var(--border);
   box-shadow: var(--box-shadow);
   text-align: center;
   color: var(--red);
   border-radius: .5rem;
   font-size: 2rem;
   text-transform: capitalize;
}

.disabled {
   pointer-events: none;
   user-select: none;
   opacity: .5;
}

@keyframes fadeIn {
   0% {
      transform: translateY(1rem);
   }
}

.header {
   position: sticky;
   top: 0;
   left: 0;
   right: 0;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   z-index: 1000;
}

.header .flex {
   display: flex;
   align-items: center;
   justify-content: space-between;
   position: relative;
}

.header .flex .logo {
   font-size: 2.5rem;
   color: var(--black);
}

.header .flex .logo span {
   color: var(--main-color);
}

.header .flex .navbar a {
   margin: 0 1rem;
   font-size: 2rem;
   color: var(--black);
}

.header .flex .navbar a:hover {
   color: var(--main-color);
   text-decoration: underline;
}

.header .flex .icons>* {
   margin-left: 1rem;
   font-size: 2.5rem;
   cursor: pointer;
   color: var(--black);
}

.header .flex .icons>*:hover {
   color: var(--main-color);
}

.header .flex .icons a span {
   font-size: 2rem;
}

/* ===== PERFIL DROPDOWN MODERNO ===== */
.header .flex .profile {
   position: absolute;
   top: 120%;
   right: 2rem;
   background-color: #ffffff;
   border-radius: 20px;
   box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
   border: 1px solid #eef2f6;
   padding: 2rem;
   width: 28rem;
   display: none;
   animation: fadeIn 0.2s linear;
   z-index: 100;
}

.header .flex .profile.active {
   display: block;
}

/* Nome do utilizador */
.header .flex .profile p {
   text-align: center;
   color: #1e2b38;
   font-size: 1.8rem;
   font-weight: 600;
   margin-bottom: 1.5rem;
   padding-bottom: 1rem;
   border-bottom: 1px solid #eef2f6;
}

/* Botões principais (atualizar perfil, logout) */
.header .flex .profile .btn,
.header .flex .profile .delete-btn {
   display: block;
   width: 100%;
   padding: 1.2rem;
   border-radius: 40px;
   font-size: 1.5rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   text-align: center;
   transition: all 0.3s ease;
   margin-bottom: 1rem;
   border: none;
   cursor: pointer;
}

.header .flex .profile .btn {
   background: var(--main-color);
   color: white;
   box-shadow: 0 5px 15px rgba(58,107,143,0.2);
}

.header .flex .profile .btn:hover {
   background: var(--main-dark);
   transform: translateY(-2px);
   box-shadow: 0 10px 25px rgba(58,107,143,0.3);
}

.header .flex .profile .delete-btn {
   background: #fee2e2;
   color: #b91c1c;
}

.header .flex .profile .delete-btn:hover {
   background: #b91c1c;
   color: white;
   transform: translateY(-2px);
   box-shadow: 0 10px 25px rgba(185,28,28,0.2);
}

/* Botões registar/login lado a lado */
.header .flex .profile .flex-btn {
   display: flex;
   gap: 1rem;
   margin: 1rem 0;
}

.header .flex .profile .flex-btn .option-btn {
   flex: 1;
   padding: 1rem;
   border-radius: 40px;
   font-size: 1.4rem;
   font-weight: 600;
   text-transform: uppercase;
   text-align: center;
   transition: all 0.3s ease;
   border: 1.5px solid var(--main-color);
   color: var(--main-color);
   background: transparent;
}

.header .flex .profile .flex-btn .option-btn:hover {
   background: var(--main-color);
   color: white;
   transform: translateY(-2px);
}
#menu-btn {
   display: none;
}

/* ===== BANNER PREMIUM (SUAVE) ===== */
.home-bg {
   background: url('../images/banner.avif') no-repeat center/cover;
   position: relative;
   overflow: hidden;
}

.home-bg::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-image: url('../images/pattern.png');
   opacity: 0.05;
   pointer-events: none;
}

.home-bg .home .slide {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 2rem;
   padding: 4rem 0 6rem;
   min-height: 80vh;
}

.home-bg .home .slide .image {
   flex: 1 1 40rem;
   position: relative;
   z-index: 2;
}

.home-bg .home .slide .image img {
   width: 100%;
   height: auto;
   max-height: 40rem;
   /* Reduzido de 45rem para 35rem */
   object-fit: contain;
   filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
   transform: scale(1);
   transition: transform 0.5s ease;
}

.home-bg .home .slide:hover .image img {
   transform: scale(1.02);
}

.home-bg .home .slide .content {
   flex: 1 1 40rem;
   z-index: 2;
}

.home-bg .home .slide .content span {
   font-size: 1.8rem;
   color: #ffd369;
   text-transform: uppercase;
   letter-spacing: 2px;
   font-weight: 500;
   display: inline-block;
   margin-bottom: 0.5rem;
   background: rgba(255, 211, 105, 0.15);
   padding: 0.3rem 1.2rem;
   border-radius: 30px;
   backdrop-filter: blur(5px);
}

.home-bg .home .slide .content h3 {
   font-size: 4.5rem;
   color: #fff;
   text-transform: uppercase;
   font-weight: 800;
   line-height: 1.2;
   margin: 1rem 0 1.5rem;
   text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.home-bg .home .slide .content .btn {
   display: inline-block;
   background: linear-gradient(45deg, #ffd369, #ffb347);
   color: #0a0f1e;
   font-weight: 700;
   padding: 1.2rem 3rem;
   border-radius: 50px;
   text-transform: uppercase;
   letter-spacing: 1px;
   box-shadow: 0 10px 20px rgba(255, 211, 105, 0.3);
   transition: all 0.3s ease;
   border: none;
   font-size: 1.4rem;
}

.home-bg .home .slide .content .btn:hover {
   transform: translateY(-3px);
   box-shadow: 0 15px 30px rgba(255, 211, 105, 0.5);
   background: linear-gradient(45deg, #ffb347, #ffd369);
}

/* ===== SEÇÃO DE CATEGORIAS ===== */
.category {
   position: relative;
   padding: 4rem 0;
}

.category .heading {
   text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
   color: var(--black);
}

.category-grid {
   display: grid;
   grid-template-columns: repeat(10, 1fr);
   gap: 1rem;
   padding: 1rem 0 3rem;
   max-width: 1200px;
   margin: 0 auto;
}

.category-item {
   display: block;
   position: relative;
   width: 100%;
   aspect-ratio: 1 / 1;
   border-radius: 50%;
   overflow: hidden;
   text-decoration: none;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
   transform: scale(1.05);
   box-shadow: 0 15px 30px rgba(58, 107, 143, 0.15);
}

.category-image {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-position: center;
   transition: transform 0.5s ease;
   z-index: 1;
}

.category-item:hover .category-image {
   transform: scale(1.1);
}

.category-item::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.15);
   z-index: 2;
   transition: background 0.3s ease;
}

.category-item:hover::after {
   background: rgba(0, 0, 0, 0.25);
}

.category-item span {
   position: absolute;
   bottom: 15%;
   left: 50%;
   transform: translateX(-50%);
   color: white;
   font-size: 0.9rem;
   font-weight: 700;
   text-align: center;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
   z-index: 3;
   width: 90%;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

@media (max-width: 768px) {
   .category-grid {
      display: flex;
      overflow-x: auto;
      gap: 0.8rem;
      padding: 0.5rem 1rem 1.5rem;
      scroll-snap-type: x mandatory;
   }

   .category-item {
      flex: 0 0 auto;
      width: 100px;
      height: 100px;
      scroll-snap-align: start;
   }

   .category-item span {
      font-size: 0.75rem;
      bottom: 10%;
   }
}

@media (max-width: 480px) {
   .category-item {
      width: 80px;
      height: 80px;
   }

   .category-item span {
      font-size: 0.7rem;
   }
}

/* ===== SEÇÃO DE PRODUTOS PREMIUM (SUAVE) ===== */
.home-products {
   padding: 6rem 0;
   position: relative;
   overflow: hidden;
}

.home-products .heading {
   font-size: 2.5rem;
   font-weight: 800;
   text-align: center;
   margin-bottom: 4rem;
   color: #1e2b38;
   text-transform: uppercase;
   letter-spacing: 2px;
   position: relative;
   z-index: 2;
}

.home-products .heading::after {
   content: '';
   display: block;
   width: 120px;
   height: 4px;
   background: linear-gradient(90deg, var(--main-color), var(--main-dark));
   margin: 1.5rem auto 0;
   border-radius: 4px;
   box-shadow: 0 0 20px rgba(58, 107, 143, 0.2);
}

.home-products .swiper {
   padding: 2rem 0 5rem;
   position: relative;
}

/* Setas de navegação */
.home-products .swiper-button-next,
.home-products .swiper-button-prev {
   width: 60px;
   height: 60px;
   background: rgba(255, 255, 255, 0.9);
   backdrop-filter: blur(5px);
   border-radius: 50%;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
   color: var(--main-color);
   border: 1px solid rgba(58, 107, 143, 0.1);
   opacity: 1;
   visibility: visible;
}

.home-products .swiper-button-next {
   right: 10px;
}

.home-products .swiper-button-prev {
   left: 10px;
}

.home-products .swiper-button-next:hover,
.home-products .swiper-button-prev:hover {
   background: var(--main-color);
   color: white;
   box-shadow: 0 15px 35px rgba(58, 107, 143, 0.2);
   transform: scale(1.1);
   border-color: var(--main-color);
}

.home-products .swiper-button-next:after,
.home-products .swiper-button-prev:after {
   font-size: 2rem;
   font-weight: bold;
}

/* Card do produto */
.home-products .slide {
   background: white;
    border-radius: 10px;
   padding: 2rem 1.5rem 2rem;
   box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
   transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
   position: relative;
   overflow: hidden;
   border: 1px solid #eef2f6;
   margin: 1rem 0.5rem;
   display: flex;
   flex-direction: column;
}

.home-products .slide:hover {
   transform: translateY(-12px);
   box-shadow: 0 30px 60px -15px rgba(58, 107, 143, 0.15);
   border-color: var(--main-light);
}

/* Botões de ação */
.home-products .slide .fa-heart,
.home-products .slide .fa-eye {
   position: absolute;
   top: 15px;
   width: 45px;
   height: 45px;
   border-radius: 50%;
   background: white;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.8rem;
   color: var(--main-color);
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
   cursor: pointer;
   z-index: 3;
   opacity: 0;
   transform: translateY(10px);
}

.home-products .slide:hover .fa-heart,
.home-products .slide:hover .fa-eye {
   opacity: 1;
   transform: translateY(0);
}

.home-products .slide .fa-heart {
   right: 15px;
   transition-delay: 0.1s;
}

.home-products .slide .fa-eye {
   right: 70px;
   transition-delay: 0.2s;
}

.home-products .slide .fa-heart:hover,
.home-products .slide .fa-eye:hover {
   background: var(--main-color);
   color: white;
   transform: scale(1.1);
}

/* Imagem do produto */
.home-products .slide img {
   width: 100%;
   height: 200px;
   object-fit: contain;
   margin-bottom: 1.5rem;
   transition: transform 0.5s ease;
   filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
}

.home-products .slide:hover img {
   transform: scale(1.08);
}

/* Nome do produto */
.home-products .slide .name {
   font-size: 1.6rem;
   font-weight: 700;
   color: #1e2b38;
   margin-bottom: 1rem;
   line-height: 1.3;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

/* Linha de preço e quantidade */
.home-products .slide .flex {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 1.5rem;
   background: #f8fafc;
   padding: 1rem 1.2rem;
   border-radius: 50px;
}

.home-products .slide .price {
   font-size: 2rem;
   font-weight: 800;
   color: var(--main-dark);
}

.home-products .slide .price span {
   font-size: 1.2rem;
   font-weight: 600;
   color: #64748b;
   margin-right: 0.3rem;
}

.home-products .slide .qty {
   width: 70px;
   height: 40px;
   border: 2px solid #e2e8f0;
   border-radius: 40px;
   text-align: center;
   font-size: 1.4rem;
   font-weight: 600;
   color: #1e2b38;
   background: white;
   transition: 0.3s;
}

.home-products .slide .qty:focus {
   border-color: var(--main-color);
   outline: none;
   box-shadow: 0 0 0 3px rgba(58, 107, 143, 0.1);
}

/* Botão adicionar ao carrinho */
.home-products .slide .btn {
   background: var(--main-color);
   color: white;
   border: none;
   border-radius: 60px;
   padding: 1.2rem;
   font-weight: 700;
   font-size: 1.4rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   transition: all 0.3s ease;
   box-shadow: 0 10px 20px rgba(58, 107, 143, 0.2);
   width: 100%;
}

.home-products .slide .btn:hover {
   background: var(--main-dark);
   color: white;
   box-shadow: 0 15px 30px rgba(58, 107, 143, 0.3);
   transform: translateY(-2px);
}

/* css adicional para novos componentes home geral */
/* ===== BANNER PROMOCIONAL RETANGULAR ===== */
.promo-banner {
   width: 100%;
   background: #f0f2f5;
   margin: 2rem 0;
}

.promo-slider {
   width: 100%;
   height: 350px;
   /* altura reduzida */
   overflow: hidden;
   position: relative;
}

.promo-slide {
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   /* texto alinhado à esquerda */
   padding: 0 5rem;
}

/* Overlay escuro para legibilidade */
.promo-slide::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.3);
   z-index: 1;
}

.promo-content {
   position: relative;
   z-index: 2;
   color: white;
   max-width: 600px;
   text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.promo-content span {
   font-size: 1.6rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: #ffd369;
   /* destaque dourado */
   font-weight: 500;
   background: rgba(0, 0, 0, 0.2);
   padding: 0.3rem 1.2rem;
   border-radius: 30px;
   display: inline-block;
   margin-bottom: 1rem;
}

.promo-content h3 {
   font-size: 3.5rem;
   font-weight: 800;
   margin-bottom: 0.5rem;
   line-height: 1.2;
}

.promo-content p {
   font-size: 1.8rem;
   margin-bottom: 2rem;
   opacity: 0.9;
}

.promo-btn {
   display: inline-block;
   background: var(--main-color);
   color: white;
   font-size: 1.6rem;
   font-weight: 600;
   padding: 1rem 2.5rem;
   border-radius: 40px;
   text-transform: uppercase;
   letter-spacing: 1px;
   transition: all 0.3s ease;
   border: none;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promo-btn:hover {
   background: var(--main-dark);
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Setas de navegação personalizadas */
.promo-next,
.promo-prev {
   width: 45px;
   height: 45px;
   background: rgba(255, 255, 255, 0.8);
   border-radius: 50%;
   backdrop-filter: blur(5px);
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
   color: var(--main-color);
   border: 1px solid rgba(255, 255, 255, 0.5);
}

.promo-next:after,
.promo-prev:after {
   font-size: 1.8rem;
   font-weight: bold;
}

.promo-next:hover,
.promo-prev:hover {
   background: var(--main-color);
   color: white;
   transform: scale(1.1);
}

/* Paginação */
.promo-pagination .swiper-pagination-bullet {
   background: rgba(255, 255, 255, 0.5);
   width: 12px;
   height: 12px;
   transition: 0.3s;
}
.promo-banner .promo-content {
   position: relative;
   z-index: 2;
   padding: 3rem 3rem 3rem 8rem; /* Aumenta o espaço à esquerda */
   color: white;
   max-width: 600px;
}
.section-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 2rem;
   flex-wrap: wrap;
   gap: 1rem;
}

.view-all {
   font-size: 1.6rem;
   color: var(--main-color);
   text-decoration: none;
   font-weight: 600;
   transition: color 0.3s;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
}

.view-all:hover {
   color: var(--main-dark);
}

.view-all i {
   font-size: 1.4rem;
   transition: transform 0.3s;
}

.view-all:hover i {
   transform: translateX(4px);
}
.promo-banner .promo-content h3 {
   font-size: 2.4rem;
   margin-bottom: 1rem;
   text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.promo-banner .promo-content p {
   font-size: 1.6rem;
   margin-bottom: 1.5rem;
   line-height: 1.5;
   text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.promo-banner .promo-content .promo-btn {
   display: inline-block;
   background: var(--main-color);
   color: white;
   padding: 1.2rem 3rem;
   border-radius: 40px;
   font-size: 1.6rem;
   font-weight: 600;
   text-transform: uppercase;
   transition: all 0.3s;
   text-decoration: none;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.promo-banner .promo-content .promo-btn:hover {
   background: var(--main-dark);
   transform: translateY(-2px);
   box-shadow: 0 10px 20px rgba(58, 107, 143, 0.3);
}
.promo-pagination .swiper-pagination-bullet-active {
   background: var(--main-color);
   width: 25px;
   border-radius: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
   .promo-slider {
      height: 280px;
   }

   .promo-content h3 {
      font-size: 2.5rem;
   }

   .promo-content p {
      font-size: 1.4rem;
   }

   .promo-slide {
      padding: 0 2rem;
   }
}

/* Paginação geral */
.swiper-pagination-bullet {
   background: #cbd5e0;
   width: 10px;
   height: 10px;
   transition: all 0.3s ease;
   opacity: 0.8;
}

.swiper-pagination-bullet-active {
   background: var(--main-color);
   width: 25px;
   border-radius: 10px;
   opacity: 1;
}

/* Responsividade mobile */
@media (max-width: 768px) {
   .home-products .heading {
      font-size: 1.8rem;
   }

   .home-products .swiper-button-next,
   .home-products .swiper-button-prev {
      width: 45px;
      height: 45px;
   }

   .home-products .swiper-button-next:after,
   .home-products .swiper-button-prev:after {
      font-size: 1.6rem;
   }

   .home-products .slide {
      padding: 1.5rem 1rem;
   }

   .home-products .slide img {
      height: 150px;
   }

   .home-products .slide .name {
      font-size: 1.4rem;
   }

   .home-products .slide .price {
      font-size: 1.8rem;
   }

   .home-products .slide .btn {
      padding: 1rem;
      font-size: 1.2rem;
   }
}

/* Seção de Marcas/Parceiros */
.brands {
   padding: 3rem 0 5rem;
   /* Ajuste para dar mais destaque */
   background: var(--light-bg);
   text-align: center;
}

.brands .container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
}

.brands-title {
   font-size: 2.2rem;
   color: var(--light-color);
   margin-bottom: 2rem;
   font-weight: 400;
   letter-spacing: 0.5px;
}

.brands-grid {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   gap: 2.5rem 5rem;
}

.brand-item {
   flex: 0 0 auto;
   transition: opacity 0.3s ease;
   opacity: 0.7;
}

.brand-item:hover {
   opacity: 1;
}

.brand-logo {
   height: 50px;
   /* Aumentado para 50px */
   width: auto;
   max-width: 150px;
   object-fit: contain;
   filter: grayscale(0.2);
   transition: filter 0.3s ease;
}

.brand-item:hover .brand-logo {
   filter: grayscale(0);
}

/* Responsividade */
@media (max-width: 768px) {
   .brands-title {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
   }

   .brands-grid {
      gap: 2rem 3rem;
   }

   .brand-logo {
      height: 40px;
      max-width: 120px;
   }
}

@media (max-width: 480px) {
   .brands-grid {
      gap: 1.5rem 2rem;
   }

   .brand-logo {
      height: 35px;
      max-width: 100px;
   }
}

/* Reduz o padding inferior da seção de produtos */
.home-products {
   padding: 6rem 0 2rem;
}

/* Ajusta o padding superior da seção de marcas (já incluso acima) */

@keyframes rotate {
   from {
      transform: rotate(0deg);
   }

   to {
      transform: rotate(360deg);
   }
}

/* ===== QUICK VIEW PREMIUM - REDESIGN ===== */
.quick-view {
   padding: 4rem 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.quick-view .heading {
   font-size: 3.6rem;
   color: var(--black);
   margin-bottom: 3rem;
   text-align: center;
   text-transform: uppercase;
   font-weight: 600;
   letter-spacing: 1px;
   position: relative;
}

.quick-view .heading::after {
   content: '';
   display: block;
   width: 80px;
   height: 3px;
   background: var(--main-color);
   margin: 1rem auto 0;
   border-radius: 2px;
}

.quick-view form {
   background: white;
    border-radius: 10px;
   padding: 3rem;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
   border: 1px solid #eaeef2;
   transition: box-shadow 0.3s ease;
}

.quick-view form:hover {
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.quick-view form .row {
   display: flex;
   align-items: flex-start;
   gap: 3rem;
   flex-wrap: wrap;
}

.quick-view form .row .image-container {
   flex: 1 1 40rem;
}

.quick-view form .row .image-container .main-image {
   background: #f9fbfd;
   border-radius: 8px;
   padding: 2rem;
   margin-bottom: 2rem;
   border: 1px solid #e2e8f0;
}

.quick-view form .row .image-container .main-image img {
   width: 100%;
   height: 30rem;
   object-fit: contain;
   transition: transform 0.3s ease;
}

.quick-view form .row .image-container .main-image img:hover {
   transform: scale(1.02);
}

.quick-view form .row .image-container .sub-image {
   display: flex;
   gap: 1rem;
   justify-content: center;
   flex-wrap: wrap;
}

.quick-view form .row .image-container .sub-image img {
   height: 7rem;
   width: 9rem;
   object-fit: contain;
   border: 1px solid #e2e8f0;
   border-radius: 6px;
   padding: 0.5rem;
   cursor: pointer;
   transition: all 0.2s ease;
   background: white;
}

.quick-view form .row .image-container .sub-image img:hover {
   border-color: var(--main-color);
   box-shadow: 0 5px 12px rgba(58, 107, 143, 0.15);
   transform: translateY(-2px);
}

.quick-view form .row .content {
   flex: 1 1 40rem;
}

.quick-view form .row .content .name {
   font-size: 2.6rem;
   font-weight: 600;
   color: #1e2b38;
   margin-bottom: 1rem;
   line-height: 1.3;
}

.quick-view form .row .content .details {
   font-size: 1.5rem;
   color: #4a5568;
   line-height: 1.6;
   margin-bottom: 2rem;
   background: #f9fbfd;
   padding: 1.5rem 2rem;
   border-radius: 8px;
   border: 1px solid #e2e8f0;
}

.quick-view form .row .flex {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
   margin: 2rem 0;
   background: #f9fbfd;
   padding: 1.2rem 2rem;
   border-radius: 8px;
   border: 1px solid #e2e8f0;
}

.quick-view form .row .flex .price {
   font-size: 2.8rem;
   font-weight: 700;
   color: var(--main-dark);
   display: flex;
   align-items: center;
   gap: 0.3rem;
}

.quick-view form .row .flex .price span {
   font-size: 1.6rem;
   font-weight: 500;
   color: #718096;
}

.quick-view form .row .flex .qty {
   width: 8rem;
   padding: 0.8rem 1.2rem;
   border: 1px solid #cbd5e0;
   font-size: 1.6rem;
   color: #1e2b38;
   border-radius: 6px;
   text-align: center;
   background: white;
   transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quick-view form .row .flex .qty:focus {
   border-color: var(--main-color);
   outline: none;
   box-shadow: 0 0 0 3px rgba(58, 107, 143, 0.1);
}

.quick-view form .row .flex-btn {
   display: flex;
   gap: 1.5rem;
   margin-top: 2rem;
}

.quick-view form .row .flex-btn .btn,
.quick-view form .row .flex-btn .option-btn {
   flex: 1;
   padding: 1.2rem 2rem;
   font-size: 1.5rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   border-radius: 6px;
   transition: all 0.2s ease;
   border: none;
   cursor: pointer;
   text-align: center;
}

.quick-view form .row .flex-btn .btn {
   background: var(--main-color);
   color: white;
}

.quick-view form .row .flex-btn .btn:hover {
   background: var(--main-dark);
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(58, 107, 143, 0.3);
}

.quick-view form .row .flex-btn .option-btn {
   background: white;
   color: var(--main-color);
   border: 1px solid var(--main-color);
}

.quick-view form .row .flex-btn .option-btn:hover {
   background: var(--main-color);
   color: white;
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(58, 107, 143, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
   .quick-view form {
      padding: 2rem;
   }

   .quick-view form .row .image-container .main-image img {
      height: 25rem;
   }

   .quick-view form .row .content .name {
      font-size: 2.2rem;
   }

   .quick-view .heading {
      font-size: 3rem;
   }
}

/* Seção de Testemunhos */
.testimonials {
   padding: 6rem 0;
   background: var(--light-bg);
   overflow: hidden;
}

.testimonials .container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
}

.testimonials .heading {
   font-size: 3.6rem;
   color: var(--black);
   text-align: center;
   margin-bottom: 1rem;
   text-transform: uppercase;
   font-weight: 600;
}

.testimonials .subheading {
   font-size: 1.8rem;
   color: var(--light-color);
   text-align: center;
   max-width: 700px;
   margin: 0 auto 4rem auto;
   line-height: 1.5;
}

/* Sliders */
.testimonials-slider {
   overflow: hidden;
   margin-bottom: 2rem;
   position: relative;
}

.slider-track {
   display: flex;
   width: fit-content;
   animation-timing-function: linear;
   animation-iteration-count: infinite;
}

.slider-left .slider-track {
   animation: scrollLeft 40s linear infinite;
}

.slider-right .slider-track {
   animation: scrollRight 40s linear infinite;
}

/* Cards */
.testimonial-card {
   flex: 0 0 auto;
   width: 300px;
   margin: 0 1.5rem;
   background: white;
   border-radius: 16px;
   padding: 2rem;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
   border: 1px solid #eef2f6;
   transition: transform 0.3s ease;
}

.testimonial-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 15px 35px rgba(58, 107, 143, 0.1);
   border-color: var(--main-color);
}

.card-header {
   margin-bottom: 1rem;
}

.card-header .date {
   font-size: 1.2rem;
   color: var(--main-color);
   font-weight: 600;
   display: block;
   margin-bottom: 0.5rem;
}

.card-header h4 {
   font-size: 1.6rem;
   color: var(--black);
   font-weight: 700;
   line-height: 1.3;
}

.testimonial-card .comment {
   font-size: 1.4rem;
   color: var(--light-color);
   line-height: 1.6;
   margin-bottom: 1.5rem;
}

.author .name {
   font-size: 1.4rem;
   font-weight: 600;
   color: var(--main-dark);
   display: block;
   text-align: right;
   border-top: 1px solid #eef2f6;
   padding-top: 1rem;
}

/* Animações */
@keyframes scrollLeft {
   0% {
      transform: translateX(0);
   }

   100% {
      transform: translateX(-50%);
   }
}

@keyframes scrollRight {
   0% {
      transform: translateX(-50%);
   }

   100% {
      transform: translateX(0);
   }
}

/* Responsividade */
@media (max-width: 768px) {
   .testimonials .heading {
      font-size: 2.8rem;
   }

   .testimonials .subheading {
      font-size: 1.5rem;
   }

   .testimonial-card {
      width: 260px;
      padding: 1.5rem;
   }

   .card-header h4 {
      font-size: 1.4rem;
   }
}

@media (max-width: 480px) {
   .quick-view .heading {
      font-size: 2.6rem;
   }

   .quick-view form .row .image-container .main-image img {
      height: 20rem;
   }

   .quick-view form .row .flex .price {
      font-size: 2.4rem;
   }

   .quick-view form .row .flex-btn {
      flex-direction: column;
      gap: 1rem;
   }
}

.products .box-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, 33rem);
   gap: 1.5rem;
   justify-content: center;
   align-items: flex-start;
}

.products .box-container .box {
   position: relative;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   border: var(--border);
   padding: 2rem;
   overflow: hidden;
}

.products .box-container .box img {
   height: 20rem;
   width: 100%;
   object-fit: contain;
   margin-bottom: 1rem;
}

.products .box-container .box .fa-heart,
.products .box-container .box .fa-eye {
   position: absolute;
   top: 1rem;
   height: 4.5rem;
   width: 4.5rem;
   line-height: 4.2rem;
   font-size: 2rem;
   background-color: var(--white);
   border: var(--border);
   border-radius: .5rem;
   text-align: center;
   color: var(--black);
   cursor: pointer;
   transition: .2s linear;
}

.products .box-container .box .fa-heart {
   right: -6rem;
}

.products .box-container .box .fa-eye {
   left: -6rem;
}

.products .box-container .box .fa-heart:hover,
.products .box-container .box .fa-eye:hover {
   background-color: var(--black);
   color: var(--white);
}

.products .box-container .box:hover .fa-heart {
   right: 1rem;
}

.products .box-container .box:hover .fa-eye {
   left: 1rem;
}

.products .box-container .box .name {
   font-size: 2rem;
   color: var(--black);
}

.products .box-container .box .flex {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.products .box-container .box .flex .qty {
   width: 7rem;
   padding: 1rem;
   border: var(--border);
   font-size: 1.8rem;
   color: var(--black);
   border-radius: .5rem;
}

.products .box-container .box .flex .price {
   font-size: 2rem;
   color: var(--red);
   margin-right: auto;
}

.form-container form {
   background-color: var(--white);
   padding: 2rem;
   border-radius: .5rem;
   border: var(--border);
   box-shadow: var(--box-shadow);
   text-align: center;
   margin: 0 auto;
   max-width: 50rem;
}

.form-container form h3 {
   font-size: 2.5rem;
   text-transform: uppercase;
   color: var(--black);
}

.form-container form p {
   font-size: 2rem;
   color: var(--light-color);
   margin: 1.5rem 0;
}

.form-container form .box {
   margin: 1rem 0;
   background-color: var(--light-bg);
   padding: 1.4rem;
   font-size: 1.8rem;
   color: var(--black);
   width: 100%;
   border-radius: .5rem;
}

.about .row {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 1.5rem;
}

.about .row .image {
   flex: 1 1 40rem;
}

.about .row .image img {
   width: 100%;
}

.about .row .content {
   flex: 1 1 40rem;
}

.about .row .content h3 {
   font-size: 3rem;
   color: var(--black);
}

.about .row .content p {
   line-height: 2;
   font-size: 1.5rem;
   color: var(--light-color);
   padding: 1rem 0;
}

.about .row .content .btn {
   display: inline-block;
   width: auto;
}

.reviews .slide {
   padding: 2rem;
   text-align: center;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   border: var(--border);
   margin-bottom: 5rem;
   user-select: none;
}

.reviews .slide img {
   height: 10rem;
   width: 10rem;
   border-radius: 50%;
   margin-bottom: .5rem;
}

.reviews .slide p {
   padding: 1rem 0;
   line-height: 2;
   font-size: 1.5rem;
   color: var(--light-color);
}

.reviews .slide .stars {
   display: inline-block;
   margin-bottom: 1rem;
   background-color: var(--light-bg);
   padding: 1rem 1.5rem;
   border-radius: .5rem;
}

.reviews .slide .stars i {
   margin: 0 .3rem;
   font-size: 1.7rem;
   color: var(--orange);
}

.reviews .slide h3 {
   font-size: 2rem;
   color: var(--black);
}

.contact form {
   padding: 2rem;
   text-align: center;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   border: var(--border);
   max-width: 50rem;
   margin: 0 auto;
}

.contact form h3 {
   margin-bottom: 1rem;
   text-transform: capitalize;
   font-size: 2.5rem;
   color: var(--black);
}

.contact form .box {
   margin: 1rem 0;
   width: 100%;
   background-color: var(--light-bg);
   padding: 1.4rem;
   font-size: 1.8rem;
   color: var(--black);
   border-radius: .5rem;
}

.contact form textarea {
   height: 15rem;
   resize: none;
}

.search-form form {
   display: flex;
   gap: 1rem;
}

.search-form form input {
   width: 100%;
   border: var(--border);
   border-radius: .5rem;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   padding: 1.4rem;
   font-size: 1.8rem;
   color: var(--black);
}

.search-form form button {
   font-size: 2.5rem;
   height: 5.5rem;
   line-height: 5.5rem;
   background-color: var(--main-color);
   cursor: pointer;
   color: var(--white);
   border-radius: .5rem;
   width: 6rem;
   text-align: center;
}

.search-form form button:hover {
   background-color: var(--black);
}

.wishlist-total {
   max-width: 50rem;
   margin: 0 auto;
   margin-top: 3rem;
   background-color: var(--white);
   border: var(--border);
   border-radius: .5rem;
   ;
   padding: 2rem;
   text-align: center;
}

.wishlist-total p {
   font-size: 2.5rem;
   color: var(--black);
   margin-bottom: 2rem;
}

.wishlist-total p span {
   color: var(--red);
}

.shopping-cart .fa-edit {
   height: 4.5rem;
   border-radius: .5rem;
   background-color: var(--orange);
   width: 5rem;
   font-size: 2rem;
   color: var(--white);
   cursor: pointer;
}

.shopping-cart .fa-edit:hover {
   background-color: var(--black);
}

.shopping-cart .sub-total {
   margin: 2rem 0;
   font-size: 2rem;
   color: var(--light-color);
}

.shopping-cart .sub-total span {
   color: var(--red);
}

.cart-total {
   max-width: 50rem;
   margin: 0 auto;
   margin-top: 3rem;
   background-color: var(--white);
   border: var(--border);
   border-radius: .5rem;
   ;
   padding: 2rem;
   text-align: center;
}

.cart-total p {
   font-size: 2.5rem;
   color: var(--black);
   margin-bottom: 2rem;
}

.cart-total p span {
   color: var(--red);
}

.display-orders {
   text-align: center;
   padding-bottom: 0;
}

.display-orders p {
   display: inline-block;
   padding: 1rem 2rem;
   margin: 1rem .5rem;
   font-size: 2rem;
   text-align: center;
   border: var(--border);
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
}

.display-orders p span {
   color: var(--red);
}

.display-orders .grand-total {
   margin-top: 1.5rem;
   margin-bottom: 2.5rem;
   font-size: 2.5rem;
   color: var(--light-color);
}

.display-orders .grand-total span {
   color: var(--red);
}

.checkout-orders form {
   padding: 2rem;
   border: var(--border);
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
}

.checkout-orders form h3 {
   border-radius: .5rem;
   background-color: var(--black);
   color: var(--white);
   padding: 1.5rem 1rem;
   text-align: center;
   text-transform: uppercase;
   margin-bottom: 2rem;
   font-size: 2.5rem;
}

.checkout-orders form .flex {
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
   justify-content: space-between;
}

.checkout-orders form .flex .inputBox {
   width: 49%;
}

.checkout-orders form .flex .inputBox .box {
   width: 100%;
   border: var(--border);
   border-radius: .5rem;
   font-size: 1.8rem;
   color: var(--black);
   padding: 1.2rem 1.4rem;
   margin: 1rem 0;
   background-color: var(--light-bg);
}

.checkout-orders form .flex .inputBox span {
   font-size: 1.8rem;
   color: var(--light-color);
}

.orders .box-container {
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
   align-items: flex-start;
}

.orders .box-container .box {
   padding: 1rem 2rem;
   flex: 1 1 40rem;
   border: var(--border);
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
}

.orders .box-container .box p {
   margin: .5rem 0;
   line-height: 1.8;
   font-size: 2rem;
   color: var(--light-color);
}

.orders .box-container .box p span {
   color: var(--main-color);
}

.footer {
   background-color: var(--white);
   /* padding-bottom: 7rem; */
}

.footer .grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
   gap: 1.5rem;
   align-items: flex-start;
}

.footer .grid .box h3 {
   font-size: 2rem;
   color: var(--black);
   margin-bottom: 2rem;
   text-transform: capitalize;
}

.footer .grid .box a {
   display: block;
   margin: 1.5rem 0;
   font-size: 1.7rem;
   color: var(--light-color);
}

.footer .grid .box a i {
   padding-right: 1rem;
   color: var(--main-color);
   transition: .2s linear;
}

.footer .grid .box a:hover {
   color: var(--main-color);
}

.footer .grid .box a:hover i {
   padding-right: 2rem;
}

.footer .credit {
   text-align: center;
   padding: 2.5rem 2rem;
   border-top: var(--border);
   font-size: 2rem;
   color: var(--black);
}

.footer .credit span {
   color: var(--main-color);
}






@media (max-width:991px) {

   html {
      font-size: 55%;
   }

}

@media (max-width:768px) {

   #menu-btn {
      display: inline-block;
   }

   .header .flex .navbar {
      position: absolute;
      top: 99%;
      left: 0;
      right: 0;
      border-top: var(--border);
      border-bottom: var(--border);
      background-color: var(--white);
      transition: .2s linear;
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
   }

   .header .flex .navbar.active {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
   }

   .header .flex .navbar a {
      display: block;
      margin: 2rem;
   }

   .home-bg .home .slide .content {
      text-align: center;
   }

   .home-bg .home .slide .content h3 {
      font-size: 3rem;
   }

}

@media (max-width:450px) {

   html {
      font-size: 50%;
   }

   .heading {
      font-size: 3rem;
   }

   .flex-btn {
      flex-flow: column;
      gap: 0;
   }

   .quick-view form .row .image-container .sub-image img {
      width: 8rem;
   }

   .checkout-orders form .flex .inputBox {
      width: 100%;
   }

}