:root {
    --color-primary: #0f4c81;     /* Azul Médio */
    --color-secondary: #BFDBFE;   /* Azul Bebê */
    --color-accent: #0EA5E9;      /* Call-to-action */
    --color-whiteice: #F1F1F1;  /* Fundo Base */
    --color-text: #111827;        /* Preto carvão */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: var(--color-whiteice);
}

/* Fontes  */

@font-face {
    font-family: 'MontRegular';
    src: url('/assets/Fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'MontMedium';
    src: url('/assets/Fonts/montserrat-medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'MontBold';
    src: url('/assets/Fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'MontBlack';
    src: url('/assets/Fonts/mont-black.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  /* Estilos "padroes" */

  .Section-style{
    display: flex;
    height: 30rem;
    background-color: var(--color-primary);
    width: 100%;
  }

  .button-style{
   background-color: var(--color-whiteice);
    width: auto;
    padding: 20px;
    height: 30px;
    border: none;
    border-radius: 10px;
    color: var(--color-primary);
    font-family: "MontBold";
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .button-style:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 76, 129, 0.3);
  }
  .button-style:active {
    transform: translateY(0);
  }

  /* Floating WhatsApp button */
  #wpp-float {
    position: fixed;
    bottom: 30px;
    right: 15px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
  }
  #wpp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  }

  /* Animation keyframes */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: var(--color-whiteice);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
    border: 2px solid var(--color-whiteice);
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--color-text);
  }
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-whiteice);
  }