/* Estilo Geral */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Banner */
/* Banner */
.banner {
    background-image: url('imagens/background-marinho-engenharia.webp'); /* Caminho da sua imagem */
    background-size: cover; /* Garante que a imagem cubra toda a área do banner */
    background-position: center; /* Centraliza a imagem */
    color: #fff;
    text-align: center;
    padding: 100px 20px; /* Ajusta o padding para que o conteúdo não fique muito próximo das bordas */
    min-height: 400px; /* Define uma altura mínima para o banner */
    max-height: 500px; /* Define uma altura máxima, se necessário */
    width: 100%;
    position: relative;
}

/* Conteúdo do Banner */
.banner-content h1 {
    font-size: 3em; /* Ajusta o tamanho da fonte para garantir boa visibilidade */
    margin-bottom: 20px;
    font-weight: bold;
}

/* Parágrafo do Banner */
.banner-content p {
    font-size: 1.5em; /* Ajusta o tamanho do texto */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsividade - Ajuste para telas menores */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2em; /* Ajusta o tamanho da fonte para telas menores */
    }

    .banner-content p {
        font-size: 1.2em; /* Ajusta o tamanho do parágrafo em dispositivos móveis */
    }
}


.whatsapp-btn {
    background-color: #25d366;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
}

.whatsapp-btn i {
    margin-right: 10px;
}

/* Seção de Contato */
.contato {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.contato-container h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.contato-container p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contato-container .whatsapp-btn {
    font-size: 20px;
    padding: 15px 30px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-section {
    flex: 1;
    margin: 10px;
    padding: 10px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p, .footer-section ul {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4CAF50;
}

.social-links {
    list-style: none;
    padding: 0;
}

.social-links li {
    display: inline-block;
    margin-right: 10px;
}

.social-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

.footer-bottom {
    background-color: #222;
    padding: 10px;
    font-size: 12px;
}
/* Estilo Geral */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Navbar */
/* Navbar */
.navbar {
    background-color: #333; /* Cor de fundo da navbar */
    padding: 15px;
    position: fixed; /* Para deixar a navbar fixa no topo */
    width: 100%;
    top: 0;
    z-index: 9999;
}

.navbar-container {
    display: flex;
    justify-content: space-between; /* Isso garante que o logo e o menu estejam nas extremidades */
    align-items: center;
}

.logo img {
    width: 150px; /* Tamanho fixo para o logo */
}

/* Menu hambúrguer */
.menu-icon {
    display: none; /* Inicialmente oculto */
    cursor: pointer;
    order: 2; /* Garante que o ícone ficará à direita */
}

.menu-icon i {
    font-size: 24px; /* Ajuste o tamanho do ícone do hambúrguer */
    color: white;
}

/* Itens do menu */
.nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    order: 1; /* Garantir que o menu esteja à esquerda */
}

.nav-item {
    margin-left: 20px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-link:hover {
    text-decoration: underline;
}

/* Mostrar o menu hambúrguer e mudar a disposição no mobile */
@media (max-width: 768px) {
    .menu-icon {
        display: block; /* Exibir ícone hambúrguer */
    }

    .nav-list {
        position: absolute;
        top: 60px; /* Abaixo da navbar */
        left: 0;
        right: 0;
        background-color: #333;
        flex-direction: column; /* Colocar os itens do menu em coluna */
        display: none; /* Inicialmente oculto */
        align-items: center;
        padding: 0;
        margin: 0;
        transition: transform 0.3s ease; /* Transição suave ao abrir o menu */
        transform: translateY(-100%); /* Iniciar o menu fora da tela */
    }

    .nav-item {
        margin: 10px 0; /* Espaçamento entre os itens */
    }

    .nav-list.active {
        display: flex; /* Mostrar o menu quando estiver ativo */
        transform: translateY(0); /* Menu se move para baixo quando ativado */
    }
}

/* Responsividade para o logo */
@media (max-width: 768px) {
    .logo img {
        width: 120px; /* Ajuste do tamanho do logo em telas menores */
    }
}




/* Seção sobre a empresa */
.about-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.about-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-text h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.btn-request {
    display: inline-block;
    padding: 12px 30px;
    background-color: #FFA500;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.btn-request:hover {
    background-color: #555;
}

/* Estilo da imagem */
.about-image {
    flex: 1;
    max-width: 500px;
    margin-top: 30px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .about-section .container {
        flex-direction: column;
        align-items: center;
    }

    .about-text {
        padding-right: 0;
        text-align: center;
    }

    .about-image {
        margin-top: 20px;
        max-width: 100%;
    }
}
/* Seção da Timeline */
.timeline-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.timeline-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

/* Container da Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item .timeline-icon {
    font-size: 30px;
    color: #333;
    background-color: #fff;
    border-radius: 50%;
    border: 3px solid #333;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
    margin-right: 20px;
}

.timeline-item .timeline-content {
    flex: 1;
    padding-left: 20px;
    text-align: left;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    background-color: #f3f3f3;
}

.timeline-item .timeline-content h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.timeline-item .timeline-content p {
    font-size: 16px;
    color: #555;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: #333;
    z-index: 0;
}

/* Estilo para itens ímpares e pares (alternando cores) */
.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 50px;
}

/* Responsividade */
@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        align-items: center;
    }

    .timeline-item .timeline-content {
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }

    .timeline-item::before {
        display: none;
    }
}
/* Estilos gerais para a seção de serviços */
.services-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.services-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

/* Cards de serviços */
.service-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-top: 15px;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.service-card .btn {
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    padding: 10px 20px;
    text-decoration: none;
}

.service-card .btn:hover {
    background-color: #0056b3;
}

/* Carrossel */
.carousel-inner {
    margin-top: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #007bff;
}

/* Adiciona uma borda nas setas */
.carousel-control-prev, 
.carousel-control-next {
    width: 5%;
}
.card {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    min-height: 400px; /* Altura mínima para os cards */
}
.card img {
    max-height: 200px;
    object-fit: cover;
}
.card-body {
    flex-grow: 1;
}
.btn-primary {
    background-color: #007bff;
    color: white;
    text-transform: uppercase;
}
.btn-primary:hover {
    background-color: #0056b3;
}
.services-section {
    padding: 60px 0;
}
.services-section .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.services-section .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-section .card-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;  /* Limita o número de linhas do texto */
    -webkit-box-orient: vertical;
}
.social-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.social-icons a {
    display: block;
    margin-bottom: 10px;
    font-size: 30px;
    color: #fff;
    background-color: #25D366; /* Cor do WhatsApp */
    border-radius: 50%; /* Torna o ícone redondo */
    width: 60px; /* Largura fixa */
    height: 60px; /* Altura fixa */
    line-height: 60px; /* Centraliza o ícone */
    text-align: center;
    transition: background-color 0.3s, color 0.3s; /* Adicionando transição para a cor */
    box-sizing: border-box; /* Para garantir que o padding e borda sejam levados em conta no tamanho */
}

.whatsapp-icon {
    background-color: #25D366;
}

.whatsapp-icon:hover {
    background-color: #128C7E;
}

.instagram-icon {
    background-color: #FFA500; /* Cor do Instagram */
    color: #fff; /* Garante que o ícone esteja branco */
}

.instagram-icon:hover {
    background-color: #C13584;
    color: #fff; /* Cor do ícone permanece branca no hover */
}

/* Ícones maiores ao passar o mouse */
.social-icons a:hover {
    font-size: 35px; /* Aumenta o tamanho ao passar o mouse */
}

.social-icons a i {
    vertical-align: middle; /* Alinha verticalmente o ícone */
    font-size: 1.5em; /* Ajusta o tamanho do ícone */
}

/* Estilo para a seção de Avaliações */
#testimonials {
    background-color: #f9f9f9;
    padding: 50px 0;
}

#testimonials h2 {
    font-size: 2.5em;
    color: #FFA500;
    margin-bottom: 20px;
    text-align: center;
}

#testimonials .p-heading {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 30px;
}

#testimonials .swiper-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
}

#testimonials .swiper-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#testimonials .swiper-slide {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
    padding: 20px;
}

.card:hover {
    transform: translateY(-10px);
}

.card-image {
    width: 100px; /* Tamanho da imagem */
    height: 100px;
    border-radius: 50%; /* Torna a imagem redonda */
    object-fit: cover;
    border: 3px solid #FFA500;
    margin-bottom: 15px;
}

.card-body {
    padding: 10px 0;
}

.testimonial-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 1.2em;
    font-weight: bold;
    color: #FFA500;
}

/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #FFA500;
    font-size: 1.5em;
    z-index: 10;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #d11e49;
}
/* Estilo da seção de contato */
.contact-section {
    background-color: #f4f4f4;
    padding: 50px 0;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007BFF;
    outline: none;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.contact-form textarea {
    resize: vertical;
}

/* Seção de Equipe */
.team-section {
    padding: 60px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.team-section .section-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.team-section .section-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Container dos Membros da Equipe */
.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Estilo do Membro da Equipe */
.team-member {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Imagem do Membro */
.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Informações do Membro */
.member-info {
    font-family: 'Montserrat', sans-serif;
}

.member-name {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.member-role {
    font-size: 18px;
    color: #FFA500;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-description {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 768px) {
    .team-section .section-title {
        font-size: 28px;
    }

    .team-section .section-description {
        font-size: 16px;
    }

    .team-members {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .team-section .section-title {
        font-size: 24px;
    }

    .team-section .section-description {
        font-size: 14px;
    }

    .team-members {
        grid-template-columns: 1fr;
    }
}

/* Reset */
body, ul, li, a, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 1rem 2rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-img {
    width: 40px;
    height: 40px;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FFA500;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: 0.3s;
}

/* Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #333;
        width: 100%;
        display: none;
    }

    .nav-links a {
        padding: 1rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }
}
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.footer-section p,
.footer-section ul {
    font-size: 0.95em;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #ffcc00;
}

.footer-section .social-links {
    display: flex;
    gap: 15px;
}

.footer-section .social-links a {
    color: #fff;
    font-size: 20px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
}

.footer-bottom a {
    color: #ffcc00;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        width: 100%;
        text-align: center;
    }
}