/* =============================================
   FEIJOADA DO ZAZA — DESIGN REFINADO (MOCKUP MATCH)
   ============================================= */

/* ---------- VARIABLES ---------- */
:root {
  --color-whatsapp: #25D366;
  --color-orange: #FF7A00;
  --color-dark: #222222;
  --color-gray: #666666;
  --color-white: #FFFFFF;
  --color-offwhite: #FAFAFA;
  
  --color-maps: #4285F4;
  --color-waze: #33CCFF;
  
  --font-main: 'Poppins', sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--color-dark); /* Default text is dark now */
  line-height: 1.4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-offwhite);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

/* ---------- BACKGROUND & OVERLAY ---------- */
.page-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('bg-clara.png') center/cover no-repeat;
  z-index: -2;
  /* Add subtle blur as requested */
  filter: blur(2px);
  transform: scale(1.05); /* Prevent blur edge artifacts */
}

/* Very subtle white gradient overlay to ensure perfect contrast for dark text */
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to bottom, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.7) 100%);
  z-index: -1;
}

/* ---------- MAIN LAYOUT ---------- */
.content-container {
  width: 100%;
  max-width: 480px; 
  padding: 3rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem; /* Adjusted gap to match mockup */
}

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

/* ---------- HERO SECTION ---------- */
.main-title {
  font-family: var(--font-main);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.title-orange {
  font-size: 3.2rem;
  font-weight: 800; /* ExtraBold */
  color: var(--color-orange);
  text-transform: uppercase;
}

.title-dark {
  font-size: 2.8rem;
  font-weight: 800; /* ExtraBold */
  color: var(--color-dark);
  text-transform: uppercase;
  display: block;
  margin-top: -5px;
}

.emoji-container {
  margin-bottom: 2.5rem;
}

.emoji {
  font-size: 2.5rem;
}

/* Info Blocks (Date and Time) */
.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 0 1rem; /* Indent slightly like mockup */
}

.info-pill {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  background: var(--color-white);
  padding: 1rem 2rem;
  border-radius: 100px; /* Pill shape */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* Soft shadow */
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-pill:active {
  transform: scale(0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-icon {
  width: 28px;
  height: 28px;
  color: var(--color-orange);
}

.info-text {
  font-size: 1.4rem;
  font-weight: 700; /* Bold */
  color: var(--color-dark);
}

/* Quote */
.subtitle {
  font-size: 1.15rem;
  font-weight: 600; /* SemiBold */
  color: var(--color-dark);
  font-style: italic;
  margin-top: 2rem;
}

.highlight {
  color: var(--color-orange);
}

/* ---------- CTA / WHATSAPP BUTTON ---------- */
.cta-section {
  padding: 0 0.5rem;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 1.2rem 1rem;
  width: 100%;
  border-radius: 100px; /* Pill shape */
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35); /* Soft Whatsapp shadow */
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-whatsapp:active {
  transform: scale(0.96);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-icon {
  width: 26px;
  height: 26px;
}

/* ---------- LOCATION BLOCK ---------- */
.location-block {
  background: var(--color-dark);
  padding: 1.8rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.location-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.location-icon {
  width: 18px;
  height: 18px;
  color: var(--color-orange); /* Or Pink depending on interpretation, prompt says orange or pink, mockup is gradient pink/orange, sticking to orange for consistency */
  color: #FF5A5F; /* Pinkish-red from mockup */
}

.block-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-orange);
}

.location-address {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.location-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.btn-location {
  display: block;
  width: 100%;
  padding: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  color: var(--color-white);
  transition: opacity 0.2s;
  background-color: rgba(255,255,255,0.1);
}

.btn-location:active {
  opacity: 0.8;
}

/* ---------- COUNTDOWN BLOCK ---------- */
/* Adapted for light theme */
.countdown-block {
  text-align: center;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.cd-box {
  background: var(--color-white);
  border-radius: 12px;
  padding: 0.8rem 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.cd-number {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-dark);
}

.cd-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-top: 0.3rem;
}
