/* Cores principais */
:root {
    --black: #0A0A0A;
    --darker-black: #050505;
    --gold: #D4AF37; /* Dourado elegante */
    --bright-gold: #FFD700; /* Dourado mais brilhante */
    --light-gold: #F0E68C;
    --dark-gray: #1A1A1A;
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --pink: #c11c84; /* Rosa feminino */
    --light-pink: #e84dab; /* Rosa mais claro */
}

/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--darker-black);
    color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(135deg, var(--dark-gray), var(--black));
    border: 1px solid var(--gold);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

/* Cabeçalho e perfil */
header {
    padding: 0;
    border-bottom: 1px solid var(--gold);
    margin-bottom: 30px;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.profile-image-centered {
    text-align: center;
    margin-bottom: 20px;
}

.profile-info-centered {
    text-align: center;
}

.hero-image {
    width: 220px;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

h1 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

.tagline {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-align: center;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

/* Seção sobre */
.about {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 6px;
    border-left: 3px solid var(--gold);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    height: 100%;
    overflow-y: auto;
    max-height: 400px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.about p {
    margin-bottom: 12px;
}

.about p:last-child {
    margin-bottom: 0;
}

/* Bio com foto */
.bio-section {
    margin: 30px 0;
}

.bio-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
}

.bio-photo {
    flex: 0 0 50%;
}

.bio-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.horizontal-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Seção de CTAs */
.cta-section {
    margin-top: 30px;
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gold);
}

.cta-section h2 {
    text-align: center;
    color: var(--gold);
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px var(--pink);
}

.cta-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--pink), var(--gold));
}

.service-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(193, 28, 132, 0.15), rgba(255, 255, 255, 0.1), transparent);
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn i {
    margin-right: 15px;
    font-size: 1.2rem;
}

.whatsapp {
    background-color: var(--black);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.whatsapp:hover {
    background: linear-gradient(135deg, var(--gold), var(--pink));
    color: var(--white);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border-color: var(--bright-gold);
}

.mentoria {
    background-color: var(--dark-gray);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.mentoria:hover {
    background: linear-gradient(135deg, var(--gold), var(--pink));
    color: var(--white);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border-color: var(--bright-gold);
}

.servico {
    background-color: var(--black);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.servico:hover {
    background: linear-gradient(135deg, var(--gold), var(--pink));
    color: var(--white);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border-color: var(--bright-gold);
}

/* Rodapé */
footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gold);
    margin-top: 20px;
    background: linear-gradient(to top, rgba(193, 28, 132, 0.05), transparent 80%);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: var(--dark-gray);
    color: var(--gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--gold), var(--pink));
    color: var(--white);
    border-color: var(--light-pink);
}

footer p {
    font-size: 0.9rem;
    color: var(--light-gold);
}



/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        margin: 10px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .bio-container {
        flex-direction: column;
    }
    
    .bio-photo {
        flex: 0 0 auto;
        margin-bottom: 20px;
    }
    
    .horizontal-photo {
        max-height: 300px;
        object-fit: cover;
        object-position: center 20%;
    }
    
    .service-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        max-width: 100%;
        min-width: 100%;
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        width: 180px;
        height: 180px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 15px;
        font-size: 0.9rem;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
}