:root {
    --color-primary: #2B2B2B;
    --color-secondary: #41cef5;
    --color-light: #ECECEC;
    --color-dark: hsl(0, 0%, 12%);
    --color-accent: #777777;
  
    --font-heading: 'Heading Now 11-e', sans-serif;
    --font-body: 'Open Sans', sans-serif;
  }
  
  /* Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font-body);
    color: var(--color-primary);
    background-color: var(--color-light);
    line-height: 1.6;
  }
  
  /* ====== NAVBAR ====== */
  .navbar {
    position:fixed;
    top:0;
    width:100%;
    background:#1E1E1E;
    color:#fff;
    z-index:50;
    padding:1rem 0;
    box-shadow:0 2px 6px rgba(0,0,0,0.2);
  }
  .navbar .nav-content {
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 1rem
  }
  
  /* Logo */
  .logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    margin-right: 2rem;
    margin-left: 0.5rem; /* aproxima um pouco da esquerda */
  }
  
  .logo {
    font-family: var(--font-heading);
    display: flex;
    gap: 0.1rem;
    margin: 0;
  }
  
  .logo-d, .logo-a {
    color: #FFFFFF; /* D e A em branco */
  }
  
  .logo-w {
    color: #FF7A00; /* laranja mais forte para o W */
  }
  
  .logo-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem; /* ligeiramente maior */
    color: #FFFFFF; /* muda para branco */
    margin-top: 4px;
  }
  
  /* Links do menu */
  .nav-links a {
    margin-right: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .nav-links a:hover {
    color: var(--color-secondary);
  }
  
  /* Botões */
  .btn-primary {
    background-color: var(--color-secondary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 800px; /* mantém seu estilo original */
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  .btn-primary:hover {
    background-color: #357ABD;
    transform: translateY(-2px);
  }
  
  .btn-dark {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  .btn-dark:hover {
    background-color: #333333;
    transform: translateY(-2px);
  }
  
  /* Hero */
  .hero {
    height: 100vh;
    background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQhMGmQqp4pVl8R1WXY2iUbPryNZ2erM0g4Hg&s') center/cover no-repeat;
    position: relative;
  }
  
  .hero-overlay {
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 1rem;
  }
  
  .hero-overlay h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
  }
  
  .hero-overlay p {
    max-width: 600px;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #f0f0f0;
  }
  
  /* Seções */
  .section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: auto;
  }
  .bg-light {
    background-color: var(--color-light);
  }
  .section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
  }
  .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-secondary);
    margin: 0.75rem auto 0;
    border-radius: 2px;
  }
  
  /* O que você recebe */
  .recebe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: auto;
    padding: 2rem 0;
  }
  .recebe-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease;
  }
  .recebe-item:hover {
    transform: translateY(-5px);
  }
  .recebe-item span {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
  }
  .recebe-item p {
    font-size: 1rem;
    color: var(--color-primary);
    line-height: 1.5;
  }
  
  /* Landing */
  .landing {
    background-color: var(--color-secondary);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
  }
  .landing p {
    max-width: 500px;
    margin: auto;
    margin-bottom: 2rem;
    line-height: 1.4;
  }
  .landing-btn {
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
    background-color: var(--color-secondary);
  }
  .btn-full {
    max-width: 700px;
    text-align: center;
    line-height: 1.4;
    font-size: 1rem;
    padding: 1.2rem 2rem;
  }
  
  /* Social Fixed */
  .social-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
  }
  .social-fixed a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #4CAF50;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, background 0.3s ease;
  }
  .social-fixed a img {
    width: 24px;
    height: 24px;
  }
  .social-fixed a:hover {
    transform: scale(1.1);
  }
  .social-fixed a.whatsapp {
    background: #25D366;
  }
  .social-fixed a.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .recebe-grid {
      grid-template-columns: 1fr;
    }
    .logo {
      font-size: 2.6rem; /* reduz no mobile para não estourar a navbar */
    }
    .logo-tagline {
      font-size: 0.95rem;
    }
  }
  