/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: hsl(35, 20%, 97%);
  --foreground: hsl(0, 0%, 10%);
  --accent: hsl(40, 65%, 55%);
  --muted-foreground: hsl(0, 0%, 40%);
  --border: hsl(35, 20%, 85%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

/* Background Gradient */
.bg-gradient {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--background) 0%, var(--background) 50%, hsl(40, 65%, 55%, 0.05) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative Elements */
.decorative-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.decorative-blur-1 {
  top: 5rem;
  right: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: hsl(40, 65%, 55%, 0.1);
  animation: pulse 3s ease-in-out infinite;
}

.decorative-blur-2 {
  bottom: 5rem;
  left: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: hsl(40, 65%, 55%, 0.05);
  animation: pulse 3s ease-in-out infinite 1s;
}

/* Timer Header */
.timer-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--timer-bg);
  color: hsl(0, 0%, 95%);
  padding: 1rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.timer-content {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.timer-icon {
  width: 1.5rem;
  height: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.timer-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(8px);
}

.timer-number {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  min-width: 2.5rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.timer-separator {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  margin-top: 6rem;
}

.logo {
  height: 6rem;
  margin: 0 auto 3rem;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
  animation: fadeIn 0.8s ease-out;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(to right, hsl(40, 65%, 55%, 0.2), hsl(40, 65%, 55%, 0.1));
  border: 1px solid hsl(40, 65%, 55%, 0.3);
  backdrop-filter: blur(8px);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.heading {
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.heading-main {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.heading-accent {
  display: block;
  background: linear-gradient(to right, var(--accent), var(--accent), hsl(40, 65%, 55%, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 4rem;
}

.description {
  font-size: 1.5rem;
  color: var(--muted-foreground);
  font-weight: 300;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.price-text {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.35s backwards;
}

.price-highlight {
  color: var(--accent);
  font-size: 2rem;
}

.perfume-image {
  max-width: 20rem;
  margin: 2rem auto;
  border-radius: 0.5rem;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.25s backwards;
}

.arrow-section {
  padding-top: 1.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.arrow-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.arrow-icon {
  width: 2rem;
  height: 2rem;
  color: black;
  animation: bounce 2s infinite;
}

.arrow-text {
  color: black;
  font-weight: 600;
  font-size: 1.125rem;
}

.cta-button {
  display: inline-block;
  padding: 2.5rem 6rem;
  font-size: 1.875rem;
  font-weight: 700;
  background-color: black;
  color: white;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 70px -15px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: hsl(0, 0%, 25%);
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.7);
}

.promo-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 2rem;
  opacity: 0.3;
  margin: 2rem 0;
}

.divider-line {
  height: 1px;
  width: 5rem;
  background: linear-gradient(to right, transparent, var(--accent));
}

.divider-line-reverse {
  background: linear-gradient(to left, transparent, var(--accent));
}

.divider-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}

/* Footer */
.footer {
  position: relative;
  z-index: 10;
  padding-bottom: 2rem;
  margin-top: 2rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--foreground);
}

.footer-separator {
  color: var(--muted-foreground);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive - Totalmente adaptável */

/* Tablets em paisagem e desktops pequenos */
@media (max-width: 1024px) {
  .main-content {
    max-width: 90%;
  }
  
  .perfume-image {
    max-width: 18rem;
  }
}

/* Tablets em retrato */
@media (max-width: 768px) {
  .bg-gradient {
    padding: 1rem;
  }
  
  .main-content {
    margin-top: 5rem;
  }
  
  .perfume-image {
    max-width: 17rem;
  }
  
  .decorative-blur-1,
  .decorative-blur-2 {
    width: 15rem;
    height: 15rem;
  }
  
  .arrow-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}

/* Smartphones grandes */
@media (max-width: 480px) {
  .bg-gradient {
    padding: 0.75rem;
  }
  
  .perfume-image {
    max-width: 16rem;
  }
  
  .timer-content {
    gap: 0.5rem;
    padding: 0 1rem;
  }
  
  .timer-display {
    padding: 0.4rem 0.8rem;
  }
  
  .arrow-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .arrow-content {
    gap: 0.5rem;
  }
  
  .decorative-blur-1,
  .decorative-blur-2 {
    display: none;
  }
}

/* Smartphones pequenos */
@media (max-width: 375px) {
  .perfume-image {
    max-width: 14rem;
  }
  
  .heading {
    margin-bottom: 1.5rem;
  }
  
  .timer-header {
    padding: 0.75rem 0;
  }
}

/* Dispositivos muito pequenos */
@media (max-width: 320px) {
  .perfume-image {
    max-width: 12rem;
  }
  
  .timer-content {
    font-size: 0.75rem;
  }
}

/* Page Styles */
.page-container {
  min-height: 100vh;
  background-color: var(--background);
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 244, 236, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.page-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-logo {
  height: 3rem;
  object-fit: contain;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  text-decoration: none;
  font-size: 0.875rem;
  transition: opacity 0.3s ease;
}

.back-button:hover {
  opacity: 0.7;
}

.page-main {
  max-width: 64rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.page-content {
  line-height: 1.8;
}

.page-content p {
  margin-bottom: 1rem;
}

.page-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

.page-content a {
  color: var(--accent);
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

.info-box {
  background: hsl(35, 15%, 90%, 0.3);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.info-box p {
  margin-bottom: 0.5rem;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.section {
  margin-bottom: 2rem;
}

.text-muted {
  color: var(--muted-foreground);
  font-style: italic;
}

.shop-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: black;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: 2rem;
}

.shop-button:hover {
  background-color: hsl(0, 0%, 25%);
}

.text-center {
  text-align: center;
}

