
/*------------------------------------*/
/*-------- Página - Principal --------*/
/*------------------------------------*/

*{
    margin: 0;
    padding: 0;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}


.header {
    min-height: calc(100vh - 120px); /* Reduz a altura pelo tamanho da onda */
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), 
                     url(images/banner2.png);
    background-position: center; /* Alinha no topo */
    background-size: cover;
    position: relative;
    /* Garante que a parte inferior não seja mostrada */
    background-clip: border-box;
    overflow: hidden;
}

.header2 {
    min-height: calc(100vh - 120px); /* Reduz a altura pelo tamanho da onda */
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), 
                     url(images/TodosPET.jpeg);
    background-position: center; /* Alinha no topo */
    background-size: cover;
    position: relative;
    /* Garante que a parte inferior não seja mostrada */
    background-clip: border-box;
    overflow: hidden;
}


/* Estilo para a logo no header */
.header-logo {
    width: 300px; /* Ajuste conforme necessário */
    max-width: 80%;
    height: auto;
    margin-bottom: 1px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -50%);
    top: 10%;
    left: 50%;
    text-align: center;
}

/* Ajuste para manter a responsividade */
@media(max-width: 700px){
    .header-logo {
        width: 200px;
    }
}
.wave-container {
    height: 120px; /* Mesmo valor que foi subtraído do header */
    width: 100%;
    margin-top: -1px; /* Remove linha branca */
    position: relative;
    z-index: 2;
}

.wave-image {
    height: 100%;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), 
                     url(images/banner2.png);
    /* Posiciona no FINAL da imagem (parte que foi cortada) */
    background-position: center bottom;
    background-size: cover;
    /* Ajuste fino para alinhamento perfeito */
    background-position-y: calc(100% - 120px); 

    /* Máscara de onda SVG */
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="white"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="white"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="white"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="white"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="white"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="white"/></svg>');
    
    -webkit-mask-size: 1200px 120px;
    mask-size: 1200px 120px;
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
    -webkit-mask-position: bottom;
    mask-position: bottom;
}

/* SEÇÃO SEGUINTE (sobrepõe levemente a onda) */
.pilars {
    position: relative;
    z-index: 3;
    background: white;
    margin-top: -40px; /* Sobreposição suave */
    padding-top: 60px; /* Compensação */
}

nav{
    display: flex;
    padding: 2% 3%;
    justify-content: space-between;
    align-items: center;
}

nav img{
    width: 200px;
}


.nav-links{
    flex: 1;
    text-align: right;
}

/* Estilos para as novas seções */

/* Atividades */
.activities {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 50px;
}

.activities-col {
    flex-basis: 31%;
    background: rgba(33, 51, 129, 0.1);
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

.activities-col i {
    font-size: 50px;
    color: #213381;
    margin-bottom: 20px;
}

.activities-col h3 {
    margin: 15px 0;
}

.activities-col:hover {
    box-shadow: 0 0 20px 0 rgba(33, 51, 129, 0.2);
    transform: translateY(-10px);
}

/* Informações do Curso */
.course-info {
    width: 80%;
    margin: auto;
    padding: 80px 0;
    background: #f9f9f9;
    border-radius: 10px;
}

.course-col {
    flex-basis: 48%;
    padding: 20px;
}

.course-col h1 {
    color: #213381;
    margin-bottom: 20px;
}

.course-col p {
    margin-bottom: 15px;
    color: #555;
}

.course-col img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Coordenação */
.coordination {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 80px 0;
}

.coord-col {
    flex-basis: 48%;
    display: flex;
    align-items: center;
    background: rgba(33, 51, 129, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.coord-col img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 30px;
    border: 3px solid #213381;
}

.coord-col h3 {
    color: #213381;
    margin-bottom: 10px;
}

.coord-col p {
    color: #555;
    line-height: 1.6;
}

/* Responsividade */
@media(max-width: 700px){
    .activities-col, .course-col, .coord-col {
        flex-basis: 100%;
    }
    
    .coord-col {
        flex-direction: column;
        text-align: center;
    }
    
    .coord-col img {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* Atualize o CSS da seção activities com estes estilos */
.activities {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 50px;
}

.activities-col {
    flex-basis: 31%;
    background: rgba(33, 51, 129, 0.1);
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    position: relative;
}

.activity-content {
    padding: 25px;
    transition: all 0.3s ease;
}

.activities-col:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(33, 51, 129, 0.2);
}

.activities-col:hover .activity-content {
    background: rgba(33, 51, 129, 0.05);
}

.activities-col i {
    font-size: 50px;
    color: #213381;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.activities-col:hover i {
    color: #1a4b8c;
    transform: scale(1.1);
}

.activities-col h3 {
    margin: 15px 0;
    color: #213381;
    transition: all 0.3s ease;
}

.activities-col:hover h3 {
    color: #1a4b8c;
}

.activities-col p {
    margin-bottom: 20px;
    color: #555;
    transition: all 0.3s ease;
}

.activity-link {
    color: #213381;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.activities-col:hover .activity-link {
    color: #1a4b8c;
    transform: translateX(5px);
}

.activity-link i {
    font-size: 14px;
    margin-left: 5px;
}

/* Seção Biomédica */
.biomedical-section {
    padding: 100px 0;
    background-color: transparent;
    position: relative;
}
/* Seção Nossas Atividades */
.activities-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.activities-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
    background-attachment: fixed;
}

.activities-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}



.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
}

/* Grid de Atividades */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Cards */
.activity-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(33, 51, 129, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(33, 51, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #213381;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.activity-card:hover .card-icon {
    background: #213381;
    color: white;
}

.activity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #213381;
}

.activity-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.activity-cta {
    color: #213381;
    font-weight: 600;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
}

.activity-cta i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-cta i {
    transform: translateX(5px);
}

/* Responsividade */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-card {
        padding: 30px 25px;
    }
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    color: #213381;
    margin-bottom: 15px;
    padding: 0px 20px 20px;
    position: relative;
    display: inline-block;
}

.section-title2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    color: #213381;
    margin-bottom: 0px;
    padding: 0px 20px 20px;
    position: relative;
    display: inline-block;
}

/* Seção Notícias */
.news-section {
    padding: 80px 0;
    background-color: #fff;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.news-item.reverse {
    flex-direction: row-reverse;
}

.news-text {
    flex: 1;
    padding: 30px;
}

.news-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.news-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.03);
}

.news-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #213381;
    margin-bottom: 20px;
}

.news-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 25px;
}

.news-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #213381;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #213381;
}

.news-btn:hover {
    background-color: transparent;
    color: #213381;
}

/* Seção Notícias */
.news-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.news-container {
    max-width: 1000px;
    margin: 0 auto;
}

.news-box {
    background-color: #f1f3f5; /* FUNDO CINZA VISÍVEL */
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.news-content {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    height: 220px; /* Altura reduzida */
}

.news-text {
    flex: 1;
    padding: 25px;
}

.news-image {
    flex: 1;
    height: 100%;
    min-height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-text h3 {
    font-size: 1.4rem; /* Tamanho reduzido */
    margin-bottom: 12px;
}

/* ANIMAÇÃO PARA O TEXTO SOBRE NÓS */
.text-box h1 {
    font-size: 62px;
    animation: slideInFromLeft 1s ease-out forwards;
    padding-bottom: 15px; /* Espaço para o risquinho */
    opacity: 0;
}

.text-box p {
    text-align: center;
    margin: auto;
    width: 100%;
    margin: 10px 0 40px;
    font-size: 15px;
    color: #fff;
    animation: slideInFromLeft 1s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Ajuste para o subheader */
.subheader .text-box {
    transform: none; /* Remove o transform anterior */
    position: relative; /* Muda para relative para a animação funcionar */
    top: auto;
    left: auto;
    width: 80%;
    margin: 100px auto 0;
}

.text-box h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #ffffff;
    animation: underlineExpand 0.8s ease-out 1s forwards; /* Animação com delay */
}

/* Animação para o risquinho */
@keyframes underlineExpand {
    0% {
        width: 0;
        left: 50%;
    }
    100% {
        width: 100%;
        left: 0;
    }
}

/* Ajuste para mobile */
@media(max-width: 700px){
    .text-box h1 {
        font-size: 32px;
        padding-bottom: 10px;
    }
    
    .text-box h1::after {
        height: 2px;
    }
}

.news-text p {
    font-size: 1rem; /* Tamanho reduzido */
    line-height: 1.5;
    margin-bottom: 20px;
}

.news-btn {
    padding: 8px 20px; /* Botão menor */
    font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .news-content {
        flex-direction: column;
        height: auto;
    }
    
    .news-image {
        min-height: 180px;
        width: 100%;
    }
}
/* Responsividade */
@media (max-width: 768px) {
    .news-item,
    .news-item.reverse {
        flex-direction: column;
        gap: 20px;
    }
    
    .news-text {
        padding: 20px 0;
    }
    
    .news-text h3 {
        font-size: 1.5rem;
    }
}

/* ANIMAÇÕES DE ENTRADA */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.animated-title {
    animation: slideInFromLeft 1s ease-out forwards;
    opacity: 0;
}

.animated-subtitle {
    animation: slideInFromLeft 1s ease-out 0.3s forwards;
    opacity: 0;
}


.section-title::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #213381;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 300;
}

.biomedical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
/* Estilos com alinhamento vertical centralizado */
.section-header-with-text {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    margin-bottom: 60px;
    gap: 40px;
}

.header-text-box {
    flex: 1;
    background: rgba(33, 51, 129, 0.05);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #213381;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%; /* Ocupa toda a altura disponível */
    display: flex;
    align-items: center; /* Centraliza o texto verticalmente */
}

.header-text-box p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.section-header1 {
    flex: 1;
    text-align: left;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza verticalmente */
    height: 100%; /* Ocupa toda a altura disponível */
}

/* Ajuste para o título e subtítulo */
.section-title {
    margin-bottom: 10px;
}

.section-subtitle {
    margin-top: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .section-header-with-text {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start; /* Alinha à esquerda em mobile */
    }
    
    .header-text-box, .section-header1 {
        width: 100%;
        padding-right: 0;
        height: auto; /* Altura automática em mobile */
    }
    
    .section-header {
        text-align: center; /* Centraliza em mobile */
    }
}
.biomedical-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: left;
}


.biomedical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 51, 129, 0.1) 0%, rgba(33, 51, 129, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.biomedical-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(33, 51, 129, 0.1);
}

.biomedical-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(33, 51, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #213381;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.biomedical-card:hover .card-icon {
    background: #213381;
    color: white;
}

.biomedical-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #213381;
    text-align: left;
}

.biomedical-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ufu-btn {
    display: inline-flex;
    align-items: center;
    color: #213381;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.ufu-btn i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.ufu-btn:hover {
    color: #1a4b8c;
}

.ufu-btn:hover i {
    transform: translateX(5px);
}

/* Responsividade */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .biomedical-grid {
        grid-template-columns: 1fr;
    }
    
    .biomedical-card {
        padding: 30px 25px;
    }
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}


.nav-links ul li a{
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;

}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #ffffff;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.inscricoes-header {
    min-height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(images/precalculo.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

.inscricoes-container {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.inscricao-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    margin-bottom: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inscricao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.inscricao-titulo {
    color: #0d2b52;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.inscricao-titulo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #f6ad55;
}

.inscricao-grupo {
    margin-bottom: 1.5rem;
}

.inscricao-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
}

.inscricao-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.inscricao-input:focus {
    border-color: #1a4b8c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 75, 140, 0.2);
}

.inscricao-btn {
    background: linear-gradient(to right, #0d2b52, #1a4b8c);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.inscricao-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
    background: linear-gradient(to right, #1a4b8c, #0d2b52);
}

.inscricao-info {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.inscricao-status {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
    display: none;
}

.inscricao-success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.inscricao-error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

/*------------------------------------*/
/*-------- Responsividade ------------*/
/*------------------------------------*/

@media(max-width: 700px){
    .inscricao-card {
        padding: 1.5rem;
    }
    
    .inscricao-input:valid {
        border-color: #2ecc71;
    }

    .inscricao-input:invalid {
        border-color: #e74c3c;
    }
}
.nav-links ul li:hover::after{
    width: 100%;
}

.text-box{
    width: 60%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.text-box h1{
    font-size: 62px;
}

.text-box p{
    text-align: center;
    margin: auto;
    width: 100%;
    margin: 10px 0 40px;
    font-size: 15px;
    color: #fff;
}

.botao:hover {
    background-color: #0056b3;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #ffffff;
    background-color: #213381;
    transition: 1s;
}

nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #213381;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;

    }
}

.pilars{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

h1{
    font-size: 36px;
    font-weight: 600;
}

p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row{
    margin-top: 5%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.pilars-col{
    flex-basis: 31%;
    background: #0526b915;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.pilars-col:hover{
    box-shadow: 0 0 20px 0 rgba(17, 0, 255, 0.2);
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/*---------- Petianos ----------*/

/* Fonte Montserrat */
@import url('https://fonts.googleapis.co/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.petianos-text {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 10px;
}

.petianos-text p{
    padding: 20px;
}

.petianos-text .p{
    padding-bottom: 10px;
}

.card-list .card-item .user-image{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 40px;
    border: 3px solid #000000;
    padding: 4px;
}

.card-list .card-item{
    color: #000000;
    user-select: none;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    backdrop-filter: blur(30px);
    background: rgba(209, 209, 209, 0.219);
    border: 1px solid rgba(17, 0, 255, 0.2);
}

.card-item:hover{
    transition: 0.5s;
    box-shadow: 0 0 20px 0 rgba(17, 0, 255, 0.2);
}

.card-list .card-item .user-profession {
    font-size: 1.15rem;
    color: #000000;
    font-weight: 500;
    margin: 14px 0 40px;
    text-align: center;
}

.card-list .card-item .message-button {
    font-size: 1.25rem;
    padding: 10px 35px;
    color: #030728;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
}

.card-list .card-item .message-button:hover {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid #000000;
    color: #00ff00;
}

.slider-wrapper {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 70px 55px;
}

.slider-wrapper .swiper-pagination-bullet {
  background: #4658ff;
  height: 15px;
  width: 15px;  
}


.slider-wrapper .swiper-slide-button {
    color: #4658ff;
    margin-top: -50px;
    transition: 0.2s ease;
}

.slider-wrapper .swiper-slide-button:hover{
    color: #4658ff;
}

@media (max-width: 768px) {
    .slider-wrapper {
        margin: 0 10px 40px;
    }

    .slider-wrapper .swiper-slide-button:hover{
        display: none;
    }
}

/*------------------------------*/


.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.layer:hover{
    background: rgba(17, 0, 255, 0.315);
}

.layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}

.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}

.news{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.news-col {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: center;
    margin: 0 auto;
    width: 45%;
}

.news-col img{
    width: 300px;
    height: 200px;
    border-radius: 10px;
    max-width: 300px;
    margin-bottom: 20px;
    object-fit:contain;
    padding: 5px;
    cursor: pointer;
}

.news-col p{
    padding: 0;
}

.news-col h3{
    margin: 0;
    margin-bottom: 100px;
    text-align: center;
}

.comments{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}

.comments-col {
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: rgba(0, 0, 0, 0.26);
    padding: 25px;
    cursor: pointer;
    display: flex;
}


.comments-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}

.comments-col p{
    padding: 0;
}
.comments-col h3{
    margin-top: 15px;
    text-align: left;
}

.comments-col .fa {
    color: #1207acc2;
    box-shadow: 0 0 20px 0 rgba(18, 7, 172, 0.76);
}

/*-- Contato PET --*/

.contato{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(images/TodosPET.jpeg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.contato h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

@media(max-width: 700px){
    .contato h1{
        font-size: 24px;
    }
}

.sobre{
    width: 100%;
    text-align: center;
    padding: 30px 0;
} 

.sobre h4{
    font-size: 34px;
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

.icones i{
    font-size: 30px;
    margin: 0 10px;
    color: #1207acc2;
    transition: 0.5s ease-in-out;
}

.icones i:hover {
    color: #007bff;
    transition: 0.5s;
    margin: 0 10px;
    cursor: pointer;
}

.icones .fa{
    color: #1207acc2;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

/*------------------------------------*/
/*---------- Página - Sobre ----------*/
/*------------------------------------*/

.subheader{
    min-height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(images/petianos2.jpeg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.subheader h1{
    margin-top: 100px;
}

.aboutus{
    width: 80%;
    margin: auto;
    padding: 80px;
    bottom: 50px;
}

.aboutus-col{
    flex-basis: 48%;
    padding: 30px 2px;

}

.aboutus-col img{
    width: 100%
}

.aboutus-col h1{
    padding-top: 0;
}

.aboutus-col p{
    padding: 15px 0 25px;
}

.grey-btn{
    border: 1px solid rgb(112, 119, 145);
    background: transparent;
    color: rgb(112, 119, 145);
}

.grey-btn:hover{
    color: #fff;
}