/* Reset de margens e paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo do site */
body {
    font-family: 'Arial', 'Verdana', 'Helvetica', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Cabeçalho */
header {
    color: #333;
    background-color: #FFF;
    padding: 10px 20px;
}

/* Logo */
header .logo {
    width: 150px;
    height: 100px;
    background-color: #FFF;
    padding-left: 10px;
    margin-top: 5px;
}

/* Menu */
header nav ul {
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    padding-left: 0;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

header nav ul li a:hover {
    background-color: #046063;
    color: white;
}

/* Estilos responsivos para dispositivos móveis */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;  /* Alinha os itens em uma coluna */
        align-items: center;    /* Centraliza os itens */
        width: 100%;            /* Largura total */
        background-color: #FFF; /* Fundo branco para o menu */
        padding: 10px 0;        /* Padding vertical */
    }

    header nav ul li {
        margin: 10px 0;         /* Espaçamento entre os itens */
        width: 100%;            /* Largura de cada item 100% */
        text-align: center;     /* Alinha o texto ao centro */
    }

    header nav ul li a {
        font-size: 20px;        /* Aumenta o tamanho da fonte */
        padding: 15px;          /* Aumenta o padding */
        display: block;         /* Faz com que o link ocupe toda a largura */
        background-color: #e6f0f3; /* Cor de fundo do item */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
        border-radius: 10px;    /* Bordas arredondadas */
        transition: background-color 0.3s ease-in-out;
    }

    /* Efeito de hover */
    header nav ul li a:hover {
        background-color: #046063;
        color: white;
    }
}

/* Hero Section */
.hero {
    color: white;
    text-align: center;
    padding-top: 130px;
    padding-right: 0;
    padding-bottom: 130px;
    padding-left: 0;
}

.hero .background-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz o vídeo cobrir toda a área da section */
    z-index: -1; /* Garante que o vídeo fique atrás do conteúdo */
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero .btn {
    background-color: #046063;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
}

.hero .btn:hover {
    background-color: #069B9F;
}

/* Serviços */
.services {
    background-color: white;
    padding: 60px 0;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.service-card {
    background-color: #e6f0f3;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    display: inline-block;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 24px;
    color: #005B6D;
}

.service-card p {
    font-size: 16px;
    color: #555;
}

/* Rodapé */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #CCC;
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
}

footer a:hover {
    color: #999;
}

/* Estilo básico para o Accordion */
.accordion {
    margin-top: 20px;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-header {
    background-color: #202022;
    color: white;
    text-align: left;
    padding: 15px;
    width: 100%;

    border: none;
    outline: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #003f47;
}

.accordion-content {
    display: none;
    background-color: #f1f1f1;
    padding: 10px 15px;
    font-size: 16px;
    margin-top: 5px;
}

/* Estilo do botão do WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFF; /* Cor do botão */
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.whatsapp-btn img {
    width: 40px; /* Tamanho do ícone */
    height: 40px;
}

/* Seção de Destaques */
.cabecalho {
	background-color: #1C2835;
	color: #fff;
	text-align: center;
	padding-top: 70px;
	padding-right: 10px;
	padding-bottom: 70px;
	padding-left: 10px;
}

.cabecalho h1 {
	margin: 0;
    font-size: 2.5rem;
}

.highlights {
	display: flex;
	justify-content: space-around;
	padding-top: 70px;
	padding-right: 0;
	padding-bottom: 90px;
	padding-left: 0;
}

.highlight {
    text-align: center;
}

.highlight img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

.highlight h2 {
    font-size: 1.1rem;
}

/* Artigos */
.articles {
    padding: 20px;
}

.article {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.article img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 20px;
}

.article h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #f4a261;
}

.article p {
	width: 60%;
	margin-top: 20px;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 0;
}

.article .author {
    font-size: 0.9rem;
    color: #666;
}

.article h3 a {
	color: #f4a261;
	text-decoration: none;
}

.article a:hover {
    color: #999;
}

/* Contato */
.contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	background-color: #F9F9F9;
	margin-top: 100px;
	margin-bottom: 100px;
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 20px;
	padding-left: 0;
}

.location {
    width: 45%;
    background: #fff;
    padding: 20px;
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.location h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #f4a261;
}

.location p {
    margin: 5px 0;
}

.equipe {
	padding-top: 50px;
	padding-bottom: 50px;
}

.titler h1 {
	text-align: center;
	margin-top: 25px;
	color: #003f47;
	margin-bottom: 15px;
}

.team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.team-member {
    background-color: #fff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 15px;
}

.team-info h2 {
	font-size: 1.5em;
	margin-bottom: 5px;
	color: #003f47;
}

.team-info h3 {
	font-size: 1em;
	margin-bottom: 10px;
	color: #797C8C;
}

.team-info p {
    font-size: 0.9em;
    line-height: 1.5;
    color: #555;
}

/* Responsive Styles */
@media screen and (max-width: 600px) {
    .team-section {
		padding: 10px;
		grid-template-columns: 1fr;
    }

    .team-photo {
		height: 200px;
    }
}

.Contentservice {
	max-width: 1200px;
	padding: 20px;
	background-color: #F4F4F4;
	width: 100%;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
}

.Contentservice .intro {
    text-align: center;
    padding: 20px;
}

.Contentservice .intro h2 {
	font-size: 2em;
	margin-bottom: 10px;
	color: #046063;
}

.Contentservice .intro p {
    font-size: 1.1em;
    color: #555;
}

.Contentservice .services {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	background-color: #F4F4F4;
}

.Contentservice .service {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.Contentservice .service:hover {
    transform: translateY(-5px);
}

.Contentservice .service h3 {
    margin-bottom: 10px;
    color: #5025d1;
}

.Contentservice .service p {
    font-size: 0.9em;
    color: #555;
}

.headerbanner {
	background-color: #243242;
	color: #fff;
	text-align: center;
	margin-bottom: 20px;
	padding-top: 50px;
	padding-right: 20px;
	padding-bottom: 50px;
	padding-left: 20px;
}

.headerbanner h1 {
    font-size: 2.5em;
    margin: 0;
}

.headerbanner p {
    margin-top: 10px;
    font-size: 1.2em;
}

.containersobre {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.about {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.about img {
    flex: 1;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 2;
}

.about-text h2 {
	color: #046063;
	font-size: 2em;
	margin-bottom: 10px;
}

.about-text p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.values {
	background: #243242;
	color: #fff;
	padding: 20px;
	border-radius: 8px;
	margin-top: 40px;
	margin-right: 0;
	margin-bottom: 40px;
	margin-left: 0;
}

.values h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.values ul {
    list-style: none;
    padding: 0;
}

.values ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.values ul li::before {
    content: "✔";
    color: #3ab54a;
    font-weight: bold;
    margin-right: 10px;
}