* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #fafafa;
    color: #333;
    line-height: 1.6;
}

/* Cabeçalho */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}

.logo {
    font-weight: 700;
    color: #6a3093;
    text-decoration: none;
    cursor: pointer;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #6a3093;
}

/* Menu Mobile (Burger) */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section - Desktop */
#hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
    max-width: 1100px;
}

.hero-text {
    flex: 1 1 500px;
    max-width: 600px;
}

.hero-photo {
    flex: 1 1 400px;
    display: flex;
    justify-content: flex-end;
}

/* Efeito Redondo + Borda Tracejada + Brilho na Foto */
.hero-photo img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    border: 2px dashed rgba(106, 48, 147, 0.3);
    padding: 4px;
    box-shadow: 0 0 80px rgba(106, 48, 147, 0.12);
}

/* Novos Elementos da Seção Hero */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(106, 48, 147, 0.1);
    color: #6a3093;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.badge .dot {
    width: 8px;
    height: 8px;
    background-color: #6a3093;
    border-radius: 50%;
}

.greeting {
    font-size: 1.5rem;
    color: #6a3093;
    margin-bottom: 0.5rem;
}

#hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

#hero h1 em {
    font-style: italic;
    color: #6a3093;
    font-weight: 700;
}

.bio {
    max-width: 600px;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    border-left: 4px solid rgba(106, 48, 147, 0.3);
    padding-left: 1.5rem;
}

.sub-role {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Botões */
.cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: nowrap;
}

.btn {
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background-color: #6a3093;
    color: #fff;
    box-shadow: 0 4px 15px rgba(106, 48, 147, 0.3);
}

.btn-secondary {
    background-color: #fff;
    color: #6a3093;
    border: 2px solid #6a3093;
}

/* Seções de Conteúdo */
.content-section {
    padding: 6rem 10%;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #6a3093;
}

.bg-light {
    background-color: #fff;
}

/* Cards de Cases */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: #fafafa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #6a3093;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card h3 {
    margin-bottom: 1rem;
}

.contato-link {
    display: block;
    margin-top: 2rem;
    width: fit-content;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #333;
    color: #fff;
    font-size: 0.9rem;
}

/* Responsividade (Mobile) */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: 92vh;
        top: 08.4vh;
        background-color: rgba(255, 255, 255, 0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        gap: 3rem;
        padding-top: 3rem;
        backdrop-filter: blur(8px);
    }

    .nav-active {
        transform: translateX(0%);
    }

    .burger {
        display: block;
    }

    #hero {
        align-items: flex-start; 
        text-align: left;        
        height: auto;               
        min-height: 100vh;          
        padding-top: 120px;         
        padding-bottom: 2rem;       
        justify-content: flex-start;
    }
    
    .hero-wrap {
        margin-top: 0;
        justify-content: flex-start;
        flex-direction: column;
        gap: 3rem;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        justify-content: flex-start;
        gap: 0.5rem; 
        flex-wrap: nowrap; 
        width: 100%;
        overflow-x: auto; 
        padding-top: 10px;
        padding-bottom: 10px; 
    }

    .cta-buttons .btn {
        padding: 0.6rem 1rem; 
        font-size: 0.85rem;   
        white-space: nowrap;  
    }

    .hero-photo {
        margin-top: 0; 
        align-self: center; 
        width: 100%;
        justify-content: center;
    }
}