* {
    box-sizing: border-box;
    margin: 5px;
    padding: 5px;
}

body {
    background-image: url('floresta.png'); /* Substitua pelo caminho da sua imagem */
    background-size: cover;         /* Ajusta a imagem ao tamanho da tela */
    background-position: center;    /* Centraliza a imagem */
    background-repeat: no-repeat;   /* Não repete a imagem */
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    padding: 20px;
    overflow-x: hidden; /* Impede rolagem lateral caso o efeito parallax estique a imagem */
}
/* Parallax suave com rolagem */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    margin-right: 20px;
    margin-left: 20px;
}

.card {

    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    width: 580px;
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
    backdrop-filter: blur(10px); /* Aplica o efeito de blur */
}


.card h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.card h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.card h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.card h4 {
    text-align: center;
    font-size: 37px;
    margin-top: 40px;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.card p {
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.card rb {
    margin: 30px 7px;
    font-size: 18px;
    color: #ffffff;
}

.card h7 {
    text-align: center;
    margin: 20px;
    font-size: 16px;
    color: #ffffffa9;
}

.card h8 {
    text-align: center;
    font-size: 16px;
    color: #ffffff94;
}

.contact-icons p {
    font-size: 18px;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.grid {
    display: grid;
    grid-template-columns: 2fr 4fr;
    gap: 2px;

}

.item {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 8px; /* <- este valor deixa as pontas arredondadas */
    text-align: center;
    font-size: 17px;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.services table {
    width: 100%;
    border-collapse: collapse;
    font-size: 18px;
    word-wrap: break-word;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.services th,
.services td {
    padding: 13px;
    text-align: left;
    vertical-align: top;
    overflow-wrap: break-word;
}

.services th {
    border-radius: 0px;
    background-color: rgba(255, 255, 255, 0.2); /* Fundo semi-transparente */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

@media (max-width: 768px) {
    .card {
        width: 100%;
    }
}

.results {
    text-align: center;
}

.result-box {
    background-color: rgba(255, 255, 255, 0.137); /* Fundo semi-transparente */
    border-radius: 0px;
    padding: 30px 20px;
    margin: 25px 50px;
}

.result-title {
    font-size: 28px;
    font-weight: 888;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.result-title:hover {
    color: #7aeeaa;
}

.result-sub {
    font-size: 18px;
    margin-top: 5px;
}

.result-detail {
    display: flex;
    justify-content: center;
    gap: 100px;
    font-size: 7px;
    margin: 15px;
    flex-wrap: wrap;
}

.result-desc {
    font-size: 14px;
    color: #ffffff33;
    margin-top: 20px;
    padding: 0 40px;
}

.parceria {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: 22px;
}

.botao-contato {
    text-align: center;
    font-weight: 700;
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    font-size: 16px;
    color: white;
    background-color: #68bd73;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.botao-contato:hover {
    text-align: center;
    background-color: #3fb68e;
}

.botao-container {
    text-align: center;
}

footer p {
    font-size: 12px;
    color: #e6e6e6;
    text-align: center;
}

.perfil {
    text-align: center;
    margin-bottom: 0px;
}

.foto-perfil {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgb(255, 227, 185);
    margin-bottom: 15px;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.185); /* Preto com 40% de opacidade */
    z-index: -1;
}

.relato {
    font-style: italic;
    margin-top: 20px;
  }
  
.assinatura {
    text-align: right;
    font-size: 0.9em;
    margin-top: 5px;
    color: #cacaca;
  }
  
  .hp {
    text-align: right;
    font-size: 20px;
    color: rgb(76, 0, 255);
    font-weight: bold;
  }
  