@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --text-color: #ffffff;
    --bg-url: url(../assets/img/Interface-Mobile-Theme-Dark-mode.jpg);
    --stroke-color: rgba(255, 255, 255, 0.5);
    --surface-color: rgba(255, 255, 255, 0.1);
    --surface-color-hover: rgba(255, 255, 255, 0.05);
    --highlight-color: rgba(255, 255, 255, 0.2);
    --switch-bg-url: url(../assets/img/moon.svg);
    --primary-color: #0066cc;
    --secondary-color: #004499;
    --accent-color: #4a90e2;
}

.light {
    --text-color: #000000;
    --bg-url: url(../assets/img/Interface-Mobile-Theme-Light-mode.jpg);
    --stroke-color: rgba(0, 0, 0, 0.7);
    --surface-color: rgba(0, 0, 0, 0.05);
    --surface-color-hover: rgba(0, 0, 0, 0.02);
    --highlight-color: rgba(0, 0, 0, 0.1);
    --switch-bg-url: url(../assets/img/sun.svg);
    --primary-color: #0066cc;
    --secondary-color: #004499;
    --accent-color: #357abd;
}

html,
body {
    font-size: 62.5%;
    min-height: 100vh;
}

body {
    background: var(--bg-url) no-repeat top center/cover;
    display: flex;
    flex-direction: column;
}

body * {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
}

#container {
    width: 100%;
    max-width: 1000px;
    margin: 1rem auto 0;
    padding: 0 1.5rem;
    flex: 1;
}

#profile {
    position: relative;
    text-align: center;
    padding: 1rem;
    margin-bottom: 2rem;
}

#profile img {
    width: 200px;
    transition: transform 0.3s ease;
}

#profile img:hover {
    transform: scale(1.05);
}

#profile p {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2rem;
    margin-top: 0.6rem;
}

.pagina {
    text-align: center;
    padding: 0rem;
    margin-bottom: 3rem;
}

.pagina h4 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Switch */
#switch {
    position: absolute;
    top: 3rem;
    right: calc(33.33% - 3.2rem);
    width: 6.4rem;
    transform: translateY(-50%);
}

#switch button {
    width: 3.2rem;
    height: 3.2rem;
    background: #ffffff var(--switch-bg-url) no-repeat center;
    border: 1px solid var(--stroke-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.light #switch button {
    left: 0;
}

html:not(.light) #switch button {
    left: 50%;
}

#switch button:hover {
    outline: 8px solid var(--highlight-color);
}

#switch span {
    display: block;
    width: 6.4rem;
    height: 2.4rem;
    background: var(--surface-color);
    border: 1px solid var(--stroke-color);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 9999px;
}

/* Estrutura das colunas */
.row {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.coluna {
    list-style: none;
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
}

.coluna li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: var(--surface-color);
    border: 1px solid var(--stroke-color);
    border-radius: 1rem;
    backdrop-filter: blur(0.4rem);
    -webkit-backdrop-filter: blur(0.4rem);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coluna li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--highlight-color), transparent);
    transition: left 0.5s ease;
}

.coluna li a:hover::before {
    left: 100%;
}

.coluna li a:hover {
    background: var(--surface-color-hover);
    border: 1.5px solid var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Estilo para badges */
.badge {
    margin-left: 0.8rem;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    border-radius: 0.4rem;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Estilos para redes sociais */
.social-media {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--surface-color);
    border: 1px solid var(--stroke-color);
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 2rem auto;
}

.social-media h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-icons a:hover::before {
    left: 100%;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-icons i {
    font-size: 1.5em;
    z-index: 1;
}

/* Footer */
.footer-copyright {
    padding: 2rem 0;
    text-align: center;
    font-size: 1.2rem;
    background: var(--surface-color);
    border-top: 1px solid var(--stroke-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: auto;
}

/* Navbar */
.navbar {
    background: var(--surface-color);
    border-bottom: 1px solid var(--stroke-color);
}

.navbar-brand {
    color: var(--text-color);
    font-size: 1.8rem;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coluna li a,
.social-icons a {
    animation: fadeIn 0.6s ease-out;
}

.coluna li:nth-child(2) a { animation-delay: 0.1s; }
.coluna li:nth-child(3) a { animation-delay: 0.2s; }
.coluna li:nth-child(4) a { animation-delay: 0.3s; }
.coluna li:nth-child(5) a { animation-delay: 0.4s; }

/* Responsividade */
@media (max-width: 768px) {
    #container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .row {
        flex-direction: column;
        gap: 2rem;
    }

    .coluna {
        min-width: 100%;
    }

    .pagina h4 {
        font-size: 1.8rem;
    }

    #profile img {
        width: 150px;
    }

    #profile p {
        font-size: 1.2rem;
    }

    #switch {
        top: 2.5rem;
        right: 1rem;
        transform: none;
    }

    .social-media {
        margin: 1.5rem;
        padding: 1.5rem;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
    }

    .social-icons i {
        font-size: 1.3em;
    }

    .social-media h3 {
        font-size: 1.4rem;
    }

    .coluna li a {
        padding: 1rem 1.2rem;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    #profile img {
        width: 120px;
    }

    #profile p {
        font-size: 1.1rem;
    }

    .social-icons a {
        width: 60px;
        height: 60px;
    }

    .social-icons i {
        font-size: 1.2em;
    }

    .social-media h3 {
        font-size: 1.2rem;
    }

    .badge {
        font-size: 1rem;
        padding: 0.3rem 0.6rem;
    }

    .footer-copyright {
        font-size: 1.1rem;
        padding: 1.5rem 0;
    }
}

@media (max-width: 320px) {
    .social-icons {
        gap: 0.8rem;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
    }
    
    .social-icons i {
        font-size: 1.1em;
    }
}
.social-icons a {
    width: 50px;  /* Aumentei de 50px para 60px */
    height: 50px; /* Aumentei de 50px para 60px */
}

.social-icons i {
    font-size: 2.5em; /* Aumentei de 1.5em para 2.5em */
}