body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #fdf9f9;
    color: #333;
  }

/* Cabecalho */
header {
    background-color: #A8C3A5;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px;
  }
  
  .btnAgendaTopo{
    text-decoration: none;
  }
  
  .fundoLogo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .logoImagem img {
    width: 80px;
    height: 80px;
    border-radius: 50px;
  }
  
  .logo {
    font-size: 20px;
    color: #fff;
    font-style: italic;
    font-family: auto;
  }
  
  .nav-link {
    font-family: Raleway, sans-serif;
    color: #f9f8f8 !important;
    transition: transform 0.3s ease, color 0.3s ease !important;
  }
  
  .nav-link:hover {
    transform: scale(1.2);
    box-shadow: 2px 3px 5px #f4d0d0;
    border-radius: 10px;
  }

  button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px 10px 12px;
    box-shadow: rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    background-color: #e8e8e8;
    border-color: #ffe2e2;
    border-style: solid;
    border-width: 5px;
    border-radius: 50px !important;
    font-size: 25px;
    cursor: pointer;
    font-weight: 900;
    color: rgb(134, 124, 124);
    font-family: monospace;
    transition:
      transform 400ms cubic-bezier(0.68, -0.55, 0.27, 2.5),
      border-color 400ms ease-in-out,
      background-color 400ms ease-in-out;
    word-spacing: -2px;
  }
  
  @keyframes movingBorders {
    0% {
      border-color: #fce4e4;
    }
  
    50% {
      border-color: #ffd8d8;
    }
  
    90% {
      border-color: #fce4e4;
    }
  }
  
  button:hover {
    background-color: #eee;
    transform: scale(105%);
    animation: movingBorders 3s infinite;
  }
  
  button svg {
    margin-right: 11px;
    fill: rgb(255, 110, 110);
    transition: opacity 100ms ease-in-out;
  }
  
  .filled {
    position: absolute;
    opacity: 0;
    top: 12px;
    left: 15px;
  }
  
  @keyframes beatingHeart {
    0% {
      transform: scale(1);
    }
  
    15% {
      transform: scale(1.15);
    }
  
    30% {
      transform: scale(1);
    }
  
    45% {
      transform: scale(1.15);
    }
  
    60% {
      transform: scale(1);
    }
  }
  
  button:hover .empty {
    opacity: 0;
  }
  
  button:hover .filled {
    opacity: 1;
    animation: beatingHeart 1.2s infinite;
  }

  main {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
  }
  
  main section {
    margin-bottom: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  main h2 {
    color: #c06a98;
    margin-bottom: 15px;
  }
  
  main a {
    color: #985151;
    text-decoration: none;
    font-weight: 500;
  }
  
  main a:hover {
    text-decoration: underline;
  }

  .footer {
    background-color: #1d2125;
    color: #fff;
    padding: 40px 20px;
    position: relative;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-section {
    flex: 1 1 220px;
  }
  
  .footer-logo {
    width: 120px;
    margin-bottom: 15px;
    border-radius: 50%;
  }
  
  .footer-section p {
    line-height: 1.6;
    color: #ccc;
  }
  
  .contact p a{
    text-decoration: none;
    color: #fff;
  
  }
  
  .footer-section h3 {
    color: #fff;
    margin-bottom: 10px;
    border-bottom: 2px solid #e675b8;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 8px;
  }
  
  .footer-section ul li a {
    color: #ccc;
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    color: #fff;
  }
  
  .social-icons a {
    margin-right: 15px;
    color: #fff;
    font-size: 20px;
    background-color: #2c2f33;
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s;
  }
  
  .social-icons a:hover {
    background-color: #e675b8;
    color: #1d2125;
  }
  
  .footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
    position: relative;
  }
  
  .crp {
    margin-top: 5px;
    font-weight: bold;
  }
  
  .scroll-top {
    position: absolute;
    right: 20px;
    top: -20px;
    background-color: #e675b8;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
  }
  
  .scroll-top:hover {
    background-color: #fff;
    color: #e675b8;
  }
  
  .about img{
    width: 80px;
    height: 80px;
    align-self: center;
  }

  .about,.links,.contact{
  text-align: center;
}
  
