/* ==========================================================================
   1. RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Cores extraídas do layout */
  --color-orange: #f24405; /* Laranja da marca e destaques */
  --color-white: #ffffff;
  --color-text-muted: #e1e1e1;
  --color-bg-dark: #0a0a0b;

  /* Fontes */
  --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
/* Dispositivos Móveis e Tablets Pequenos (< 768px) */
@media (max-width: 768px) {
  .hero-container {
    align-items: flex-start; /* Mantém o conteúdo na parte superior */
    padding-top: 12vh; /* Define um espaço razoável do topo (aprox. 12% da altura da tela) */
  }

  .social-section {
    flex-direction: column;
    gap: 12px;
  }

  .social-prefix, 
  .social-suffix {
    letter-spacing: 0.25em;
  }

  .instagram-btn {
    padding: 10px 20px;
  }
}

html, body {
  width: 100%;
  height: 100%;
  font-family: var(--font-family);
  background-color: var(--color-bg-dark);
  color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   2. HERO CONTAINER & BACKGROUND
   ========================================================================== */
.hero-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: max(40px, 5vh);
  
  /* Imagem de Fundo */
  background-image: url('assets/fundo.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Vignette/Gradients sutis para focar o conteúdo central exatamente como na referência */
.hero-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 30%, 
    rgba(0, 0, 0, 0.25) 0%, 
    rgba(0, 0, 0, 0.75) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   3. CONTENT LAYOUT & TYPOGRAPHY
   ========================================================================== */
.content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Logo */
.logo-container {
  margin-bottom: clamp(25px, 4vh, 45px);
}

.logo-img {
  height: clamp(50px, 7vw, 85px);
  width: auto;
  object-fit: contain;
  display: block;
}

/* Headline Principal */
.main-text-section {
  margin-bottom: clamp(30px, 5vh, 50px);
}

.headline {
  font-size: clamp(1.15rem, 2.2vw, 2.1rem);
  font-weight: 300; /* Leve */
  line-height: 1.45;
  color: var(--color-text-muted);
  letter-spacing: -0.01em;
}

.headline .highlight {
  color: var(--color-orange);
  font-weight: 700;
}

.headline .bold {
  font-weight: 700;
  color: var(--color-white);
}

/* ==========================================================================
   4. SOCIAL CALL-TO-ACTION (INSTAGRAM)
   ========================================================================== */
.social-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: clamp(0.75rem, 1.1vw, 1.05rem);
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--color-white);
}

.social-prefix,
.social-suffix {
  text-transform: uppercase;
  opacity: 0.95;
  white-space: nowrap;
}

/* Pílula / Botão Instagram */
.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border: 1.5px solid var(--color-orange);
  border-radius: 50px;
  color: var(--color-orange);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.12em;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.instagram-btn:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 0 20px rgba(242, 68, 5, 0.4);
  transform: translateY(-1px);
}

.instagram-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* ==========================================================================
   5. MEDIA QUERIES & RESPONSIVIDADE
   ========================================================================== */

