/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.5.1765997389
Updated: 2025-12-17 21:49:49

*/


/* ============================================
   Template Link-in-Bio - Estilos Mobile-First
   ============================================ */

/* Reset e base para o template */
body.page-template-template-page-links {
    margin: 0;
    padding: 0;
}

body.page-template-template-page-links .site-content {
    padding: 0;
}

/* Container principal */
.link-bio-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 15px;
    background: #ffffff;
    min-height: 100vh;
}

/* Header do perfil */
.link-bio-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 30px;
}

.link-bio-header .profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid #f0f0f0;
}

.link-bio-header h1 {
    font-size: 24px;
    margin: 0 0 10px;
    color: #333;
    font-weight: 600;
}

.link-bio-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Lista de links */
.link-bio-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-bio-item {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.link-bio-item:hover,
.link-bio-item:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: #0073aa;
    outline: none;
}

.link-bio-item-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.link-bio-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f5f5f5;
}

.link-bio-item-text {
    flex: 1;
    min-width: 0;
}

.link-bio-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px;
    line-height: 1.3;
}

.link-bio-item-description {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.link-bio-item-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.link-bio-item:hover .link-bio-item-arrow,
.link-bio-item:focus .link-bio-item-arrow {
    opacity: 0.8;
}

/* Footer */
.link-bio-footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px 0;
    color: #999;
    font-size: 12px;
}

/* Breakpoints - Tablet */
@media (min-width: 768px) {
    .link-bio-container {
        max-width: 600px;
        padding: 40px 30px;
    }
    
    .link-bio-header .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .link-bio-header h1 {
        font-size: 32px;
    }
    
    .link-bio-header p {
        font-size: 16px;
    }
    
    .link-bio-list {
        gap: 20px;
    }
    
    .link-bio-item {
        padding: 20px;
    }
    
    .link-bio-item-image {
        width: 80px;
        height: 80px;
    }
    
    .link-bio-item-title {
        font-size: 18px;
    }
    
    .link-bio-item-description {
        font-size: 14px;
    }
}

/* Breakpoints - Desktop */
@media (min-width: 1024px) {
    .link-bio-container {
        max-width: 700px;
        padding: 60px 40px;
    }
    
    .link-bio-list {
        gap: 25px;
    }
}

