@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  color: #1e293b;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

html {
  scroll-behavior: smooth;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 119, 6, 0.2);
  padding: 1rem 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s;
}

.nav a:hover {
  color: #f59e0b;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #d97706;
  color: white;
}

.btn-primary:hover {
  background: #f59e0b;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: white;
  color: #1e293b;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  position: relative;
  height: 100vh;
  margin-top: 70px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #020617;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-logo {
  background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #020617 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-composition {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
  width: 100%;
  height: 100%;
}

.arabesco-left, .arabesco-right {
  width: 150px;
  height: 150px;
  opacity: 0.9;
  flex-shrink: 0;
}

.logo-center {
  text-align: center;
  z-index: 5;
}

.tag-dourada {
  background: linear-gradient(135deg, #d4af37, #f4e5a1, #d4af37);
  color: #1e293b;
  padding: 0.75rem 2.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  border-radius: 50px;
  margin-bottom: 2rem;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.logo-principal {
  max-width: 400px;
  width: 100%;
  margin-bottom: 2rem;
  filter: brightness(1.3);
}

.features-list p {
  color: #d4af37;
  font-size: 1.25rem;
  margin: 0.75rem 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.8));
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  color: white;
  width: 90%;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #f4e5a1, #d4af37);
  color: #1e293b;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-feature {
  background: rgba(255,255,255,0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  font-size: 0.9rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.slider-controls button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(217, 119, 6, 0.6);
  color: white;
  width: 55px;
  height: 55px;
  font-size: 2.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.slider-controls button:hover {
  background: rgba(217, 119, 6, 0.9);
  border-color: #d97706;
  transform: translateY(-50%) scale(1.15);
}

.slider-prev {
  left: 2rem;
}

.slider-next {
  right: 2rem;
}

.slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 100;
  align-items: center;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.slider-dot.active {
  background: #d97706;
  width: 45px;
  border-radius: 12px;
  border-color: #d97706;
}

.slider-dot:hover {
  background: rgba(217, 119, 6, 0.7);
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: #d97706;
  margin: 0 auto 1.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #d97706;
  font-weight: 600;
}

.bg-gray {
  background: #f8fafc;
}

.bg-dark {
  background: #0f172a;
  color: white;
}

.about-description {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: center;
  color: #475569;
}

.plantas-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 1rem 1.5rem;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.tab-btn.active {
  background: #d97706;
  color: white;
  border-color: #d97706;
}

.tab-btn:hover {
  border-color: #d97706;
}

.tab-content {
  display: none;
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
  display: block;
}

.plantas-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.planta-image {
  overflow: hidden;
  border-radius: 0.5rem;
}

.planta-image img {
  width: 100%;
  border-radius: 0.5rem;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.planta-image img.zoom-hover:hover {
  transform: scale(1.15);
}

.planta-image p {
  text-align: center;
  margin-top: 0.5rem;
  color: #64748b;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  color: #d97706;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.frente-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  padding: 5rem 0;
}

.frente-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.frente-image {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.frente-description {
  color: white;
}

.frente-description p {
  font-size: 1.125rem;
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.diferencial-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 0.5rem;
  border: 1px solid rgba(217, 119, 6, 0.2);
  transition: border-color 0.3s;
}

.diferencial-item:hover {
  border-color: rgba(217, 119, 6, 0.5);
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
  width: 100%;
  height: 100%;
}

.atendimento-premium-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.premium-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.5);
}

.premium-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.premium-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.premium-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 0.95rem;
}

.premium-cta {
  text-align: center;
}

.premium-cta .btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.premium-cta .btn-lg:hover {
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
}

.faq-section {
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.faq-item.active {
  border-color: #d4af37;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #d4af37;
}

.faq-item.active .faq-question {
  color: #d4af37;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), transparent);
}

.faq-icon {
  flex-shrink: 0;
  color: #d4af37;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  color: #64748b;
  line-height: 1.8;
  font-size: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.location-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.location-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.location-icon {
  width: 48px;
  height: 48px;
  background: #fef3c7;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.map-container {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s;
  font-family: 'Inter', sans-serif;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #d97706;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.radio-item input[type="radio"],
.radio-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.footer {
  background: #020617;
  color: white;
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(217, 119, 6, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  color: #f59e0b;
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
  color: #94a3b8;
  text-decoration: none;
  line-height: 1.8;
}

.footer-col a:hover {
  color: #f59e0b;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  color: #64748b;
}

.footer-bottom .notas-legais-footer {
  margin-top: 1rem;
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.whatsapp-bubble {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.whatsapp-bubble-text {
  background: white;
  color: #0e8b25;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: slideIn 0.5s forwards 1s;
}

@keyframes slideIn {
  to {
    opacity: 1;
  }
}

.whatsapp-bubble-icon {
  width: 60px;
  height: 60px;
  background: #0e8b25;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(14, 139, 37, 0.4);
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-bubble-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(14, 139, 37, 0.6);
}

.whatsapp-bubble-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #0e8b25;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(14, 139, 37, 0.4);
  transition: all 0.3s;
  text-decoration: none;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(14, 139, 37, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 1.25rem 2rem;
  z-index: 999999;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  border-top: 2px solid #d4af37;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  color: #e2e8f0;
  font-size: 0.9rem;
  margin: 0;
  flex: 1;
  min-width: 280px;
  line-height: 1.5;
}

.cookie-content a {
  color: #d4af37;
  text-decoration: underline;
}

.cookie-content a:hover {
  color: #f4e5a1;
}

.cookie-btn {
  background: linear-gradient(135deg, #d4af37, #f4e5a1, #d4af37);
  color: #0f172a;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
  white-space: nowrap;
}

.cookie-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  max-width: 550px;
  width: 90%;
  position: relative;
  color: #1e293b;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.curious-style {
  border: 4px solid #d4af37;
  background: #f8fafc;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #64748b;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #d97706;
}

.hb-cta-btn {
  display: block;
  background: #E9582B;
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s;
}

.hb-cta-btn:hover {
  background: #cf4a22;
  transform: scale(1.05);
}

.alert {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.outros-lancamentos-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.outros-lancamentos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f4e5a1, #d4af37);
}

.lancamentos-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.lancamento-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
}

.lancamento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
}

.lancamento-img {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.lancamento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lancamento-card:hover .lancamento-img img {
  transform: scale(1.1);
}

.lancamento-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, #d4af37, #f4e5a1);
  color: #1e293b;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lancamento-info {
  padding: 1.25rem;
}

.lancamento-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.lancamento-info p {
  color: #64748b;
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .frente-content {
    grid-template-columns: 1fr;
  }
  
  .whatsapp-bubble-text {
    display: none;
  }
  
  .hero-logo-composition {
    gap: 2rem;
  }
  
  .arabesco-left, .arabesco-right {
    width: 100px;
    height: 100px;
  }
  
  .logo-principal {
    max-width: 300px;
  }
  
  .tag-dourada {
    font-size: 1.25rem;
    padding: 0.5rem 1.5rem;
  }
  
  .features-list p {
    font-size: 1rem;
  }
  
  .premium-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .lancamentos-preview {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #0f172a;
    flex-direction: column;
    padding: 2rem;
    transition: left 0.3s;
  }
  
  .nav.active {
    left: 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-features {
    gap: 0.75rem;
  }
  
  .hero-feature {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  .slider-controls button {
    width: 45px;
    height: 45px;
    font-size: 2rem;
  }
  
  .slider-prev {
    left: 1rem;
  }
  
  .slider-next {
    right: 1rem;
  }
  
  .hero-logo-composition {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .arabesco-left, .arabesco-right {
    width: 80px;
    height: 80px;
  }
  
  .logo-principal {
    max-width: 250px;
  }
  
  .tag-dourada {
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
    letter-spacing: 2px;
  }
  
  .features-list p {
    font-size: 0.875rem;
    margin: 0.5rem 0;
  }
  
  .modal-content {
    padding: 25px;
    max-width: 95%;
  }
  
  .hb-cta-btn {
    font-size: 16px;
    padding: 12px;
  }
  
  .cookie-popup {
    padding: 1rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    font-size: 0.85rem;
  }
  
  .premium-grid {
    grid-template-columns: 1fr;
  }
  
  .premium-card {
    padding: 2rem 1.5rem;
  }

  @media (min-width: 600px) and (max-width: 768px) {
    .premium-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
  }
  
  .lancamentos-preview {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .lancamento-img {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
}
/* ========================================
   POPUP DE COOKIES
   ======================================== */
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 1.25rem 2rem;
    z-index: 999999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    border-top: 2px solid #d4af37;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    color: #e2e8f0;
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
    min-width: 280px;
    line-height: 1.5;
}

.cookie-content a {
    color: #d4af37;
    text-decoration: underline;
}

.cookie-content a:hover {
    color: #f4e5a1;
}

.cookie-btn {
    background: linear-gradient(135deg, #d4af37, #f4e5a1, #d4af37);
    color: #0f172a;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cookie-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ========================================
   MODAIS (POPUPS)
   ======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    max-width: 550px;
    width: 90%;
    position: relative;
    color: #1e293b;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.curious-style {
    border: 4px solid #d4af37;
    background: #f8fafc;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #64748b;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #d97706;
}

.hb-cta-btn {
    display: block;
    background: #E9582B;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s;
}

.hb-cta-btn:hover {
    background: #cf4a22;
    transform: scale(1.05);
}