/* Importando a nova fonte */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* Fonte moderna para o corpo */
    line-height: 1.6;
    color: #444;
    background: linear-gradient(135deg, #FF7F50, #1E90FF);
}

header {
    background: rgba(51, 51, 51, 0.9);
    color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700; /* Peso mais forte para destacar */
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: #FF7F50; /* Altera a cor ao passar o mouse */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

#home {
    background: url('background.jpg') no-repeat center center/cover;
    height: 35vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    margin-top: 80px; /* Ajuste para evitar sobreposição com o header */
}

.intro {
    text-align: center;
    margin-top: 80px;
}

.intro h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    color: #d8d7d7;
}

.intro p {
    font-size: 1.2rem;
    color: #d8d7d7;
}

section {
    padding: 60px 20px;
}

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

h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #d8d7d7;
}

.portfolio-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.portfolio-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-item h3 {
    margin: 15px;
    font-size: 1.4rem;
    color: #333;
}

.portfolio-item p {
    margin: 15px;
    font-size: 1rem;
    color: #777;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f5f5f5; /* Melhor contraste */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin: 12px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
}

form button {
    padding: 12px 25px;
    background: #4295e9;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background: #037df7;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 25px 0;
    font-family: 'Poppins', sans-serif; /* Fonte consistente */
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.skills {
    margin-top: 50px;
}

.column {
    width: 50%;
    float: left;
}

.column h4 {
    margin-bottom: 12px;
}

.column ul {
    list-style-type: none;
}

.column ul li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .portfolio-items {
        flex-direction: column;
    }

    .portfolio-item {
        width: 90%;
    }

    .column {
        width: 100%; /* Ajuste de responsividade para colunas */
        float: none;
    }
}

html {
    scroll-behavior: smooth;
}