body {
    background-color: #ede1d3;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  nav {
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 18px;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  }
  
  .nav-left,
  .nav-right {
    display: flex;
    align-items: center;
  }
  
  .nav-left a,
  .nav-right a {
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .nav-left a:hover,
  .nav-right a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .sobremim {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .sobre-p {
    text-align: justify;
    max-width: 600px;
    font-size: 20px;
  }
  
  h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .francis {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #333;
  }
  
  .button {
    background-color: #333;
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .button:hover {
    background-color: #555;
  }
  
  .modal {
    display: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  
  .modal.show {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  
  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
  }
  
  .close-btn {
    color: #333;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  form label {
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  form input,
  form textarea {
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
  }
  
  form input:focus,
  form textarea:focus {
    border-color: #333;
    outline: none;
  }
  
  form textarea {
    resize: vertical;
  }
  
  form button {
    align-self: flex-start;
    background-color: #333;
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  form button:hover {
    background-color: #555;
  }