.about {
    padding: 100px 0;
    font-family: sans-serif;
    background-color: #0D1117;
    color: #fff;
}

.max-width {
    max-width: 1300px;
    padding: 0 45px;
    margin: auto;
}

.sobre-mim {
    text-align: center;
    position: relative;
    font-size: 40px;
    font-weight: bold;
    padding-bottom: 10px;
    color: rgb(0, 228, 155);
}

.abaixo-sobre-mim {
    font-weight: normal;
    text-align: center;
    position: relative;
    margin-bottom: 60px;
    padding-bottom: 20px;
    color: rgb(206, 206, 206);
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.card {
    padding: 50px 25px;
    width: calc(26% - 20px);
    border-radius: 6px;
    background: #161B22;
    text-align: center;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card:hover {
    background-color: #eeeeee;
}

.box2 {
    transition: all 0.3s ease;
}

.card:hover .box2 {
    transform: scale(1.07);
}

.box2 i {
    font-size: 50px;
    color: #fff;
    transition: color 0.3s ease;
}

.card:hover .box2 i {
    color: #000000;
}

.card:hover .box2 h3 {
    color: #000000;
}

.card:hover .box2 {
    color: #000000;
}

.box2 h3 {
    font-size: 25px;
    padding: 10px 0 7px;
}

.box2:hover {
    color: #000000;
}

.tcc__information:hover {
    color: #11c770;
    transition: all 0.3s ease;
}

.tcc__information {
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 1190px) {
    .max-width {
        padding: 0 25px;
    }

    .card {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1190px) {
    .card {
        width: 100%
    }
}

.projects {
    background-color: #0D1117;
    width: 100%;
    padding: 100px 0;
    color: #fff;
}

.projects .max-width {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 45px;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: rgb(0, 228, 155);
    padding-bottom: 10px;
}

.section-subtitle {
    font-weight: normal;
    text-align: center;
    color: rgb(206, 206, 206);
    margin-bottom: 60px;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.project-card {
    background: #161B22;
    border-radius: 6px;
    padding: 50px 25px;
    width: calc(33.333% - 20px);
    min-width: 320px;

    text-align: center;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.project-card:hover {
    background-color: #eeeeee;
    transform: scale(1.07);
}

.project-card i {
    font-size: 50px;
    color: #fff;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.project-card:hover i {
    color: #000;
}

.project-card h3 {
    font-size: 25px;
    padding: 10px 0 7px;
    color: #fff;
    transition: color 0.3s ease;
}

.project-card:hover h3 {
    color: #000;
}

.project-card p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.project-card:hover p {
    color: #000;
}

.project-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #4CAF50;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: #45a049;
    transform: scale(1.05);
}

.project-link.disabled {
    background: gray;
    pointer-events: none;
    opacity: 0.5;
}


@media screen and (max-width: 1190px) {
    .project-card {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .project-card {
        width: 100%;
    }
}

.contact {
    background-color: #0D1117;
    width: 100%;
    padding: 0 0 80px;
    color: #fff;
    font-family: sans-serif;
    margin-top: -100px;
}

.contact-container {
    background: #161B22;
    border-radius: 10px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    background: #0D1117;
    border: 1px solid #2e353d;
    border-radius: 6px;
    padding: 12px 15px;
    color: #fff;
    font-size: 1em;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgb(0, 228, 155);
    box-shadow: 0 0 5px rgb(0, 228, 155);
}

.contact-form button {
    background-color: rgb(0, 228, 155);
    color: #0D1117;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #00b67a;
    transform: scale(1.05);
}

.button-group button {
    min-width: 250px;
    max-width: 300px;
    width: 100%;
}