@import url('/reset.css');

p {
    text-align: justify;
}

.logo {
    width: 300px;
}

.logo-2 {
    width: 200px;
}

.gradient-bg {
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
}
.skill-bar {
    height: 8px;
    border-radius: 50px;
    background-color: #e5e7eb;
    overflow: hidden;
}
.skill-progress {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transition: width 1s ease-in-out;
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 30px;
    height: calc(100% - 30px);
    width: 2px;
    background-color: #3b82f6;
}

#redes {
    color: cornflowerblue;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--primary-color);
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--box-shadow-sm);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: var(--dark-color);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--light-color);
    border-radius: 50%;
    text-align: center;
    font-size: 1.75rem;
    line-height: 60px;
    z-index: 100;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: var(--light-color);
    transform: scale(1.1);
}

#back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;

}

#back-to-top:hover {
    background-color: rgba(51, 51, 214, 0.856);
    color: var(--light-color);
    transform: translateY(-5px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

@media (max-width: 767px) {
  .teste {
    display: block;
    text-align: left;
    justify-content: flex-start;

  }
}

@media (max-width: 767px) {
  .teste-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}