/* ==========================================================================
   Made In Roça - Premium Styles v2.0
   Estilos adicionais para revitalização completa
   ========================================================================== */

/* ==========================================================================
   Header Premium
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 24, 16, 0.08);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(45, 24, 16, 0.1);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary, #2d1810);
  flex-shrink: 0;
  max-width: 220px;
  overflow: hidden;
}

.logo-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  color: var(--primary, #2d1810);
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary, #2d1810);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--secondary, #d4a574);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Logo com imagem do WordPress */
.logo img,
.logo .custom-logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text, #2d1810);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  background: rgba(212, 165, 116, 0.15);
  color: var(--secondary, #d4a574);
}

/* Header CTA */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Header Login/Account Button */
.btn-header-login,
.btn-header-account {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-header-login {
  background: transparent;
  color: var(--primary, #2d1810);
  border: 1px solid rgba(45, 24, 16, 0.2);
}

.btn-header-login:hover {
  background: var(--primary, #2d1810);
  color: #fff;
  border-color: var(--primary, #2d1810);
}

.btn-header-account {
  background: rgba(212, 165, 116, 0.15);
  color: var(--primary, #2d1810);
  border: 1px solid transparent;
}

.btn-header-account:hover {
  background: rgba(212, 165, 116, 0.3);
}

.btn-header-login i,
.btn-header-account i {
  font-size: 1.1rem;
}

.btn-header-account span {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .btn-header-login,
  .btn-header-account {
    display: flex;
  }
}

.btn-header-cta {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary, #2d1810);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-header-cta:hover {
  background: var(--secondary, #d4a574);
  color: var(--primary, #2d1810);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 24, 16, 0.2);
}

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

@media (min-width: 768px) {
  .btn-header-cta {
    display: flex;
  }
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary, #2d1810);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 998;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(45, 24, 16, 0.1);
}

.mobile-menu-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary, #2d1810);
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(45, 24, 16, 0.05);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: rgba(45, 24, 16, 0.1);
}

.mobile-menu-close i {
  font-size: 1.25rem;
  color: var(--primary, #2d1810);
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 16px;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text, #2d1810);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  background: rgba(212, 165, 116, 0.15);
  color: var(--secondary, #d4a574);
}

.mobile-nav-link i {
  font-size: 1.25rem;
  color: var(--secondary, #d4a574);
}

.mobile-menu-cta {
  padding: 16px 24px;
  border-top: 1px solid rgba(45, 24, 16, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(45, 24, 16, 0.1);
}

.mobile-social {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(45, 24, 16, 0.05);
  border-radius: 50%;
  color: var(--primary, #2d1810);
  font-size: 1.25rem;
  transition: all 0.2s ease;
}

.mobile-social a:hover {
  background: var(--secondary, #d4a574);
  color: #fff;
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 997;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-100%) translateX(-16px);
}

.whatsapp-tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  background: #2d1810;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid #2d1810;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

/* ==========================================================================
   Hero Section Premium
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a0f08 0%, #2d1810 50%, #3d2415 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(26, 15, 8, 0.4) 100%);
  z-index: 2;
}

/* Hero Image Background */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Hero Video Background */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-video-fallback {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Mobile: use poster instead of video */
@media (max-width: 768px) {
  .hero-video {
    display: none;
  }
  .hero-video-fallback {
    display: block;
  }
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 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='%23d4a574' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px 24px;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 165, 116, 0.2);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary, #d4a574);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

.hero-badge i {
  font-size: 1rem;
}

.hero-title {
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title-small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.hero-title-big {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 32px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-subtitle strong {
  color: var(--secondary, #d4a574);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-feature i {
  font-size: 1rem;
  color: var(--secondary, #d4a574);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-scroll {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.scroll-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 12px 24px;
}

.scroll-btn:hover {
  color: var(--secondary, #d4a574);
}

.scroll-btn span {
  font-weight: 500;
}

.scroll-btn i {
  font-size: 1.25rem;
  animation: bounce 2s infinite;
}

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

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ==========================================================================
   About Section Highlights
   ========================================================================== */
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--text, #2d1810);
}

.highlight-item i {
  font-size: 1.25rem;
  color: #22c55e;
}

/* ==========================================================================
   Materials Section
   ========================================================================== */
.section-materials {
  background: linear-gradient(180deg, #fafaf8 0%, #fff 100%);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.material-card {
  position: relative;
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid rgba(45, 24, 16, 0.08);
  transition: all 0.3s ease;
}

.material-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 24, 16, 0.1);
  border-color: var(--secondary, #d4a574);
}

.material-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0.05) 100%);
  border-radius: 12px;
  margin-bottom: 20px;
}

.material-icon i {
  font-size: 1.75rem;
  color: var(--secondary, #d4a574);
}

.material-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary, #2d1810);
}

.material-card p {
  font-size: 0.9rem;
  color: var(--text-muted, #8b7355);
  margin-bottom: 16px;
  line-height: 1.6;
}

.material-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(212, 165, 116, 0.15);
  color: var(--secondary-dark, #b88a55);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
}

.materials-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, var(--primary, #2d1810) 0%, var(--primary-dark, #1a0f08) 100%);
  border-radius: 20px;
  color: #fff;
}

.materials-cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.materials-cta-content > i {
  font-size: 2.5rem;
  color: var(--secondary, #d4a574);
}

.materials-cta-content h4 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: #fff;
}

.materials-cta-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ==========================================================================
   Model Cards Premium
   ========================================================================== */
.model-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(45, 24, 16, 0.08);
  transition: all 0.4s ease;
}

.model-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(45, 24, 16, 0.15);
}

.model-card.model-featured {
  border-color: var(--secondary, #d4a574);
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.2);
}

.model-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, var(--secondary, #d4a574) 0%, var(--secondary-dark, #b88a55) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
}

.model-badge i {
  font-size: 0.875rem;
}

.model-image {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, #e8d5c4 0%, #f5ebe2 100%);
  overflow: hidden;
}

.model-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.model-image-placeholder i {
  font-size: 4rem;
  color: var(--secondary, #d4a574);
  opacity: 0.5;
}

.model-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 24, 16, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.model-card:hover .model-image-overlay {
  opacity: 1;
}

.model-content {
  padding: 24px;
}

.model-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--primary, #2d1810);
}

.model-desc {
  font-size: 0.875rem;
  color: var(--text-muted, #8b7355);
  margin-bottom: 16px;
}

.model-specs {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(45, 24, 16, 0.08);
  border-bottom: 1px solid rgba(45, 24, 16, 0.08);
  margin-bottom: 16px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text, #2d1810);
}

.spec-item i {
  font-size: 1rem;
  color: var(--secondary, #d4a574);
}

.model-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.model-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-muted, #8b7355);
}

.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary, #2d1810);
}

/* ==========================================================================
   Work Section Cards
   ========================================================================== */
.work-showcase {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.work-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .work-card {
    grid-template-columns: 1fr 1fr;
  }
  
  .work-card-reverse {
    direction: rtl;
  }
  
  .work-card-reverse > * {
    direction: ltr;
  }
}

.work-card-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.work-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8d5c4 0%, #f5ebe2 100%);
}

.work-placeholder i {
  font-size: 4rem;
  color: var(--secondary, #d4a574);
  opacity: 0.5;
}

.work-card-header {
  margin-bottom: 16px;
}

.work-card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--primary, #2d1810);
}

.work-tags {
  display: flex;
  gap: 8px;
}

.work-tag {
  padding: 6px 12px;
  background: rgba(212, 165, 116, 0.15);
  color: var(--secondary-dark, #b88a55);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
}

.work-card-content p {
  color: var(--text-muted, #8b7355);
  line-height: 1.7;
  margin-bottom: 24px;
}

.work-testimonial {
  padding: 20px;
  background: rgba(45, 24, 16, 0.03);
  border-radius: 16px;
  border-left: 4px solid var(--secondary, #d4a574);
}

.work-testimonial blockquote {
  font-style: italic;
  color: var(--text, #2d1810);
  margin-bottom: 16px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--secondary, #d4a574);
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 0.9rem;
  color: var(--primary, #2d1810);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted, #8b7355);
}

/* ==========================================================================
   Why Cards
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.why-card {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(45, 24, 16, 0.08);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(45, 24, 16, 0.1);
  border-color: var(--secondary, #d4a574);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary, #2d1810) 0%, var(--primary-dark, #1a0f08) 100%);
  border-radius: 16px;
  margin-bottom: 20px;
}

.why-icon i {
  font-size: 1.75rem;
  color: var(--secondary, #d4a574);
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--primary, #2d1810);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-muted, #8b7355);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Testimonials Slider
   ========================================================================== */
.testimonials-slider {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 auto;
  width: 350px;
  max-width: 85vw;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  scroll-snap-align: start;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-style: italic;
}

.section-testimonials .testimonial-author {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.section-testimonials .author-avatar {
  background: var(--secondary, #d4a574);
}

.section-testimonials .author-info strong {
  color: #fff;
}

.section-testimonials .author-info span {
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   FAQs Accordion
   ========================================================================== */
.faqs-container {
  max-width: 800px;
  margin: 0 auto 40px;
}

.faq-item {
  border-bottom: 1px solid rgba(45, 24, 16, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary, #2d1810);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--secondary, #d4a574);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--secondary, #d4a574);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-muted, #8b7355);
  line-height: 1.7;
}

.faqs-cta {
  text-align: center;
}

.faqs-cta p {
  margin-bottom: 16px;
  color: var(--text-muted, #8b7355);
}

/* ==========================================================================
   Gallery Grid
   ========================================================================== */
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item-lg {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

@media (max-width: 768px) {
  .gallery-item-lg {
    grid-column: span 2;
  }
}

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8d5c4 0%, #f5ebe2 100%);
}

.gallery-placeholder i {
  font-size: 3rem;
  color: var(--secondary, #d4a574);
  opacity: 0.4;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(45, 24, 16, 0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
}

.gallery-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   CTA Final Section
   ========================================================================== */
.section-cta-final {
  position: relative;
  padding: 80px 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
  color: #fff;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.cta-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.cta-info-item i {
  font-size: 1.1rem;
  color: var(--secondary, #d4a574);
}

/* ==========================================================================
   Catalog Section
   ========================================================================== */
.section-catalog {
  background: var(--accent-light, #f5ebe2);
  padding: 32px 0;
}

.catalog-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(45, 24, 16, 0.08);
}

.catalog-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.catalog-content > i {
  font-size: 2rem;
  color: var(--secondary, #d4a574);
}

.catalog-label {
  font-size: 0.875rem;
  color: var(--secondary, #d4a574);
  font-weight: 600;
}

.catalog-title {
  font-size: 1.1rem;
  color: var(--primary, #2d1810);
  margin: 4px 0 0;
}

.catalog-buttons {
  display: flex;
  gap: 12px;
}

/* ==========================================================================
   Footer Premium
   ========================================================================== */
.footer {
  background: var(--primary, #2d1810);
  color: #fff;
  padding-top: 64px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  color: #fff;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.footer-brand-tagline {
  font-size: 0.7rem;
  color: var(--secondary, #d4a574);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--secondary, #d4a574);
  transform: translateY(-3px);
  color: #fff;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--secondary, #d4a574);
  transform: translateX(4px);
}

.footer-links i {
  font-size: 0.75rem;
  color: var(--secondary, #d4a574);
}

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

.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-list i {
  font-size: 1.25rem;
  color: var(--secondary, #d4a574);
  margin-top: 2px;
}

.footer-contact-list strong {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  margin-bottom: 2px;
}

.footer-contact-list a,
.footer-contact-list span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.footer-contact-list a:hover {
  color: var(--secondary, #d4a574);
}

.footer-cta {
  margin-top: 20px;
  width: 100%;
}

/* Footer Features */
.footer-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-feature i {
  font-size: 1.25rem;
  color: var(--secondary, #d4a574);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
}

.footer-copyright p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-cnpj {
  font-size: 0.75rem !important;
  margin-top: 4px !important;
}

.footer-credits {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-credits a {
  color: var(--secondary, #d4a574);
  transition: color 0.2s ease;
}

.footer-credits a:hover {
  color: #fff;
}

/* ==========================================================================
   CTA Box (Section CTA)
   ========================================================================== */
.section-cta {
  margin-top: 48px;
}

.cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0.05) 100%);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 20px;
  text-align: center;
}

.cta-box > i {
  font-size: 2.5rem;
  color: var(--secondary, #d4a574);
}

.cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary, #2d1810);
  margin: 0;
}

.cta-subtext {
  font-size: 0.9rem;
  color: var(--text-muted, #8b7355);
  margin: 4px 0 0;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

/* Mobile small */
@media (max-width: 480px) {
  .header-container {
    padding: 10px 12px;
    gap: 12px;
  }
  
  .logo {
    max-width: 160px;
    gap: 8px;
  }
  
  .logo-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  
  .logo-name {
    font-size: 0.875rem;
  }
  
  .logo-tagline {
    display: none;
  }
  
  .hero-content {
    padding: 24px 16px;
  }
  
  .hero-title-big {
    font-size: 2rem;
  }
  
  .hero-scroll {
    margin-top: 16px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 12px 16px;
  }
  
  .logo {
    max-width: 180px;
  }
  
  .logo-tagline {
    display: none;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-feature {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .materials-cta {
    flex-direction: column;
    text-align: center;
  }
  
  .materials-cta-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-box {
    flex-direction: column;
    text-align: center;
  }
  
  .catalog-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .catalog-content {
    flex-direction: column;
  }
  
  .footer-top {
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .logo {
    max-width: 260px;
  }
  
  .logo-name {
    font-size: 1.15rem;
  }
  
  .logo-tagline {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }
}

/* Body padding for fixed header */
body {
  padding-top: 0;
}

body.has-fixed-header {
  padding-top: 70px;
}

/* Smooth scroll offset for anchors */
:target {
  scroll-margin-top: 80px;
}
