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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0f1218;
    background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #ffffff;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Seção de perfil */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.5);
    margin-bottom: 20px;
}

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

.verified-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background-color: #1DA1F2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
}

.verified-badge i {
    color: #fff;
    font-size: 12px;
}

.profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    background: linear-gradient(45deg, #fff, #e0b03b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Seção de biografia */
.bio-section {
    max-width: 700px;
    margin: 0 auto 25px;
    padding: 0 20px;
}

.bio-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    text-align: justify;
}

/* Ícones sociais */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid;
    z-index: -1;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.youtube::before {
    border-color: #FF0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.instagram::before {
    border-color: #C13584;
    box-shadow: 0 0 10px rgba(193, 53, 132, 0.5);
}

.whatsapp::before {
    border-color: #25D366;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

/* Estilo Wendell Carvalho para links */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.link-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.link-button {
    display: flex;
    width: 100%;
    padding: 16px 20px;
    background-color: #00E676;
    color: #000000;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.6);
}

.button-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.button-text {
    flex: 1;
    text-align: center;
}

.link-description {
    font-size: 14px;
    color: #cccccc;
    text-align: center;
    margin-top: 8px;
    max-width: 90%;
}

/* Cores específicas para cada botão */
#encontro-rei {
    background-color: #00E676;
}

#conferencia {
    background-color: #00BCD4;
}

#sheikh {
    background-color: #FFC107;
    color: #000;
}

#comunidade {
    background-color: #9C27B0;
}

#programa {
    background-color: #3F51B5;
}

#metodo {
    background-color: #F44336;
}

#sos {
    background-color: #FF9800;
    color: #000;
}

#formacao {
    background-color: #8BC34A;
    color: #000;
}

#assessoria {
    background-color: #607D8B;
}

/* Imagem do evento e do livro */
.event-image-container, .book-image-container {
    width: 100%;
    margin: 5px 0 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.event-image {
    width: 100%;
    display: block;
}

/* Fotos finais da página */
.final-images-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.final-image-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.final-image {
    width: 100%;
    display: block;
}

/* Botão flutuante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

/* Rodapé */
footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #aaa;
    width: 100%;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .profile-name {
        font-size: 36px;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .bio-section p {
        font-size: 14px;
    }
    
    .link-button {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .button-image {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }
    
    .link-description {
        font-size: 12px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .profile-name {
        font-size: 30px;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .bio-section p {
        font-size: 13px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .link-button {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .button-image {
        width: 25px;
        height: 25px;
        margin-right: 6px;
    }
    
    .link-description {
        font-size: 11px;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }
}
