/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 15 2025 | 13:35:44 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 
/*cores*/
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --brand-primary: rgba(65, 105, 225, 0.9);
    --brand-secondary: #F9F7F2;
    --brand-tertiary:#0F1842 ;
    --brand-accent: #C7D1FF;
    --text-primary: #F9F7F2;
    --text-secondary: #0F1842;
    --text-blue-background: #F9F7F2;
    --pure-white: #ffffff;
    --highlight-yellow: #FCF187;
    --cta-yellow: #FEBB22;
    --cta-yellow-hover: #EB8D00;
    --light-yellow: #FCF187;
    --text-body: #2d3748;
    --border-radius-md: 10px;
    --border-radius-sm: 8px;
    --box-shadow-sm: 0 3px 6px rgba(0,0,0,0.1);
    --box-shadow-md: 0 4px 10px rgba(0,0,0,0.2);
    --transition-default: all 0.3s ease;

    /* Fonte */
    --font-primary: 'Kumbh Sans', sans-serif;
}

html, body {
    min-height: 100vh;	
}

body {
    display: flex; /* Define o corpo como um contêiner flexível */
    flex-direction: column; /* Organiza os itens verticalmente */
    background: var(--brand-accent);
}

/* O conteúdo principal deve crescer para empurrar o footer */

/* O conteúdo principal deve crescer para empurrar o footer */
 .anim {
  opacity: 0;
  transform: translateY(-40px);
  animation: fall 0.6s ease forwards;
}

 .anim:nth-child(1) { animation-delay: 0.2s; }
 .anim:nth-child(2) { animation-delay: 0.4s; }
 .anim:nth-child(3) { animation-delay: 0.6s; }
 .anim:nth-child(4) { animation-delay: 0.8s;}

@keyframes fall {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*cabeçalho*/

  header {
    background-color: var(--brand-tertiary);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	min-width: 100%;
  }
  
  nav {
    display: flex;
	justify-content: space-between;
	align-items: center;
    max-height: 100px;
  }
  
  .logo img {
    margin: 10%;
    max-width: 180px;
    height: auto;
    border-radius: 10px;
  }  

  .menu {
    display:none;
    background-color:var(--brand-tertiary);
	align-self: flex-start;
	position: absolute;
	left: 77%;
	margin-top:5% ;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
   
  .menu li{list-style-type: none}
  .menu a {
    padding: 10px 15px;
    color: var(--text-primary);
    font-weight: bold;
    border-radius: 5px;
    display: flex;
  }

  .menu a:hover {
    background-color: var(--cta-yellow-hover);
    display: inline-block;
  }

  .hamburguer {
	margin-right: 5% ;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    background-color: var(--brand-tertiary);
  }
  
  .hamburguer:hover {
    transform: translateY(-1px);
  }

  .menu.active {
    display: flex;
	
	
	
  }


 @media (max-width: 767px) {
   
  .menu {
    margin-top: 20%;
	left: 30%;
	
	 }}
	 
  @media (min-width: 768px) and (max-width: 1024px) {
  .menu{margin-top: 10%;
	  left: 60%;}
}
/*fim cabeçalho*/
/*rodape*/
  footer {
    background-color:var(--brand-tertiary);
    box-shadow: 0 -4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
	min-width: 100%;
  }

  footer img {
    width: 80px;
    margin-bottom: 15px;
	border-radius: 50%;
  }

  footer .social-links {
    margin: 15px 0;
  }

  footer .social-links a {
    color: var(--brand-secondary);
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
  }

  footer p {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
  }

/*fim rodape*/