/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Playfair Display", serif;
    background-color: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .banner {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #111111, #000000);
    border: 20px solid #FFD700;
    border-radius: 25px;
    overflow: hidden;
    max-width: 1000px;
    width: 95%;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  }
  
  .logo {
    flex: 1 1 300px;
    background: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .logo img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid #FFD700;
  }
  
  .foto {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #111111;
    padding: 20px;
  }
  
  /* Título acima da foto */
  .title-container {
    text-align: center;
    color: #FFD700;
    margin-bottom: 20px;
  }
  
  .title-container h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
  }
  
  .title-container h2 {
    font-size: 1.5rem;
    font-weight: 400;
  }
  
  /* Foto */
  .foto img {
    max-width: 45%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    transition: transform 0.3s ease;
    border: 3px solid #FFD700;
    margin-bottom: 20px;
  }
  
  .foto img:hover {
    transform: scale(1.05);
  }
  
  /* Botões de redes e contato */
  .social-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .social-buttons a {
    text-decoration: none;
    color: #111111;
    background-color: #FFD700;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .social-buttons a:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .banner {
      flex-direction: column;
    }
  
    .title-container h1 {
      font-size: 2rem;
    }
  
    .title-container h2 {
      font-size: 1.2rem;
    }
  }
  