.hero-image {
    min-height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-overlay {
    background-color: #000c;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 125px;
}

.hero-overlay .card {
    background-color: var(--black);
    border-radius: 18px;
    border: 2px var(--gray) solid;
    padding: 40px 20px 20px;

    max-width: 650px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-overlay .image-perfil {
    position: absolute;
    border-radius: 50%;
    align-self: center;
    border: 5px var(--black) solid;

    width: 150px;
    margin-top: -130px;
}

.hero-overlay .hero-main-title {
    color: var(--white);
    transition: 0.15s ease-in;
    margin-top: 5%;
}

.hero-overlay .paragraph {
    color: var(--lightGray);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    margin: 1px 0;
}

.hero-overlay .name {
    color: var(--orange);
}

.hero-overlay .social-menu {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay .social-menu ul {
    display: flex;
    list-style: none;
}

.hero-overlay .social-menu ul li {
    margin: 0 5px;
}

.hero-overlay .social-menu ul li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 25%;
    background-color: var(--black);
    text-decoration: none;
    transition: background-color 0.4s ease, scale 0.4s ease;
}

.hero-overlay .social-menu ul li a .fa,
.hero-overlay .social-menu ul li a .fa-brands {
    color: var(--white);
    font-size: 25px;
}

.hero-overlay .social-menu ul li a:hover {
    scale: 1.1;
}

.section-2 {
    background-color: var(--white);
    position: relative;
}

.section-2 .container {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 15%;
    padding-right: 15%;
}

.section-2 .container h1 {
    font-size: 38px;
    font-weight: 700;
}

.section-2 .container p {
    font-size: 16px;
    font-weight: 400;
}

.cards-techs {
    margin-top: 15px;
    display: flex;
    flex-flow: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.cards-techs #no-techs {
    display: none;
    color: var(--black);
}

.cards-techs .card-tech {
    background-color: var(--lightGray);
    width: 19vh;
    height: 19vh;
    border-radius: 8px;
    padding: 0.75rem;
    gap: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.cards-techs .card-tech:hover {
    transform: scale(1.1);
}

.cards-techs .card-tech img {
    width: 80%;
}