:root {
    /* Tema Natural - Nutrição (IDV) */
    --bg-main: #EAEAEA; /* Cinza Claro */
    --text-primary: #2C3A16; /* Verde Musgo */
    --text-secondary: #7C8B63; /* Verde Oliva */
    
    /* Cores de Destaque - Verdes e Terrosos */
    --green-500: #7C8B63; /* Verde Oliva */
    --green-400: #C5D1B3; /* Verde Sálvia */
    --green-300: #D5CBB9; /* Bege Areia */
    
    /* Gradientes para os Cards */
    --card-gradient-1: linear-gradient(135deg, #7C8B63 0%, #2C3A16 100%);
    --card-gradient-2: linear-gradient(135deg, #C5D1B3 0%, #7C8B63 100%);
    --card-gradient-3: linear-gradient(135deg, #D5CBB9 0%, #7C8B63 100%);
    
    --card-text: #ffffff;
    --card-text-secondary: #f0f0f0;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 440px; /* Layout focado em mobile */
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Header / Perfil */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    background: #ffffff;
    padding: 32px 20px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.profile-image-container {
    position: relative;
    padding: 4px;
    /* Borda gradiente ao redor da foto */
    background: linear-gradient(135deg, var(--green-300), var(--green-500));
    border-radius: 50%;
}

.profile-img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    object-fit: cover;
}

.profile-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.subtitle {
    font-size: 12px;
    font-weight: 700;
    color: var(--green-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bio {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Seção de Cards Largos */
.cards-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wide-card {
    position: relative;
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    height: 160px;
    box-shadow: 0 15px 35px rgba(74, 92, 64, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wide-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(74, 92, 64, 0.2);
}

.card-bg-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.gradient-1 { background: var(--card-gradient-1); }
.gradient-2 { background: var(--card-gradient-2); }
.gradient-3 { background: var(--card-gradient-3); }

/* Padrão decorativo sutil no fundo do card */
.card-bg-gradient::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-image: radial-gradient(circle at 100% 0%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Área onde a imagem da pessoa vai ficar */
.card-image-placeholder {
    position: relative;
    z-index: 2;
    width: 35%; /* Espaço reservado para a foto à esquerda */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-right: 1px dashed rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px;
}

/* IMPORTANTE: Dica de CSS para quando você for colocar as imagens recortadas (PNG)
   Você deve trocar o <div class="card-image-placeholder"> por uma tag <img class="card-person-img">
   e aplicar estilos assim:
   .card-person-img {
       position: absolute;
       bottom: 0;
       left: 10px;
       height: 120%; (faz ela "vazar" um pouco para cima do card, como na referência)
       z-index: 3;
   }
*/

/* Conteúdo de Texto do Card (Lado Direito) */
.card-content {
    position: relative;
    z-index: 2;
    width: 65%;
    padding: 24px 20px 24px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    margin-bottom: 8px;
}

.card-badge i {
    width: 12px;
    height: 12px;
}

.card-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--card-text);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;
}

.card-content p {
    color: var(--card-text-secondary);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.9;
}

/* Seção de Testemunho */
.testimonial-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.simple-testimonial {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-text .quote {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
}

.testimonial-text .author {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Footer */
footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-bottom: 24px;
}

.footer-brand {
    font-size: 16px;
    font-weight: 800;
    color: var(--green-500);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--green-500);
}

/* Animações (Suaves) */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-up {
    opacity: 0;
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
