/* Geral */
body {
    font-family: 'Electrolize', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #BFBFBF, #8C8C8C, #595959, #404040, #262626);
    color: #ddd;
    overflow-x: hidden;
}

h1, h2, h3, p {
    margin: 0;
    padding: 0;
    font-weight: 1000;
    font-size: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(90deg, #595959, #404040);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}



header .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

header .hamburger span {
    height: 3px;
    width: 30px;
    background: #ddd;
    margin: 5px 0;
    transition: 0.4s;
}

header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

header .hamburger.active span:nth-child(2) {
    opacity: 0;
}

header .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}


.upi-logos {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.upi-logos .logo {
    width: 50px;
    height: auto;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}



.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
}

.logo h1 {
    font-size: 26px;
    margin: 0;
}

/* Botões de Suporte e Contato */
.buttons {
    display: flex;
    justify-content: center; 
    align-items: center;     
    gap: 15px;
    margin-top: 20px;
}

.support-btn, .contact-btn {
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.support-btn {
    background: linear-gradient(90deg, #8C8C8C, #595959);
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.support-btn:hover {
    background: linear-gradient(90deg, #595959, #404040);
    color: #fff;
}

.contact-btn {
    background: linear-gradient(90deg, #595959, #404040);
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: linear-gradient(90deg, #404040, #262626);
    color: #fff;
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 80%;
}

.close-btn {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 70px;
    cursor: pointer;
    color: #000000;
}

.close-btn:hover {
    color: #ff0000;
}

/* Slider de projetos */
.slider {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(25, 25, 25, 0.5);
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 100%;
    flex-shrink: 0;
    border-radius: 15px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    cursor: pointer;
    z-index: 2;
    color: #fff;
    background: linear-gradient(145deg, #555, #222);
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.prev:hover, .next:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Menu Hamburguer */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    height: 3px;
    width: 30px;
    background: #ddd;
    margin: 5px 0;
    transition: 0.4s;
}

header nav {
    display: flex;
    align-items: center;
}

header nav .nav-links {
    display: flex;
    align-items: center;
}

header .nav-links {
    display: flex;
    list-style: none;
    margin-left: auto;
}

header .nav-links li {
    margin-left: 20px;
}

header .nav-links li a {
    text-decoration: none;
    color: #ddd;
    font-size: 20px;
    padding: 20px;
    display: block;
    transition: color 0.3s;
}

header .nav-links li a:hover {
    color: #00ffd5;
}

@media (max-width: 768px) {
    header .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        height: 100vh;
        width: 200px;
        background: #1a1a1a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s;
    }

    header .nav-links.active {
        right: 0;
    }

    header .hamburger {
        display: flex;
    }
}

/* Home Section */
.home-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(180deg, #BFBFBF, #8C8C8C, #595959);
    color: #fff;
}

.home-section h2 {
    font-size: 27px;
    margin-bottom: 20px;
    color: #fff;
}

#home-txt {
    padding: 20px;
    margin: 20px;
    max-width: 600px;
    text-align: center;
}

.profile-image {
    width: 200px;
    height: 200px;
    margin-top: 70px;
    border-radius: 50%;
    background-color: #222;
    background-size: cover;
    box-shadow: 0 0 20px 10px #00ffe5;
    animation: glow 1s infinite alternate;
}

#name {
    color: #00fcc1;
}

#wrd {
    color: #00ffc3;
}

/* Skill Section */
#skill {
    width: 100%;
    height: 100vh;
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
}

#skill, .services-section, .knowme-section {
    background: linear-gradient(180deg, #595959, #404040, #262626);
    color: #ddd;
    padding: 80px 20px;
}

.slider {
    background: linear-gradient(180deg, #8C8C8C, #595959);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 10px;
}

#skill h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

/* Service Section */
.services-section {
    padding: 80px 20px;
    color: #ddd;
    text-align: center;
}

.services-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    flex: 1;
    min-width: 220px;
    padding: 20px;
    background-color: #222;
    border-radius: 15px;
    border: 2px solid #00ffe5;
    background-color: #000000;
    color: #00fff2;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    background-color: #00ffe5;
    color: #030303;
}

/* About Section */
.knowme-section {
    padding: 80px 20px;
    color: #ccc;
    text-align: center;
}

.knowme-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.knowme-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.know-card {
    flex: 1;
    min-width: 220px;
    padding: 20px;
    background-color: #222;
    border-radius: 15px;
    border: 2px solid #00ffe5;
    background-color: #000000;
    color: #00fff2;
    transition: transform 0.3s, box-shadow 0.3s;
}

.know-card:hover {
    background-color: #00ffe5;
    color: #030303;
}

/* Footer Section */
footer.footer {
    background: linear-gradient(90deg, #404040, #262626);
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.social-media .social-icon {
    color: #BFBFBF;
    font-size: 30px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-media .social-icon:hover {
    color: #fff;
}

.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

/* Glow Effect */
@keyframes glow {
    from {
        box-shadow: 0 0 20px 10px #00ffe5;
    }
    to {
        box-shadow: 0 0 30px 15px #00ffe5;
    }
}
