/* 
  Design System - Decor Colors Brasília (Fundo Claro)
  Laranja Decor: #FF6600
  Preto Absoluto: #000000
  Branco Puro: #FFFFFF
  Tipografia: Outfit (Headings) + Roboto (Body)
*/

:root {
  --color-orange: #FF6600;
  --color-orange-light: #FF8533;
  --color-orange-dark: #E55B00;
  --color-black: #000000;
  --color-white: #FFFFFF;
  
  --color-gray-900: #1A1A1A;
  --color-gray-600: #666666;
  --color-gray-100: #F7F8FA;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Constraints Exatos do Usuário */
  --title-size-desktop: 40px;
  --text-size-desktop: 24px;
  --title-size-mobile: 28px;
  --text-size-mobile: 16px;
  
  /* Sombras Apple/Stripe */
  --shadow-premium: 0 40px 80px -20px rgba(0, 0, 0, 0.08);
  --shadow-inner: inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

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

body {
  background-color: var(--color-white);
  color: var(--color-gray-900);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-size: var(--title-size-desktop);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-black);
}

p, li, a {
  font-family: var(--font-body);
  font-size: var(--text-size-desktop);
  line-height: 1.5;
  font-weight: 400;
}

span {
  font-family: inherit;
  font-size: inherit;
}

strong {
  font-weight: 600;
  color: var(--color-black);
}

.text-muted {
  color: var(--color-gray-600);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Background Ultramoderno (Grid + Glow) */
.modern-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: var(--color-gray-100);
}

/* Dot/Line Grid Background */
.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at top, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 40%, transparent 80%);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
}

.glow-orange-primary {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: rgba(255, 102, 0, 0.15);
  animation: pulse-glow 15s infinite alternate ease-in-out;
}

.glow-gray-subtle {
  bottom: -20%;
  left: -10%;
  width: 800px;
  height: 800px;
  background: rgba(0, 0, 0, 0.03);
}

@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 0.8; }
}

/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
}

.hero-wrapper {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo-container {
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.brand-logo-hero {
  height: 78px;
  width: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
}

.hero-main-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  padding: 4rem;
  box-shadow: var(--shadow-premium), var(--shadow-inner);
  position: relative;
  overflow: hidden;
  
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.hero-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-orange), transparent);
  opacity: 0.8;
}

.animate-reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.badge-wrapper {
  margin-bottom: 2rem;
}

.badge {
  display: inline-block;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.pulse-badge {
  position: relative;
}

.pulse-badge::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--color-orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-orange);
}

.badge.pulse-badge {
  padding-left: 2.2rem;
}

.hero-headline {
  margin-bottom: 1.5rem;
}

.hero-subheadline {
  color: var(--color-gray-600);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.units-glass-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.75rem 2rem;
  border-radius: 100px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}


/* Botão Super Premium */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 1.25rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(255, 102, 0, 0.25), inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: var(--color-orange-dark);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 102, 0, 0.35), inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

/* SECTION SITUAÇÕES */
.problem-section {
  padding: 8rem 2rem;
  position: relative;
  z-index: 10;
  background: var(--color-white);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.problem-text-area {
  position: sticky;
  top: 15vh;
}

.divider-line {
  height: 4px;
  width: 60px;
  background: var(--color-orange);
  margin-top: 2rem;
  border-radius: 2px;
}

.glass-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.glass-card-item {
  background: rgba(247, 248, 250, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.03);
  padding: 2rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 4px 15px rgba(0,0,0,0.02);
}

.glass-card-item:hover {
  transform: translateY(-8px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 20px 40px rgba(0,0,0,0.06);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.15), rgba(255, 102, 0, 0.05));
  color: var(--color-orange);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.1);
}

.card-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-gray-900);
  line-height: 1.4;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  h1, h2, h3, h4, h5, h6 {
    font-size: var(--title-size-mobile);
  }
  
  p, li, a {
    font-size: var(--text-size-mobile);
  }
  
  .hero-main-card {
    padding: 3rem 1.5rem;
    border-radius: 24px;
  }
  
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .glass-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION VITRINE */
.vitrine-section {
  background-color: #050505;
  padding: 160px 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.product-card {
  width: calc(33.333% - 1.34rem);
  max-width: 320px;
  min-width: 280px;
  height: auto;
  min-height: 280px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  padding-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.product-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.product-info {
  flex: none;
  padding: 1.5rem;
  z-index: 2;
  text-align: center;
}

.product-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.product-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: #A0A0A0;
  line-height: 1.4;
}

.product-mockup {
  flex: 1;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
}

.product-img {
  position: relative;
  z-index: 2;
  transform: scale(1) translateY(-10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 70%;
  height: auto;
  object-fit: contain;
}

.product-card:hover .product-img {
  transform: rotate(-3deg) scale(1.05) translateY(-20px);
}

@media (max-width: 992px) {
  .product-card {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .product-grid {
    flex-direction: column;
    align-items: center;
  }
  .product-card {
    width: 100%;
    max-width: 350px;
  }
}

/* SECTION ATENDIMENTO */
.atendimento-section {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--color-white) 0%, #F0F2F5 100%);
  position: relative;
  z-index: 10;
}

.atendimento-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(var(--color-gray-600) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.05;
  pointer-events: none;
}

.atendimento-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.atendimento-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 4rem;
}

.lojas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.loja-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-premium), var(--shadow-inner);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.loja-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%; width: 150%; height: 150%;
  background: radial-gradient(circle at center, rgba(255, 102, 0, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.loja-card:hover::before {
  opacity: 1;
}

.loja-card > * {
  z-index: 1;
}

.loja-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.loja-pin {
  color: var(--color-orange);
  margin-bottom: 1rem;
}

.loja-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-gray-900);
}

@media (max-width: 768px) {
  .lojas-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION CTA */
.cta-section {
  background-color: var(--color-gray-900);
  padding: 8rem 2rem;
  position: relative;
  z-index: 10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-title {
  font-size: 32px;
  margin-bottom: 4rem;
  max-width: 1200px;
  
  background: linear-gradient(-45deg, #FF6600, #FFA766, #FF6600);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-button-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-floating {
  position: relative;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.btn-floating:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

/* SECTION FOOTER */
.footer {
  background: #050505;
  color: #666;
  padding: 2rem;
  text-align: center;
  font-size: 12px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: var(--color-orange);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--color-orange-light);
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 24px;
  }
}
