.elementor-1044 .elementor-element.elementor-element-c0081aa{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f4a4216 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #F1EBE2;
    font-family: 'Inter', sans-serif;
    color: #2E241F;
    line-height: 1.4;
    padding: 1rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bio-card {
    max-width: 650px;
    width: 100%;
    margin: 1.5rem auto;
    background: #FFFDF9;
    border-radius: 2rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.cover-area {
    height: 190px;
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    background-color: #CAB89E;
    background-image: url('https://bysibrasil.com.br/wp-content/uploads/2026/05/capa.webp');
    transition: transform 0.3s ease;
    cursor: pointer;
}

.cover-area:hover {
    transform: scale(1.02);
}

.profile-section {
    text-align: center;
    margin-top: -58px;
    padding: 0 1.5rem 1rem 1.5rem;
}

.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #FFFDF9;
    background: #FFFDF9;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

.avatar:hover {
    transform: scale(1.05) rotate(2deg);
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #4A2E22;
    margin-top: 0.75rem;
    margin-bottom: 0.3rem;
}

.tagline {
    font-size: 0.9rem;
    color: #7D5A42;
    background: #F6EFE6;
    display: inline-block;
    padding: 0.3rem 1.2rem;
    border-radius: 60px;
    font-weight: 500;
}

.tagline i {
    font-size: 0.75rem;
    margin: 0 4px;
}

.bio-text {
    margin: 1.2rem 0 1rem 0;
    font-size: 0.96rem;
    color: #5D4436;
    padding: 0 0.8rem;
    max-width: 88%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
}

.links-container {
    padding: 0.5rem 1.2rem 2rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FFFFFF;
    border: 1.5px solid #E9D9CB;
    border-radius: 1.2rem;
    padding: 0.7rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.link-img {
    width: 65px;
    height: 65px;
    border-radius: 1rem;
    overflow: hidden;
    flex-shrink: 0;
    background: #F6EFE6;
    cursor: pointer;
}

.link-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.link-img:hover img {
    transform: scale(1.1);
}

.link-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}

.link-info i {
    font-size: 1.1rem;
    color: #B47C58;
    margin-right: 6px;
}

.link-info span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #4A2E22;
}

.link-info small {
    font-size: 0.7rem;
    color: #BFA18A;
}

.link-card:hover {
    background: #FEF8F2;
    border-color: #C9AA8B;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(128, 78, 46, 0.1);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    background: #FFFDF9;
    border-radius: 1.5rem;
    max-width: 550px;
    width: 90%;
    margin: auto;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    font-weight: bold;
    color: #4A2E22;
    cursor: pointer;
    z-index: 10;
    background: rgba(255, 253, 249, 0.9);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #4A2E22;
    color: #FFFDF9;
}

#modalImage {
    width: 100%;
    height: auto;
    display: block;
    max-height: 60vh;
    object-fit: contain;
    background: #F6EFE6;
}

.modal-footer {
    display: flex;
    gap: 12px;
    padding: 1.2rem;
    justify-content: center;
    background: #FFFDF9;
    border-top: 1px solid #F0E4D8;
}

.modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.5rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.modal-btn.primary {
    background: #B47C58;
    color: white;
}

.modal-btn.primary:hover {
    background: #9B5E3A;
    transform: translateY(-2px);
}

.modal-btn.secondary {
    background: #F0E4D8;
    color: #4A2E22;
}

.modal-btn.secondary:hover {
    background: #E9D9CB;
}

.footer-note {
    text-align: center;
    padding: 1rem 1.5rem 1.8rem;
    font-size: 0.72rem;
    color: #BFA18A;
    border-top: 1px solid #F0E4D8;
    background: #FEFCF9;
}

.handmade-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #DEB887;
    border-radius: 50%;
    margin: 0 6px;
    vertical-align: middle;
}

@media (max-width: 550px) {
    .cover-area { height: 150px; }
    .avatar { width: 85px; height: 85px; }
    .brand-name { font-size: 1.7rem; }
    .link-img { width: 55px; height: 55px; }
    .link-info span { font-size: 0.8rem; }
    .link-info small { font-size: 0.65rem; }
    .modal-footer { flex-direction: column; }
}

/* FORÇA AVATAR REDONDO NO ELEMENTOR */
.profile-section .avatar,
.avatar {
    width: 110px !important;
    height: 110px !important;
    min-width: 110px !important;
    min-height: 110px !important;
    max-width: 110px !important;
    max-height: 110px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 auto !important;
    border: 4px solid #FFFDF9 !important;
    background: #FFFDF9 !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08) !important;
}

/* PARA RESPONSIVO */
@media (max-width: 550px) {
    .profile-section .avatar,
    .avatar {
        width: 85px !important;
        height: 85px !important;
        min-width: 85px !important;
        min-height: 85px !important;
    }
}/* End custom CSS */