/* Global Styles */
body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #333;
    background-color: #f5f5f5;
  }
  
  /* Hero Section */
  .hero-section {
    background: linear-gradient(135deg, #16a085, #1abc9c);
    height: 100vh;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-section h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  .hero-section p {
    font-size: 1.5rem;
    font-style: italic;
  }
  
  /* Scroll Indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  .scroll-indicator a {
    color: #1abc9c;
    font-size: 2rem;
    animation: fade-slide 1.5s infinite;
  }
  .scroll-indicator a:hover {
    color: #12876d;
  }
  
  @keyframes fade-slide {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    50% {
      opacity: 1;
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      transform: translateY(-10px);
    }
  }
  
  /* Section Headings */
  h2 {
    color: #16a085;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  /* Sobre Section */
  #sobre {
    background: #ffffff;
    padding: 3rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  #sobre p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  #sobre .btn {
    background: #16a085;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-transform: uppercase;
  }
  #sobre .btn:hover {
    background: #12876d;
    color: #fff;
  }
  
  /* Planejamento Financeiro Section */
  #planejamento-financeiro {
    padding: 3rem 0;
    background: #f9f9f9;
  }
  #planejamento-financeiro h3 {
    color: #16a085;
    margin-bottom: 1rem;
    font-weight: bold;
  }
  #planejamento-financeiro ul {
    list-style-type: none;
    padding-left: 0;
  }
  #planejamento-financeiro li {
    margin-bottom: 0.75rem;
    padding-left: 20px;
    position: relative;
  }
  #planejamento-financeiro li::before {
    content: '\2022';
    color: #16a085;
    font-weight: bold;
    position: absolute;
    left: 0;
  }
  
  /* Contato Section */
  #contato {
    background: #ffffff;
    padding: 3rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  #contato a {
    color: #16a085;
    text-decoration: none;
    font-weight: bold;
  }
  #contato a:hover {
    text-decoration: underline;
    color: #12876d;
  }
  
  /* Footer */
  footer {
    background: #16a085;
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }
  