/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

header {
    background: #222;
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header .profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 1px solid #0056b3;
}

nav {
    background: #0056b3;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    font-weight: bold;
    transition: background 0.3s;
}

nav a:hover {
    background: #003f7f;
    border-radius: 5px;
}

main {
    width: 99%;
    margin: auto;
    padding: 20px;
}

section {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #222;
    margin-bottom: 10px;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.skills-list li {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #0056b3;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.project {
    background: #d0e4ff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.project h3 {
    color: #003f7f;
}

.btn {
    display: inline-block;
    background: #0056b3;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #003f7f;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}
/* Estilos para o formulário de contato */
#contact {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-size: 1.1rem;
    color: #222;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0056b3;
}

.contact-form button {
    background: #0056b3;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #003f7f;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}
.floating-icons {
    position: sticky;
    top: 20px; /* Fixa no topo enquanto rola */
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-icons a img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-icons a img:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
}
.EtapasProcesso img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px; /* Opcional: arredonda os cantos */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Opcional: sombra leve */
}
.benefits {
    background: #ffffff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.benefits h2 {
    color: #0056b3;
    margin-bottom: 15px;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
    text-align: center;
}
#projetos {
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#projetos h2 {
    color: #0056b3;
    margin-bottom: 15px;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
}

.projetos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.projeto {
    background: #f0f7ff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
}

.projeto img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.projeto h3 {
    color: #003f7f;
    margin-bottom: 10px;
}

.projeto p {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
}

.projeto .btn {
    display: inline-block;
    background: #0056b3;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.projeto .btn:hover {
    background: #003f7f;
}

.benefits ul {
    list-style: none;
    padding: 0;
}

.benefits li {
    padding: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefits li::before {
    content: ">>";
    color: #28a745;
    font-size: 18px;
}

.about-project {
    background: #ffffff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-project h2 {
    color: #0056b3;
    margin-bottom: 15px;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
    text-align: center;
}

.about-project p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    margin-bottom: 10px;
}
