body {
    font-family: 'Cormorant Garamond', serif;
  }  

  h1 {
    font-size: 4rem; /* Tamanho maior */
    font-weight: 600;
  }
  
  /* Estilo para o parágrafo */
  p {
    font-size: 1.5rem; /* Tamanho maior */
    line-height: 1.6;
  }

/* Cor de fundo personalizada */
.bg-custom {
    background-color: #efdec5;
  }
  
  /* Animação pulsante */
  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.05);
      opacity: 0.9;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .pulsante {
    animation: pulse 2s infinite;
    width: 80%;         /* Ocupa 80% da largura disponível */
    max-width: 700px;   /* Limite máximo para evitar exageros em telas grandes */
  }

  
  .custom-btn {
    background-color: #25334B;
    border-color: #25334B;
  }
  
  .custom-btn:hover {
    background-color: #1a2536;
    border-color: #1a2536;
  }
  