body {
    background-color: #0a0a0a;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.typed-text-container {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: inline;
    line-height: 1;
}

.typed-cursor {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    display: inline;
    margin-left: 2px;
    line-height: 1;
    vertical-align: -10%;
}



#tecnologias i {
    font-size: 3rem;
    color: #ff4500;
    transition: transform 0.3s ease;
}

#tecnologias i:hover {
    transform: scale(1.3) rotate(360deg);
    animation: 0.5s infinite;
}

@media (max-width: 768px) {
    #tecnologias i {
        font-size: 1.4rem;
    }
}

.project-card {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.project-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 3em rgba(255, 69, 0, 0.8);
}

.project-card img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.project-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.project-card:hover .overlay {
    opacity: 1;
}

.project-card .overlay p {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .project-card .overlay p {
        font-size: 0.8rem;
    }
}

.project-card .overlay a {
    color: #ff4500;
    text-decoration: none;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.title {
    text-align: center;
    background: linear-gradient(135deg, #ff4500, #fff);
    background-clip: text;
    color: transparent;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-transform: uppercase;
}

.highlight,
#typing-text-webdesign {
    font-size: 2.4rem;
    background: linear-gradient(to right, #ff4500, #ff4500, #fff, #fff);
    background-clip: text;
    color: transparent;
}


.mockup {
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 10px 20px rgba(255, 255, 255, 0.8));
    transition: 0.4s linear;
}

.mockup:hover {
    transform: scale(1.05);
    filter: drop-shadow(0px 10px 20px rgba(255, 69, 0, 0.8));
}

@media (max-width: 768px) {
    .mockup {
        height: 90%;
        width: 90%;
    }

    .mockup-section {
        text-align: center;
    }

    #text {
        text-align: center;
        font-size: 16px;
    }

    ul {
        text-align: center;
    }

    ul li {
        font-size: 17px;
    }
}

.navbar {
    background-color: #0a0a0a;
    padding: 1rem 0;
}

.navbar-brand {
    color: #ff4500 !important;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
    font-size: 30px;
    transition: 0.3s ease;
}

.navbar-brand:hover {
    color: #fff !important;
    border-bottom: 2px solid #ff4500;
    padding-bottom: 5px;
}

.nav-link {
    color: #ff4500 !important;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.nav-link:hover {
    color: #fff !important;
    text-shadow: 0 0 5px #ff4500;
    border-bottom: 2px solid #ff4500;
}


.navbar-toggler {
    border-color: #fff;
    color: white;
}

.navbar-toggler-icon {
    background-color: transparent;
}

.alert {
    display: none;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-align: center;
}

@media (max-width: 768px) {
    .alert {
        display: block;
    }
}

footer {
    border-top: 1px solid #fff;
    background-color: #0a0a0a;
    color: white;
    padding: 40px 20px;
    margin-top: 40px;
}

footer .footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

footer .footer-links div {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

footer .footer-links h5 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ff4500;
}

footer .footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

footer .footer-links a:hover {
    text-decoration: underline;
    color: #ff4500;
}

footer .footer-social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

footer .footer-social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

footer .footer-social-icons a:hover {
    color: #ff4500;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 20px;
    color: #ddd;
}

@media (max-width: 768px) {
    footer .footer-links {
        flex-direction: column;
        align-items: center;
    }

    footer .footer-links div {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    footer .footer-links h5 {
        font-size: 1rem;
    }

    footer .footer-links a {
        font-size: 0.9rem;
    }

    footer .footer-social-icons a {
        font-size: 1.2rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }


}

#giacomellidevs {
    background: linear-gradient(135deg, #ff4500 30%, #0a0a0a 70%);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    #giacomellidevs {
        background: linear-gradient(to bottom, #ff4500 30%, #0a0a0a 70%);
        color: white;
        border-radius: 1rem;
        padding: 2rem;
        margin-top: 2rem;
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.6);
    }
}

#giacomellidevs h2 {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: #ff4500;
    margin-bottom: 1rem;
}

#giacomellidevs p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 1rem;
}

#giacomellidevs ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

#giacomellidevs ul li {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #fff;
}

#giacomellidevs ul li::before {
    list-style-type: disc;
    color: #ff4500;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

#giacomellidevs .giacomellidevs {
    font-size: 1.1rem;
    color: #fff;
    text-align: justify;
    font-weight: 400;
}

#giacomellidevs img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    #giacomellidevs {
        padding: 1.5rem;
        text-align: center;
    }

    #giacomellidevs h2 {
        font-size: 1.8rem;
    }

    #giacomellidevs p,
    #giacomellidevs ul {
        font-size: 1rem;
    }

    #giacomellidevs ul li {
        font-size: 1rem;
    }

    #giacomellidevs img {
        margin-top: 1.5rem;
        max-width: 90%;
    }
}

.fade {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade.show {
    opacity: 1;
}

#sharkwave {
    margin: 50px;
    width: auto;
    filter: drop-shadow(0px 10px 20px rgba(54, 105, 247, 0.8));
    height: auto;
    animation: trocar_cor_de_fundo 4.2s infinite;
}

@keyframes trocar_cor_de_fundo {
    0% {
        filter: drop-shadow(0px 10px 20px rgba(54, 105, 247, 0.8));

    }

    25% {
        filter: drop-shadow(0px 10px 20px rgba(63, 214, 63, 0.8));
    }

    50% {
        filter: drop-shadow(0px 10px 20px rgba(54, 105, 247, 0.8));
    }

    75% {
        filter: drop-shadow(0px 10px 20px rgba(63, 214, 63, 0.8));
    }

    100% {
        filter: drop-shadow(0px 10px 20px rgba(54, 105, 247, 0.8));
    }
}

#crabsmash {
    margin: 50px;
    width: auto;
    filter: drop-shadow(0px 10px 20px rgba(54, 105, 247, 0.8));
    height: auto;
    animation: trocar_cor_de_fundo_crabsmash 4.2s infinite;
}

@keyframes trocar_cor_de_fundo_crabsmash {
    0% {
        filter: drop-shadow(0px 10px 20px #ff4500);

    }

    25% {
        filter: drop-shadow(0px 10px 20px #008b);
    }

    50% {
        filter: drop-shadow(0px 10px 20px #ff4500);
    }
    
    75% {
        filter: drop-shadow(0px 10px 20px #008b);
    }
    
    100% {
        filter: drop-shadow(0px 10px 20px #ff4500);
    }

}
#about-me{
    text-align: center;
    font-size: 20px;
}

@media (max-width: 768px) {
    #sharkwave {
        height: auto;
        width: 350px;
        justify-content: center;
        align-items: center;
    }

    #crabsmash {
        height: auto;
        width: 350px;
        justify-content: center;
        align-items: center;
    }
    #about-me{
        font-size: 15px;
        text-align: center;
    }
}
#mockup_camisa, #mockup_camisa_crab, #mockup_camisa_turtle{
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 10px 20px rgba(255, 255, 255, 0.8));
    transition: 0.4s linear; 
}
#mockup_camisa:hover{
    transform: scale(1.05);
    filter: drop-shadow(0px 10px 20px rgba(30, 255, 0, 0.8));
}
#mockup_camisa_crab:hover{
    transform: scale(1.05);
    filter: drop-shadow(0px 10px 20px rgba(38, 41, 233, 0.8));
}
#mockup_camisa_turtle:hover{
    transform: scale(1.05);
    filter: drop-shadow(0px 10px 20px rgba(255, 0, 0, 0.8));
}


