/* Estilos para o Linktree da Psicóloga */

:root {
    --primary-color: #98d8c8;
    --secondary-color: #6a9e90;
    --background-start: #98d8c8;
    --background-end: #388697;
    --text-color: #16312a;
    --accent-color: #6a9e90;
    --shadow-color: rgba(0, 0, 0, 0.2);
    --button-hover: #388697;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, var(--background-start) 0%, var(--background-end) 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Perfil */
.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    box-shadow: 0 5px 15px var(--shadow-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-color);
}

.profession {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #27584b;
}

.bio {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    max-width: 90%;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Links */
.links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    margin-bottom: 30px;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.link-item:hover {
    background-color: var(--button-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px var(--shadow-color);
}

.link-item:active {
    transform: translateY(0);
}

.link-item i:first-child {
    font-size: 1.2rem;
    margin-right: 12px;
    color: var(--primary-color);
}

.link-item span {
    flex: 1;
    text-align: center;
}

.arrow {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
    transform: translateY(-3px);
}

/* Footer */
footer {
    margin-top: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .name {
        font-size: 1.8rem;
    }
    
    .profession {
        font-size: 1rem;
    }
    
    .bio {
        font-size: 0.9rem;
    }
    
    .link-item {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 40px 30px;
    }
    
    .profile-image {
        width: 180px;
        height: 180px;
    }
    
    .name {
        font-size: 2.5rem;
    }
    
    .profession {
        font-size: 1.2rem;
    }
    
    .bio {
        font-size: 1.1rem;
        max-width: 80%;
    }
    
    .link-item {
        padding: 18px 28px;
        font-size: 1.1rem;
    }
}
