


.info {
    margin-bottom: 20px;
}

.info p {
    margin-bottom: 8px;
}

.botao {
    display: inline-block;
    background-color: #005187;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.botao:hover {
    background-color: #003d63;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
        margin: 100px 15px 40px 15px;
    }

    header h1 {
        font-size: 1.5em;
    }

    .titulo-curso h2 {
        font-size: 1.6em;
    }
}

.center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.sobre {
margin-top: 100px;
}

/* =-=-=-=-=-= GRID =-=-=-=-=-= */


    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      grid-template-rows: repeat(auto-fit, minmax(300px, 1fr));
      gap: 10px 10px;
      width: 90%;
      height: auto;
    
    }

.feature-card {
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: left;
    border: 3px solid #003d63;
    padding: 3rem;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
    }

    
.feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
    cursor: pointer;
}


.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    box-shadow: 0px 0px 30px rgba(0, 255, 255, 0.5);
}

.feature-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}





.div_link {
  color: inherit;          /* pega a cor do texto do pai */
  text-decoration: none; 
}



.hero {
    background: url('https://source.unsplash.com/1600x900/?technology,science') no-repeat center center/cover;
    height: 100vh;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-button {
    background-color: #005C96;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.hero-button:hover {
    background-color: #005fa3;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.5s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}





section {
    scroll-margin-top: 130px; /* Ajuste a distância */
}

.resumo-texto{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.em-construcao-icon {
    width: 90%;
    height: auto;
    opacity: 0.8;

    filter: drop-shadow(2px 4px 6px #333);
}





