/* Fundo fixo */
body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: url('https://casanafloresta.com.br/wp-content/uploads/2025/05/Chacara-em-Juquitiba-Casa-na-Floresta-header.webp')
                no-repeat center top fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }


  
  /* Container principal */
  .link-container {
    background: rgba(255,255,255,0.9);
    padding: 2rem;
    width: 90%;
    max-width: 360px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    animation: fadeIn 0.8s ease-out both;
  }
  
  /* Foto 250×250 redonda */
  .profile-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    margin: 0 auto 1rem;
    display: block;
  }
  
  /* Bio */
  .bio {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #333;
    text-align: left;
  }
  
  /* Frase abaixo da foto */
  .quote-box {
    font-style: italic;
    font-size: 0.9rem;
    color: #444;
    margin: 0 auto 1.5rem;
    max-width: 90%;
  }
  
  /* Logo da empresa */
  .company-logo {
    max-width: 140px;
    margin: 0.5rem auto 1.5rem;
    display: block;
  }
  
  /* Grid de botões */
  .btn-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 0;
  }
  
  .btn-grid a {
    display: block;
    padding: 0.75rem;
    background: #2E7D32;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
  }
  
  .btn-grid a i {
    margin-right: 0.5rem;
    vertical-align: middle;
  }
  
  .btn-grid a:hover {
    background: #27692a;
  }
  
  /* Botão WhatsApp destacado */
  .btn-whatsapp {
    background: #25D366;
  }
  
  /* Animação de entrada */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  