/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
}

/* Navegação */
.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex; /* Alinha logo e links na mesma linha */
    justify-content: center; /* Centraliza todos os itens */
    align-items: center; /* Centraliza verticalmente */
}

.nav-logo {
    margin-right: 1rem; /* Um pequeno espaço entre a logotipo e os links */
}

.logo {
    height: 100px; /* Ajuste conforme necessário */
    width: auto; /* Mantém a proporção da imagem */
}

.nav-links {
    display: flex;
    gap: 2rem; /* Espaçamento entre os links */
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

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

/* Estilo para os links das redes sociais */
.social-link {
    font-size: 1.5rem; /* Tamanho do ícone */
    color: white; /* Cor do ícone */
}

.social-link:hover {
    color: #4CAF50; /* Cor ao passar o mouse */
}



/* Header */
.header {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/fundo-cadillac.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: -2;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.6)
    );
    z-index: -1;
}

.header-content {
    position: relative;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-content p {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 1rem;
    border: 2px solid transparent;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #45a049;
    transform: scale(1.05);
    border-color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button i {
    margin-right: 0.5rem;
}

/* Serviços */
.services {
    padding: 4rem 2rem;
    position: relative; /* Necessário se você quiser que a imagem de fundo se comporte corretamente */
    overflow: hidden; /* Para evitar que o conteúdo ultrapasse os limites do elemento */
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/plano-fundo-cinza.jpg'); /* Mesma imagem utilizada na .header */
    background-size: cover; /* A imagem cobre todo o elemento */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Não repetir a imagem */
    filter: brightness(0.7); /* Ajusta o brilho da imagem */
    z-index: -1; /* Coloca a imagem atrás do conteúdo */
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* Galeria */
.media-gallery {
    padding: 4rem 2rem;
    background-image: url('../images/fundo4.jpg'); /* Substitua pelo caminho da sua imagem */
    background-size: cover; /* A imagem cobre todo o elemento */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Não repete a imagem */
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 9/16;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz com que a imagem ou vídeo cubra todo o espaço do contêiner */
    transition: transform 0.3s;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Profissional */
.professional {
    padding: 4rem 2rem;
    background-image: url('../images/fundo3.jpg'); /* Substitua pelo caminho da sua imagem */
    background-size: cover; /* A imagem cobre todo o elemento */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Não repete a imagem */
}

.professional-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.professional img {
    width: 500px;
    height: 750px;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contato */
.contact {
    padding: 4rem 2rem;
    background-image: url('../images/plano-fundo-cinza.jpg'); /* Substitua pelo caminho da sua imagem */
    background-size: cover; /* A imagem cobre todo o elemento */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Não repete a imagem */
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info {
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.map {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 2rem;
    text-align: center;
}

.linkedin-link {
    text-decoration: none; /* Remove o sublinhado */
    color: inherit; /* Mantém a cor do texto padrão */
    transition: color 0.3s; /* Transição suave para a cor */
}

.linkedin-link:hover {
    color: #0077b5; /* Cor do LinkedIn ao passar o mouse */
}

/* Utilitários */
.benefits-list {
    list-style: none;
    padding: 1
}    

/* Media Queries para Responsividade */

/* Tablets e dispositivos menores */
@media screen and (max-width: 768px) {
    /* Navegação */
    .navigation {
        flex-direction: column;
        padding: 0.5rem;
    }

    .nav-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .logo {
        height: 80px;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-bottom: 1rem;
    }

    /* Header */
    .header-content h1 {
        font-size: 2rem;
    }

    .header-content p {
        font-size: 1rem;
    }

    /* Serviços */
    .service-card img {
        height: 300px;
    }

    /* Galeria */
    .gallery-container {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        aspect-ratio: 9/16;
    }

    /* Profissional */
    .professional img {
        width: 300px;
        height: 450px;
    }
}

/* Smartphones */
@media screen and (max-width: 480px) {
    /* Header */
    .header-content {
        padding: 1.5rem;
    }

    .header-content h1 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Serviços */
    .service-container {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1rem;
    }

    .service-card img {
        height: 250px;
    }

    /* Galeria */
    .gallery-item {
        min-height: 200px;
    }

    .gallery-overlay {
        padding: 0.5rem;
    }

    .gallery-overlay h3 {
        font-size: 1rem;
    }

    .gallery-overlay p {
        font-size: 0.9rem;
    }

    /* Profissional */
    .professional img {
        width: 250px;
        height: 375px;
    }

    /* Contato */
    .contact-container {
        grid-template-columns: 1fr;
    }

    .map {
        height: 300px;
    }

    /* Geral */
    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }
}

/* Ajustes para telas muito pequenas */
@media screen and (max-width: 320px) {
    .header-content h1 {
        font-size: 1.2rem;
    }

    .logo {
        height: 60px;
    }

    .professional img {
        width: 200px;
        height: 300px;
    }
}


/* Estilos para o menu hamburguer */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
    transition: 0.4s;
    display: block;
}

/* Classe para animar o hamburger quando ativo */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Media queries atualizadas */
@media screen and (max-width: 768px) {
    .navigation {
        padding: 1rem;
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        padding-top: 80px;
        transition: 0.3s ease-in-out;
        justify-content: flex-start;
        align-items: center;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 1.2rem;
    }

    .logo {
        height: 60px;
    }
}