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

/* Variáveis de Cores - Light Mode (Verde Musgo) */
:root {
    --bg-gradient-1: #5d7a6d;
    --bg-gradient-2: #6b8873;
    --container-bg: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --border-color: #5d7a6d;
    --icon-bg: #f0f0f0;
    --icon-color: #5d7a6d;
    --button-hover: #4a6157;
    --shadow-color: rgba(0, 0, 0, 0.3);
}

/* Variáveis de Cores - Dark Mode (Verde Musgo Escuro) */
html.dark-mode {
    --bg-gradient-1: #2d3d37;
    --bg-gradient-2: #1f2923;
    --container-bg: #3a4a43;
    --text-primary: #ecf0f1;
    --text-secondary: #bdc3c7;
    --border-color: #7ea88b;
    --icon-bg: #2d3d37;
    --icon-color: #7ea88b;
    --button-hover: #5d7a6d;
    --shadow-color: rgba(0, 0, 0, 0.8);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-1) 0%, var(--bg-gradient-2) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: background 0.3s ease;
}

.container {
    background: var(--container-bg);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px var(--shadow-color);
    text-align: center;
    transition: all 0.3s ease;
}

/* Botão de Toggle Dark/Light Mode */
.theme-toggle {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--icon-bg);
    border: 2px solid var(--border-color);
    color: var(--border-color);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 12px var(--shadow-color);
}

.theme-toggle:hover {
    background: var(--border-color);
    color: var(--container-bg);
    transform: rotate(15deg) scale(1.08);
    box-shadow: 0 6px 16px var(--shadow-color);
}

/* Imagem de Perfil */
.profile-image-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 5px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(58, 228, 52, 0.4);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

/* Nome */
.profile-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

/* Redes Sociais */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--icon-bg);
    color: var(--icon-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.social-link:hover {
    background: var(--icon-color);
    color: var(--container-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Informações de Contato */
.contact-info {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 20px 0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-info span {
    display: inline;
}

.contact-info span:not(:last-child)::after {
    content: " | ";
    margin: 0 8px;
    color: var(--text-secondary);
    opacity: 0.5;
}

/* Descrição */
.description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin: 25px 0;
    text-align: justify;
    transition: color 0.3s ease;
}

/* Título de Seção */
.section-title {
    margin: 30px 0 15px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    text-align: center;
    transition: color 0.3s ease;
}

/* Links de Ação */
.action-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.action-link {
    display: inline-block;
    padding: 12px 30px;
    background: var(--icon-color);
    color: var(--container-bg);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--icon-color);
}

.action-link:hover {
    background: var(--button-hover);
    border-color: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.action-link.secondary {
    background: transparent;
    color: var(--icon-color);
}

.action-link.secondary:hover {
    background: var(--icon-bg);
    color: var(--button-hover);
    border-color: var(--button-hover);
}

/* Podcast */
.podcast-section {
    margin-top: 10px;
}

.podcast-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.podcast-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--icon-bg);
    color: var(--icon-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    border: 1px solid var(--border-color);
}

.podcast-link:hover {
    background: var(--icon-color);
    color: var(--container-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

/* Responsivo */
@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .profile-image {
        width: 140px;
        height: 140px;
    }

    .profile-name {
        font-size: 26px;
    }

    .description {
        font-size: 14px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .action-link {
        padding: 10px 25px;
        font-size: 14px;
    }

    .contact-info {
        font-size: 13px;
    }

    .social-links {
        gap: 15px;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 25px 15px;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    .profile-name {
        font-size: 22px;
    }

    .contact-info span:not(:last-child)::after {
        content: "\A";
        white-space: pre;
        margin: 0;
    }
}

/* Animação de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-image-wrapper {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.profile-name {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.social-links {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.contact-info {
    animation: fadeInUp 0.6s ease 0.4s both;
}

.description {
    animation: fadeInUp 0.6s ease 0.5s both;
}

.action-links {
    animation: fadeInUp 0.6s ease 0.6s both;
}
