:root{
    /*cores*/
--charleston-green: hsl(206, 20%, 14%);
--battleship-gray: hsl(0, 0%, 53%);
--shamrock-green: hsl(54, 83%, 61%);
--russian-violet: hsl(245, 97%, 13%);
--yellow-orange: hsl(0, 61%, 62%);
--green-pigment: hsl(108, 39%, 58%);
--roman-silver: hsl(223, 6%, 55%);
--sonic-silver: hsl(0, 0%, 45%);
--eerie-black: hsl(210, 11%, 15%);
--space-cadet: hsl(222, 36%, 22%);
--light-gray: hsl(0, 0%, 82%);
--mint-cream: hsl(96, 36%, 95%);
--gunmetal-1: hsl(207, 21%, 17%);
--gunmetal-2: hsl(206, 21%, 15%);
--black_90: hsla(0, 0%, 0%, 0.9);
--black_50: hsla(0, 0%, 0%, 0.5);
--black_25: hsla(0, 0%, 0%, 0.25);
--white_50: hsla(0, 0%, 100%, 0.50);
--white_25: hsla(0, 0%, 100%, 0.25);
--white_10: hsla(0, 0%, 100%, 0.1);
--platinum: hsl(0, 0%, 92%);
--cultured: hsl(0, 0%, 94%);
--emerald: hsl(209, 99%, 33%);
--emerald_70: hsla(212, 88%, 53%, 0.7);
--white: hsl(0, 0%, 100%);
--black: hsl(0, 0%, 0%);
--onyx: hsl(0, 0%, 27%);
--jet: hsl(0, 0%, 20%);

/*tipografia*/
--ff-outfit: 'Outfit', sans-serif;

--fs-1: 3rem;
--fs-2: 2.4rem;
--fs-3: 2rem;
--fs-4: 1.8rem;
--fs-5: 1.7rem;
--fs-6: 1.5rem;
--fs-7: 1.4rem;
--fs-8: 1.3rem;
--fs-9: 1rem;

--fw-400: 400;
--fw-500: 500;
--fw-600: 600;
--fw-700: 700;

/*espaçamento*/
--section-padding: 80px;

/*radius*/
--radius-4: 4px;
--radius-6: 6px;

/*shadow*/
--shadow-1: 0 12px 25px -8px hsla(0, 0%, 0%, 0.2);
--shadow-2: -12px 0 25px -8px hsla(0, 0%, 0%, 0.2);
--shadow-3: 12px 0 25px -8px hsla(0, 0%, 0%, 0.2);

/*transitions*/
--transition-1: 0.05s ease;
--transition-2: 0.25s ease;
--cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
--cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}

/*reset*/
*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

li{ list-style: none;}

a{
    text-decoration: none;
    color:inherit;
}

a,
img,
span,
input,
button,
ion-icon{
    display: block;
}

img{height: auto;}

input,
button{
    background: none;
    border: none;
    font: inherit;
}

input{ width: 100%; }
button{cursor:pointer;}
ion-icon{pointer-events: none;}
adress{font-style: normal;}
:focus-visible{outline-offset: 4px;}

::selection{
    background-color: var(--black_50);
    color: var(--white);   
}

html{
    font-size: 10px;
    font-family: var(--ff-outfit);
    scroll-behavior: smooth;
}

body{
    font-size: 1.6rem;
    background-color: var(--white);
}

/*estilo reutilizável*/
.container {
    padding-inline: 10px ;
}

/*header*/
.header {
  width: 100%;
  top: 0;
  left: 0;
  position: sticky;
  background: var(--white);
  z-index: 1000;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar{
    background-color: var(--emerald_70);
    color: var(--white);
    font-size: var(--fs-8);
    font-weight: var(--fw-500) ;
    text-align: center;
    padding-block: 10px;
}

.logo{
    color:var(--roman-silver);
    font-family: var(--ff-outfit);
    font-size: 3rem;
    font-weight: bold;
}

.logo .span{
    display: inline-block;
    color: var(--emerald);
}

/*MOBILE/TABLET (até 991px)*/
@media (max-width: 991px) {
  .nav-wrapper .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 5%;
    padding-block: 15px;
    gap: 15px;
  }

  /*Logo no topo, centralizado*/
  .nav-wrapper .h1 {
    order: 1;
    width: 100%;
    text-align: center;
  }

  /* Linha inferior: hambúrguer à esquerda, redes sociais à direita */
  .header-action {
    order: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  /* Menu hambúrguer à esquerda */
  .nav-open-btn {
    font-size: 2.8rem;
    color: var(--black_50);
    transition: var(--transition-2);
    order: 1;
  }

  .nav-open-btn:hover {
    color: var(--emerald);
  }

  /* Redes sociais à direita */
  .socialmidia-list {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    order: 2;
  }

  /* Menu lateral */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    padding: 100px 30px 30px;
    background: var(--white);
    box-shadow: var(--shadow-3);
    z-index: 1000;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform .3s ease, visibility .3s ease;
  }

  .navbar.active {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-close-btn {
    color: var(--black);
    font-size: 2.8rem;
    border: 1px solid var(--black_25);
    padding: 5px;
    position: absolute;
    top: 30px;
    right: 30px;
    border-radius: 4px;
    transition: var(--transition-1);
  }

  .nav-close-btn:hover {
    color: var(--emerald);
    border-color: var(--emerald);
  }

  .navbar-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .navbar-link {
    color: var(--black);
    font-size: var(--fs-6);
    font-weight: var(--fw-600);
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--transition-2);
  }

  .navbar-link:hover {
    color: var(--emerald);
  }

  /* SUBMENU MOBILE */
  .has-submenu {
    position: relative;
  }

  .submenu-toggle {
    background: none;
    border: none;
    font-size: var(--fs-6);
    color: var(--black);
    font-weight: var(--fw-600);
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition-2);
  }

  .submenu-toggle:hover {
    color: var(--emerald);
  }

  .submenu {
    display: none;
    flex-direction: column;
    padding-left: 20px;
    margin-top: 5px;
    font-weight: var(--fw-600);
  }

  .submenu a {
    padding: 8px 15px;
    font-size: var(--fs-7);
    color: var(--black_70);
    border-radius: 6px;
    transition: var(--transition-2);
  }

  .submenu a:hover {
    color: var(--emerald);
  }

  /* QUANDO ATIVO NO MOBILE */
  .has-submenu.active .submenu {
    display: flex;
  }
}

/* DESKTOP (>992px) */
@media (min-width: 992px) {
  .nav-wrapper .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    padding-inline: 5%;
    padding-block: 15px;
  }

  /* Menu horizontal no centro */
  .navbar {
    position: static;
    transform: none;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    padding: 0;
    height: auto;
  }

  .navbar-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
  }

  .navbar-link {
    padding: 8px 16px;
    font-weight: var(--fw-600);
    color: var(--black);
    border-radius: 8px;
    transition: var(--transition-2);
  }

  .navbar-link:hover {
    background-color: var(--emerald_70);
    color: var(--white);
  }

  /* Esconder botões de menu mobile */
  .nav-open-btn,
  .nav-close-btn {
    display: none !important;
  }

  /* Redes sociais à direita */
  .header-action {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .socialmidia-list {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
  }

  /* SUBMENU DESKTOP */
  .has-submenu {
    position: relative;
  }

  .submenu-toggle {
    background: none;
    border: none;
    font-size: var(--fs-6);
    color: var(--black);
    font-weight: var(--fw-600);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition-2);
  }

  .submenu-toggle:hover {
    background-color: var(--emerald_70);
    color: var(--white);
  }

  .submenu-toggle ion-icon {
    font-size: 1.2rem;
  }

  .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 12px 20px 20px 12px hsla(0, 0%, 0%, 0.2);;
    border-radius: 20px;
    margin-top: 5px;
    z-index: 100;
    font-weight: var(--fw-600);
  }

  .submenu a {
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
    color: var(--black);
    font-size: var(--fs-7);
    transition: var(--transition-2);
  }

  .submenu a:hover {
    background-color: var(--emerald_10);
    color: var(--emerald);
  }

  /* MOSTRAR SUBMENU NO HOVER */
  .has-submenu:hover .submenu {
    display: block;
  }

  /* MOSTRAR SUBMENU NO CLICK (classe active) */
  .has-submenu.active .submenu {
    display: block;
  }
}

/* Estilos dos ícones das redes sociais */
.socialmidia-list a {
  font-size: 2rem;
  color: var(--black_50);
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 50%;
}

.socialmidia-list a:hover {
  color: var(--emerald);
  transform: translateY(-2px);
}

html, body { height: 100%; margin: 0; }
#map { 
    width: 100%; 
    height: 100%;
    border-radius: 12px;
}

/* HERO SECTION */
.hero-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--mint-cream) 0%, var(--white) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-banner {
    text-align: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.hero-title {
    font-size: var(--fs-1);
    font-weight: var(--fw-700);
    line-height: 1.2;
    color: var(--eerie-black);
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--emerald);
    white-space: nowrap;
    display: inline-block;
}

.hero-description {
    font-size: var(--fs-5);
    color: var(--roman-silver);
    line-height: 1.6;
}

.hero-referencia{
     font-size: var(--fs-8);
    color: var(--roman-silver);
    line-height: 1.4;
}

.hero-referencia a:hover {
    color: var(--emerald);
    font-weight: bold;
    transform: translateY(-0.5px);
}
.hero-right {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.map-container {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-1);
    position: relative;
}

.locate-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--emerald);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: var(--fw-600);
    font-size: var(--fs-8);
    z-index: 1000;
    transition: var(--transition-2);
    box-shadow: 0 4px 12px hsla(212, 88%, 53%, 0.3);
}

.locate-btn:hover {
    background: var(--emerald_70);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px hsla(212, 88%, 53%, 0.4);
}

#map { 
    width: 100%; 
    height: 100%;
}








/*------------PARCEIROS----------------*/
/* INSTITUIÇÕES PARCEIRAS */
.parceiros-section {
    background-color: var(--emerald_70);
    padding: 4rem 0;
    margin: 0;
}

.parceiros-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.parceiros-titulo {
    color: var(--white);
    font-weight: 700;
    font-size: var(--fs-1);
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
    text-align: center;
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
}

.parceiro-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 90px;
    background-color: var(--white_25);
    border: 3px solid transparent;
}

.parceiro-logo:hover {
    transform: translateY(-5px);
    background-color: var(--white);
    border-color: var(--emerald);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.logo-img {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.parceiro-logo:hover .logo-img {
    opacity: 1;
}

/* RESPONSIVO - PARCEIROS */
@media (max-width: 768px) {
    .parceiros-section {
        padding: 3rem 0;
    }

    .parceiros-container {
        padding: 0 30px;
    }

    .parceiros-titulo {
        font-size: var(--fs-1);
        margin-bottom: 2.5rem;
    }

    .parceiros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .parceiro-logo {
        min-height: 80px;
        padding: 0.875rem;
    }

    .logo-img {
        max-width: 120px;
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .parceiros-section {
        padding: 2.5rem 0;
    }

    .parceiros-container {
        padding: 0 20px;
    }

    .parceiros-titulo {
        font-size: var(--fs-4);
        margin-bottom: 2rem;
    }

    .parceiros-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .parceiro-logo {
        min-height: 75px;
        padding: 0.75rem;
    }

    .logo-img {
        max-width: 110px;
        max-height: 55px;
    }
}


/*------------------ FOOTER ----------------*/
.footer {
    background: var(--eerie-black);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3.footer-title {
    font-size: var(--fs-2);
    font-weight: var(--fw-700);
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section h3.footer-title .span {
    color: var(--emerald);
     display: inline-block;
}

.footer-section h4.footer-subtitle {
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
    margin-bottom: 20px;
    color: var(--emerald);
}

.agradecimento-cnpq {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-agradecimento {
    font-size: var(--fs-7);
    line-height: 1.6;
    color: var(--light-gray);
}

.footer-banner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-image {
    max-width: 150px;
    height: auto;
}

.footer-social {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-social a {
    font-size: 2rem;
    color: var(--light-gray);
    transition: var(--transition-2);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: var(--emerald);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links a {
    font-size: var(--fs-6);
    color: var(--light-gray);
    transition: var(--transition-2);
}

.footer-links a:hover {
    color: var(--emerald);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-6);
    color: var(--light-gray);
    margin: 0;
}

.footer-contact i {
    color: var(--emerald);
    width: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--white_25);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--roman-silver);
    font-size: var(--fs-7);
    margin: 0;
}
/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .hero-title {
        font-size: var(--fs-2);
    }

    .hero-description {
        font-size: var(--fs-9);
    }

    .map-container {
        height: 300px;
    }




    .parceiros-grid{
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;

    }

    .parceiros-container{
        padding: 0 1 rem;
    }
    


    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-banner {
    text-align: center;
    display: flex;
    
    gap: 15px;
    justify-content: center;
    padding: 15px;
    }
    .footer-image {
        width: 20vh;
        height: auto;
        
    }

    .footer-agradecimento{
        text-align: left;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-container {
        padding: 0 15px;
        gap: 30px;
    }

    .hero-title {
        font-size: var(--fs-3);
    }

    .map-container {
        height: 250px;
    }

    .locate-btn {
        padding: 8px 16px;
        font-size: var(--fs-9);
    }

    .parceiros-grid{
        grid-template-columns: 1fr;
    }
}









/* EQUIPE*/
.team-header {
    background:  var(--emerald);
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--white_50);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-section {
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 10px solid var(--emerald) ;
}

.member-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--eerie-black);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1.3rem;
    color: var(--emerald);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--sonic-silver);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.member-contact p {
    margin-bottom: 0.5rem;
    color: var(--onyx);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.member-contact i {
    color: var(--emerald);
    width: 16px;
}


.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;

    color: white;
    transition: background-color 0.3s ease;
    border-radius: 50%;
}

.member-social a:hover {
    background-color: var(--black_25);
    border-radius: 50%;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: var(--fs-2);
    }

    .hero-description {
        font-size: var(--fs-6);
    }

    .map-container {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-container {
        padding: 0 15px;
        gap: 30px;
    }

    .hero-title {
        font-size: var(--fs-3);
    }

    .map-container {
        height: 250px;
    }

    .locate-btn {
        padding: 8px 16px;
        font-size: var(--fs-9);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }

}

.team-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
  justify-content: center;
  align-items: center;
  text-align: center; 
}

.filter-btn {
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--light-gray, #ddd);
  background: var(--white_50);
  color: var(--eerie-black, #1e1e1e);
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.filter-btn:hover { transform: translateY(-1px); }

.filter-btn.is-active {
  background: var(--white_25, #10b981);
  color: var(--emerald);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(16,185,129,0.2);
}

/* Esconde semanticamente usando o atributo hidden */
.team-member[hidden] { display: none !important; }


/* container alternativo para a visão agrupada */
.team-grouped { margin-top: 1.5.0rem; }
.team-grouped.hidden { display: none; }

.school-section { margin-top: 2rem; }
.school-title {
  font-size: 2.0rem;
  font-weight: 800;
  color: var(--emerald);
  margin-bottom: 2rem;
}

.school-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

/* mantém compatibilidade com o grid padrão */
.team-grid.hidden { display: none !important; }

.calendario-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  background: #f8f9fa;
   min-height: 90vh;    
}

.calendario-container {
  width: 100%;         
  aspect-ratio: 16 / 10;  
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  min-height: 90vh;
}

.cal-container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;                 
  display: flex;
  flex-direction: column;
  align-items: center;        
  text-align: center;
  gap: 1.25rem;              
}

.cal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: .75rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .05s ease, box-shadow .15s ease, background .2s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: #0d6efd; color: #fff; }
.btn-primary:hover { box-shadow: 0 6px 18px rgba(13,110,253,.25); }

.btn-outline { background: #fff; color: #0d6efd; border-color: #0d6efd; }
.btn-outline:hover { background: #eef5ff; }

/*---------------NAVEGAÇÃO BOTÕES----------------*/
/* SEÇÃO DE NAVEGAÇÃO */
.navegacao-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--mint-cream) 100%);
}

.navegacao-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.navegacao-titulo {
    font-size: var(--fs-1);
    font-weight: var(--fw-700);
    color: var(--eerie-black);
    margin-bottom: 15px;
}

.navegacao-subtitulo {
    font-size: var(--fs-5);
    color: var(--roman-silver);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.navegacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Cards de Navegação */
.nav-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald) 0%, var(--emerald_70) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.nav-card:hover::before {
    transform: scaleX(1);
}

/* Ícones dos Cards */
.nav-icon {
    width: 80px;
    height: 80px;
    background:  var(--emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.nav-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.nav-card:hover .nav-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Textos dos Cards */
.nav-card-title {
    font-size: var(--fs-4);
    font-weight: var(--fw-700);
    color: var(--eerie-black);
    margin-bottom: 15px;
}

.nav-card-description {
    font-size: var(--fs-7);
    color: var(--sonic-silver);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Botões dos Cards */
.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--emerald);
    color: var(--white);
    font-size: var(--fs-7);
    font-weight: var(--fw-600);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px hsla(212, 88%, 53%, 0.3);
}

.nav-btn i {
    font-size: var(--fs-8);
    transition: transform 0.3s ease;
}

.nav-btn:hover {
    background: var(--emerald_70);
    box-shadow: 0 6px 20px hsla(212, 88%, 53%, 0.4);
    transform: translateY(-2px);
}

.nav-btn:hover i {
    transform: translateX(4px);
}

.nav-btn:active {
    transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .navegacao-section {
        padding: 60px 0;
    }

    .navegacao-titulo {
        font-size: var(--fs-2);
    }

    .navegacao-subtitulo {
        font-size: var(--fs-6);
        margin-bottom: 30px;
    }

    .navegacao-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .nav-card {
        padding: 30px 25px;
    }

    .nav-icon {
        width: 70px;
        height: 70px;
    }

    .nav-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .navegacao-section {
        padding: 40px 0;
    }

    .navegacao-container {
        padding: 0 15px;
    }

    .navegacao-titulo {
        font-size: var(--fs-3);
    }

    .navegacao-subtitulo {
        font-size: var(--fs-7);
    }

    .nav-card {
        padding: 25px 20px;
    }

    .nav-icon {
        width: 60px;
        height: 60px;
    }

    .nav-icon i {
        font-size: 1.8rem;
    }

    .nav-btn {
        padding: 10px 24px;
        font-size: var(--fs-8);
    }
}