/* === VARIÁVEIS GLOBAIS === */
:root {
  --cor-primaria: #8B4513;
  --cor-secundaria: #D2691E;
  --cor-hover: #A0522D;
  --cor-texto: #3b2416;
  --cor-clara: #fff3e6;
  --sombra-suave: 0 4px 12px rgba(0,0,0,0.08);
  --transicao-padrao: all 0.3s ease;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--cor-texto);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

/* === NAVBAR === */
.custom-navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 1.2rem 0;
  transition: var(--transicao-padrao);
}

.custom-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cor-primaria) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.5px;
}

.custom-nav .nav-link {
  color: var(--cor-texto);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.custom-nav .nav-link:hover {
  color: var(--cor-primaria);
  transform: translateY(-1px);
}

.custom-nav .nav-link.active {
  color: var(--cor-primaria);
}

.custom-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--cor-primaria);
  border-radius: 2px;
}

.btn-icon {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem;
}

.btn-icon:hover {
  transform: scale(1.1);
  color: var(--cor-primaria);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--cor-primaria);
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 600;
}

.btn-outline-custom {
  border: 2px solid var(--cor-primaria);
  color: var(--cor-primaria);
  font-weight: 600;
  padding: 0.6rem 1.8rem;
  transition: all 0.3s ease;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

.btn-outline-custom:hover {
  background: var(--cor-primaria);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.25);
}

.btn-primary-custom {
  background: var(--cor-primaria);
  color: white;
  border: none;
  font-weight: 600;
  padding: 0.6rem 1.8rem;
  transition: all 0.3s ease;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

.btn-primary-custom:hover {
  background: var(--cor-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 69, 19, 0.35);
}

/* === HERO SECTION === */
.hero-section-new {
  position: relative;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4CC 50%, #FFDAB9 100%);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}


/* Formas geométricas decorativas */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #FF8C42, #FFA500);
  top: -100px;
  left: -100px;
  animation: pulse 8s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #FFB347, #FFCC33);
  bottom: 10%;
  right: 5%;
  animation: pulse 6s ease-in-out infinite;
  animation-delay: 2s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #FF6B35, #FF8C42);
  top: 50%;
  right: 20%;
  animation: pulse 7s ease-in-out infinite;
  animation-delay: 1s;
}

.shape-4 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #FFA500, #FFD700);
  bottom: -80px;
  left: 30%;
  animation: pulse 9s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.08;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.12;
  }
}

/* Conteúdo do Hero */
.hero-content-left {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
}

.hero-title-new {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.1;
  color: #2C1810;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.2s both;
  letter-spacing: -1px;
}

.text-gradient {
  background: linear-gradient(135deg, #FF8C42 0%, #D2691E 50%, #8B4513 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description-new {
  font-size: 1.15rem;
  color: #5C4033;
  line-height: 1.8;
  margin-bottom: 45px;
  max-width: 550px;
  animation: fadeInUp 1s ease-out 0.4s both;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Botões do Hero */
.hero-buttons-new {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.3px;
}

.btn-hero-primary {
  background: var(--cor-primaria);
  color: white;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.25);
}

.btn-hero-primary:hover {
  background: var(--cor-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.35);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--cor-primaria);
  border: 2px solid var(--cor-primaria);
}

.btn-hero-secondary:hover {
  background: var(--cor-primaria);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.25);
}

/* Imagem do Hero */
.hero-content-right {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero-image-wrapper {
  position: relative;
  animation: fadeInRight 1s ease-out 0.5s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-main-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}

.hero-main-image:hover {
  transform: scale(1.02) rotate(-1deg);
}

/* Decorações da imagem */
.image-decoration {
  position: absolute;
  border-radius: 30px;
  z-index: 0;
}

.decoration-1 {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFB347, #FFCC33);
  top: -20px;
  left: -20px;
  opacity: 0.3;
}

.decoration-2 {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FF8C42, #FFA500);
  bottom: -20px;
  right: -20px;
  opacity: 0.2;
}

/* === SEÇÕES GERAIS === */
.section-title {
  font-size: 2.8rem;
  color: var(--cor-primaria);
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.min-vh-80 {
  min-height: 80vh;
}

/* === CATEGORIAS === */
.categories-section {
  background: #fff;
  padding: 90px 0;
}

.category-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: var(--sombra-suave);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.category-img {
  background-size: cover;
  background-position: center;
  height: 220px;
  transition: transform 0.5s ease;
}

.category-card:hover .category-img {
  transform: scale(1.05);
}

.category-content {
  padding: 26px;
  text-align: center;
}

.category-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--cor-primaria);
  font-weight: 700;
}

.category-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}

.category-link {
  color: var(--cor-primaria);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.category-link:hover {
  color: var(--cor-hover);
  transform: translateX(5px);
  display: inline-block;
}

/* === PRODUTOS === */
.products-section {
  padding: 90px 0;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sombra-suave);
  transition: all 0.35s ease;
  position: relative;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.product-badge {
  position: absolute;
  background: var(--cor-primaria);
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 0 0 12px 0;
  font-weight: 600;
  z-index: 2;
  letter-spacing: 0.3px;
}

.product-img {
  background-size: cover;
  background-position: center;
  height: 240px;
  transition: transform 0.5s ease;
}

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

.product-content {
  padding: 24px;
}

.product-content h3 {
  color: var(--cor-primaria);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.product-content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0.8rem 0;
  line-height: 1.6;
}

.rating {
  margin-bottom: 0.8rem;
}

.rating .stars {
  color: #ffb400;
  font-size: 1rem;
}

.rating-count {
  color: #999;
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

.product-price {
  margin: 1rem 0;
}

.product-price .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cor-primaria);
  font-family: 'Cormorant Garamond', serif;
}

.product-price .price-note {
  display: block;
  font-size: 0.85rem;
  color: #999;
  margin-top: 0.3rem;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 1.2rem;
}

.product-actions .btn {
  flex: 1;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* === FOOTER === */
footer {
  background: #3b2416;
  color: #fff;
  padding: 70px 0 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff3e6;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

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

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links li a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.footer-links li a:hover {
  opacity: 1;
  color: var(--cor-secundaria);
  padding-left: 5px;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  margin-right: 15px;
  font-weight: 500;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.social-links a:hover {
  color: var(--cor-secundaria);
  transform: translateY(-2px);
  display: inline-block;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 1rem;
  opacity: 0.9;
  font-size: 0.95rem;
}

/* === RESPONSIVIDADE === */
@media (max-width: 991px) {
  .hero-section-new {
    padding: 70px 0;
    min-height: auto;
  }

  .hero-content-left {
    text-align: center;
    padding: 20px;
  }

  .hero-title-new {
    font-size: 3.5rem;
  }

  .hero-description-new {
    margin: 0 auto 35px;
  }

  .hero-buttons-new {
    justify-content: center;
  }

  .hero-content-right {
    margin-top: 50px;
  }

  .hero-main-image {
    max-width: 100%;
  }

  .floating-element {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hero-title-new {
    font-size: 2.8rem;
  }

  .hero-description-new {
    font-size: 1.05rem;
  }

  .btn-hero {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .hero-buttons-new {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .floating-shape {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title-new {
    font-size: 2.2rem;
  }

  .custom-brand {
    font-size: 1.5rem;
  }
}

