/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: linear-gradient(25deg, #4d0a59, #000);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    text-shadow: #222 3px 3px 5px;
    height: 100%;
    min-height: 720px;
}

header h4 {
    width: 100%;
    max-width: 500px;
    margin: 30px auto 0 auto;
    background-color: darkorange;
    color: #fff;
    padding: 10px 0;
    text-shadow: #222 3px 3px 5px;
    border-radius: 10px;
    font-size: 1.5em;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

nav .logo img {
    width: 100%;
    max-width: 180px;
    margin-top: 15px;
    margin-left: 15px;
    transition: 0.5s ease;
    filter: contrast(110%);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #9a0eb3;
}

.hero img {
    width: 250px;
    height: 250px;
    border-radius: 100%;
    border: 10px solid #360155;
    margin: 25px 0;
}

.hero h2 {
    font-size: 2.4em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
}

#about, #skills, #contact {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
    margin: 20px 0;
    color: #4d0a59;
}

h2 {
    font-size: 2.2em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.skills-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.skill {
    background-color: #eee;
    padding: 20px;
    width: 200px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.skill:hover {
    transform: scale(1.05);
}

.skill i {
    font-size: 3em;
    margin-bottom: 10px;
    color: #4b0082;
}

.skill h3 {
    font-size: 1.2em;
    color: #333;
}


#success-projects {
    background: linear-gradient(45deg, #4d0a59, #000);/* Gradiente lilás */
    padding: 50px 20px;
    color: white;
    text-align: center;
}

#success-projects h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#success-projects p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f3f3f3;
}

.projects-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.project {
    background-color: rgba(255, 255, 255, 0.1); /* Fundo translúcido */
    border-radius: 10px;
    padding: 20px;
    width: 30%;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.project:hover {
    transform: translateY(-10px); /* Efeito de elevação */
    opacity: 0.7;
}

.project-img {
    width: 100%;
    height: auto;
    border: 4px solid #f3f3f3;
}

.project h3 {
    width: 100%;
    font-size: 1.2em;
    margin-bottom: 15px;
    background-color: #e0d0f7;
    padding: 10px 5px;
    margin-bottom: 20px;
    color: #360155;
}

.project p {
    font-size: 1em;
    line-height: 1.6;
    color: #e0d0f7;
    text-align: justify;
}

/* Resposta para telas menores */
@media (max-width: 768px) {
    .projects-list {
        flex-direction: column;
        align-items: center;
    }

    .project {
        width: 90%;
    }
}

#why-choose-us {
    color: #4d0a59;
    padding: 60px 0;
}

#why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#why-choose-us p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.benefit {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.benefit:hover {
    transform: translateY(-10px);
}

.benefit i {
    font-size: 3rem;
    color: #8b5fbf;
    margin-bottom: 20px;
}

.benefit h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit p {
    font-size: 1rem;
    line-height: 1.5;
}

#contact ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 20px;
}

#contact ul li {
    margin: 0 15px;
}

#contact ul li a {
    font-size: 2em;
    color: #4b0082;
    transition: color 0.3s ease;
}

#contact ul li a:hover {
    color: #8b5fbf;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
