* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
body {
      font-family: "Poppins", sans-serif;
      font-style: normal;
      background-color: #121212;
      color: #f0f0f0;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

nav a.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 40px;
}

.logo img {
    height: 50px;
}

.hero {
    position: relative;
    background-image: url('../img/fundo.jpeg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Cor preta com opacidade (controle do escurecimento) */
    z-index: 1; /* Mantém o fundo atrás do conteúdo */
}

.wpp-button {
    width: 500px;
    height: 50px;
    border-radius: 20px;
    font-size: 20px;
    cursor: pointer;
    background-color: #3ec94a;
    border: 2px solid rgb(29, 114, 17);
    color: white;
    display: flex;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background 0.3s ease;
    gap: 10px; /* Espaço entre o ícone e o texto */
}

.wpp-button i {
    font-size: 24px; /* Tamanho do ícone */
}

.wpp-button:hover {
    transform: scale(1.05);
    background-color: #3ec94a;
  }

.hero h1 {
    font-family: "Cinzel", serif;
    position: relative;
    text-shadow: 1px 1px 5px #000;
    color: #f5d76e;
    font-size: 70px;
    z-index: 2;
}
.hero p {
    position: relative;
    font-size: 25px;
    letter-spacing: 0.5px;
    z-index: 2;
}
.hero button {
    position: relative;
    z-index: 2; /* Garante que o texto fique acima do fundo */
}

.section {
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    text-align: center;
    color: #f5d76e;
    margin-bottom: 20px;
}

.red-banner {
background-color: red;
color: white;
text-align: center;
font-size: 20px;
font-weight: bold;
padding: 10px 0;
letter-spacing: 1px;
text-transform: uppercase;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Adiciona um leve sombreamento */
}

.section-title h2 {
font-size: 36px;
font-family: "Cinzel", serif;
color: #f5d76e; /* Dourado */
text-transform: uppercase;
margin-bottom: 20px;
}

.service-items {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
padding: 20px;
}

.service-item {
background: #2a2a2a;
border: 1px solid #444;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
padding: 30px;
text-align: center;
width: 350px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item i {
font-size: 40px;
color: #f5d76e;
margin-bottom: 10px;
}

.service-item button {
    border-radius: 20px;
    width: 100%;
    font-size: 12px;
    cursor: pointer;
    background-color: #3ec94a;
    border: 2px solid rgb(29, 114, 17);
    color: white;
    display: flex;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background 0.3s ease;
    gap: 10px;
}

.service-item button i {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 0px;
}

.service-item:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service-item h3 {
font-size: 20px;
color: #f5d76e;
margin-bottom: 10px;
}

.service-item p {
font-size: 14px;
color: #ccc;
}



.profile-divider {
    width: 2px;
    background-color: #f5d76e;
    height: auto;
    align-self: stretch;
}
  
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
  
.profile-title h1 {
    font-size: 36px;
    text-align: center;
    font-family: "Cinzel", serif;
    color: #f5d76e;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}
  
.profile-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #2c2c2c;
    border-radius: 10px;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
    color: #f5f5f5;
    width: 90%;
    max-width: 1000px;
  }
  

.profile-picture img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #444;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
}
  

.profile-info {
    text-align: left;
}
  
.profile-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff; /* Título em branco */
}
  
.profile-info p {
    font-size: 18px;
    color: #bbb; /* Texto em cinza claro */
}

.profile-info button {
    font-size: 1.5em;
    border-radius: 20px;
    border: 2px solid rgb(29, 114, 17);
    z-index: 2;
    width: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 700;
    margin-top: 20px;
    height: 50px;
    display: flex;
    transition: transform 0.3s ease, background 0.3s ease;
    background-color: #3ec94a;
    color: white;
    padding: 0 20px;
}

.profile-info button:hover {
    transform: scale(1.05);
    background-color: #3ec94a;
  }

.profile-info i {
    padding: 0 5px;
}


.mapa {
    padding: 50px 20px;
    background-color: #121212;
}
  
.mapa .section-title {
    text-align: center;
    margin-bottom: 30px;
}
  

.mapa-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 4px;
}
  
.mapa-container {
      width: 100%;
      max-width: 600px;
      height: 300px;
      margin-right: 20px;
}
  
.mapa-content {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      gap: 30px;
}


.contact-details {
    text-align: left; /* Ajustando a posição do texto */
    font-size: 18px;
    color: #333;
    max-width: 400px; /* Largura máxima para o conteúdo */
  }

.contact-details h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #f5d76e;
}

.contact-details p {
    margin: 5px 0;
    color: white;
}

.contact-details p i {
    margin-right: 10px;
    color: #f5d76e;
}




footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    text-align: center;
}


@media (max-width: 768px) {
    .hero h1 {
      font-size: 36px;
    }

    .wpp-button {
      width: 100%;
      font-size: 18px;
    }

    .profile-info button {
        font-size: 1em;
    }

    .service-item,
    .testimonial-item {
      max-width: 100%;
    }

    .profile-section {
        flex-direction: column;
    }

    .profile-picture img {
        width: 300px;
        height: 300px;
    }

    header {
      padding: 10px;
    }

    .logo img {
      height: 40px;
    }

    .mapa-content {
        flex-direction: column; /* Empilhando em telas menores */
        text-align: center;
    }

    .mapa-container {
        width: 100%; /* Mapa ocupa 100% da largura */
        height: 250px; /* Mapa menor em telas pequenas */
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
      font-size: 28px;
    }

    .wpp-button {
      width: 100%;
      font-size: 16px;
    }

    .section h2 {
      font-size: 28px;
    }

    .service-item h3,
    .testimonial-item h3 {
      font-size: 20px;
    }

    .profile-section {
        flex-direction: column;
    }

    .profile-picture img {
        width: 200px;
        height: 200px;
    }

    footer {
      font-size: 14px;
    }
}