/* style.css */
:root {
    --primary: #4A00E0;
    --primary-dark: #3A00B0;
    --secondary: #8E2DE2;
    --accent: #00C6FB;
    --accent-dark: #0099CC;
    --text-light: #e0c0ff;
    --text-lighter: #c8a4ff;
    --bg-dark: #1a0033;
    --bg-darker: #0d001a;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #1a0033 0%, #0d001a 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 200, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 150, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

h1 {
    font-size: 4em;
    background: linear-gradient(90deg, #fff, #e0c0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(224, 192, 255, 0.3);
}

h2 {
    font-size: 2.5em;
    background: linear-gradient(90deg, #fff, #c8a4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #e0c0ff;
    line-height: 1.8;
}

.badge {
    display: inline-block;
    background: linear-gradient(90deg, #8a2be2, #6a0dad);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* BOTÕES PADRONIZADOS - Todos iguais ao último botão */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    margin: 0 auto;
    max-width: fit-content;
    position: relative;
    overflow: hidden;
    font-size: 1.1em;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    background: transparent;
    color: #fff;
    border: 2px solid #8a2be2;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.button:hover::before {
    left: 100%;
}

.button:hover i {
    transform: translateX(5px);
}

.button:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.5);
}

/* Remove as classes primary e secondary já que todos são iguais */
.button.primary,
.button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #8a2be2;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.button.primary:hover,
.button.secondary:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.5);
}

.quote {
    font-style: italic;
    font-size: 1.3em;
    margin: 40px auto;
    max-width: 800px;
    padding: 30px;
    border-left: 5px solid #8a2be2;
    color: #e0c0ff;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 5em;
    color: rgba(138, 43, 226, 0.2);
    font-family: Georgia, serif;
}

/* Header/Hero Section */
.hero {
    background: linear-gradient(135deg, #1a0033 0%, #0d001a 100%);
    color: #fff;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* IMAGEM SEM EFEITOS */
.headline-img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

/* Remove hover da imagem */
.headline-img:hover {
    transform: none;
    box-shadow: none;
}

.hero h1 {
    font-size: 5em;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(138, 43, 226, 0.5); }
    to { text-shadow: 0 0 30px rgba(138, 43, 226, 0.8), 0 0 40px rgba(138, 43, 226, 0.6); }
}

.hero h2 {
    font-size: 2.2em;
    font-weight: 300;
    color: #e0c0ff;
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0c0ff;
}

.hero .container {
    text-align: left;
}

.hero .button {
    margin: 0;
}

.hero .quote {
    margin: 30px 0;
    text-align: left;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cards-grid.three-cols {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.cards-grid.four-cols {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.3);
}

.card h3 {
    font-size: 1.6em;
    margin-top: 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

.card p {
    font-size: 1em;
    color: #e0c0ff;
    position: relative;
    z-index: 1;
}

.profile-card .subtitle {
    display: block;
    font-size: 0.9em;
    color: #c8a4ff;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #fff;
    font-size: 2em;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.icon-wrapper.bg-blue { background: linear-gradient(135deg, #3b82f6, #1e40af); }
.icon-wrapper.bg-green { background: linear-gradient(135deg, #22c55e, #15803d); }
.icon-wrapper.bg-blue-dark { background: linear-gradient(135deg, #1e3a8a, #0f1e4d); }
.icon-wrapper.bg-orange { background: linear-gradient(135deg, #f97316, #c2410c); }
.icon-wrapper.bg-green-dark { background: linear-gradient(135deg, #16a34a, #0d722d); }
.icon-wrapper.bg-red { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.icon-wrapper.bg-indigo { background: linear-gradient(135deg, #6366f1, #4338ca); }
.icon-wrapper.bg-green-light { background: linear-gradient(135deg, #84cc16, #65a30d); }
.icon-wrapper.bg-purple { background: linear-gradient(135deg, #a855f7, #7e22ce); }
.icon-wrapper.bg-purple-dark { background: linear-gradient(135deg, #7e22ce, #581c87); }

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(106, 13, 173, 0.1));
    color: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item .stat-number {
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, #e0c0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(224, 192, 255, 0.3);
}

.stat-item h3 {
    font-size: 1.3em;
    margin-top: 0;
    color: #fff;
}

.stat-item p {
    font-size: 1em;
    color: #e0c0ff;
}

.practice-stat {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(106, 13, 173, 0.2));
    color: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 50px auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.practice-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.practice-stat:hover::before {
    transform: translateX(100%);
}

.practice-stat .stat-number {
    font-size: 5em;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, #e0c0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(224, 192, 255, 0.3);
}

.practice-stat h3 {
    font-size: 2em;
    margin-top: 0;
    color: #fff;
}

.practice-stat p {
    font-size: 1.2em;
    color: #e0c0ff;
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.detail-item i {
    font-size: 1.8em;
    color: #8a2be2;
    min-width: 40px;
}

.detail-item p {
    margin: 0;
    font-size: 1.1em;
    color: #e0c0ff;
    text-align: left;
}

.detail-item strong {
    color: #fff;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0d001a, #1a0033);
    color: #fff;
    padding: 60px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8a2be2, transparent);
}

footer h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 2em;
}

footer p {
    color: #c8a4ff;
    font-size: 1em;
    margin-bottom: 10px;
}

footer .copy {
    margin-top: 30px;
    font-size: 0.9em;
    color: #a080cc;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4em;
    }
    
    .hero h2 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 2.2em;
    }
    
    .hero-content {
        gap: 40px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .headline-img {
        max-width: 85%;
    }
    
    .hero h1 {
        font-size: 3em;
    }

    .hero h2 {
        font-size: 1.5em;
    }
    
    .hero p {
        font-size: 1.1em;
    }

    .section {
        padding: 80px 0;
    }
    
    .hero .quote {
        text-align: center;
        margin: 25px 0;
        font-size: 1.1em;
        padding: 20px;
    }
    
    .hero .button {
        margin: 0 auto;
    }

    .cards-grid,
    .stats-grid,
    .details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cards-grid.four-cols {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .practice-stat {
        padding: 40px 30px;
        margin: 40px auto;
    }

    .practice-stat .stat-number {
        font-size: 4em;
    }

    .practice-stat h3 {
        font-size: 1.6em;
    }
    
    .details-grid {
        padding: 30px 20px;
    }
    
    .card {
        padding: 30px 20px;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.6em;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.5em;
    }

    .hero h2 {
        font-size: 1.2em;
    }
    
    .hero p {
        font-size: 1em;
    }

    .button {
        padding: 15px 25px;
        font-size: 1em;
        width: 100%;
        max-width: 300px;
    }

    .headline-img {
        max-width: 95%;
    }

    .quote {
        font-size: 1.1em;
        padding: 20px;
        margin: 30px auto;
    }

    .card {
        padding: 25px 15px;
    }
    
    .card h3 {
        font-size: 1.4em;
    }

    .stat-item .stat-number {
        font-size: 3em;
    }

    .practice-stat .stat-number {
        font-size: 3em;
    }

    .practice-stat h3 {
        font-size: 1.4em;
    }
    
    .practice-stat p {
        font-size: 1em;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.4em;
    }
    
    .details-grid {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .detail-item {
        padding: 12px;
    }
    
    .detail-item i {
        font-size: 1.5em;
    }
    
    .detail-item p {
        font-size: 1em;
    }
    
    .section {
        padding: 60px 0;
    }
}

/* Mobile Extra Small */
@media (max-width: 860px) {
    .hero h1 {
        font-size: 2.2em;
    }
    
    .hero h2 {
        font-size: 1.1em;
    }
    
    .cards-grid.four-cols {
        grid-template-columns: 1fr;
    }
    
    .headline-img {
        max-width: 130%;
    }
}
/* ========== HEADER COM MARCA ========== */
.main-header {
    background: rgba(26, 0, 51, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    max-width: 200px;
    height: auto;
}

.brand-logo img {
    width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

/* Ajuste para o hero section não ficar atrás do header */
.hero {
    padding: 120px 0 100px;
}

/* ========== RESPONSIVIDADE DA MARCA ========== */

/* Tablet */
@media (max-width: 1024px) {
    .brand-logo {
        max-width: 180px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .main-header {
        padding: 12px 0;
    }
    
    .brand-logo {
        max-width: 150px;
    }
    
    .hero {
        padding: 100px 0 80px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .main-header {
        padding: 10px 0;
    }
    
    .brand-logo {
        max-width: 120px;
    }
    
    .hero {
        padding: 90px 0 60px;
    }
}
/* ========== AJUSTE MOBILE - REDUZIR ESPAÇO ABAIXO DA FOTO ========== */

/* Mobile Large */
@media (max-width: 768px) {
    .hero-content {
        gap: 10px !important; /* Espaço mínimo entre imagem e texto */
    }
    
    .hero {
        padding: 80px 0 20px !important; /* Reduz drasticamente */
    }
    
    .hero-text {
        margin-top: -40px; /* Sobe bastante o conteúdo */
    }
    
    .hero .badge {
        margin-bottom: 10px !important; /* Reduz espaço do badge */
    }
    
    .hero h1 {
        margin-bottom: 10px !important; /* Reduz espaço do título */
    }
    
    .hero h2 {
        margin-bottom: 15px !important; /* Reduz espaço do subtítulo */
    }
    
    .hero p {
        margin-bottom: 15px !important; /* Reduz espaço do parágrafo */
    }
    
    .hero .quote {
        margin: 10px 0 !important; /* Reduz espaço da citação */
        padding: 15px !important;
        font-size: 1em !important;
    }
    
    .headline-img {
        max-width: 100% !important; /* Ocupa toda a largura */
        margin-bottom: 0 !important; /* Remove margem abaixo da imagem */
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero-content {
        gap: 5px !important; /* Quase sem espaço */
    }
    
    .hero {
        padding: 70px 0 15px !important; /* Ainda menos espaço */
    }
    
    .hero-text {
        margin-top: -50px; /* Sobe ainda mais */
    }
    
    .hero h1 {
        font-size: 2.2em !important;
        margin-bottom: 8px !important;
    }
    
    .hero h2 {
        font-size: 1.1em !important;
        margin-bottom: 10px !important;
    }
    
    .hero p {
        font-size: 0.9em !important;
        margin-bottom: 10px !important;
    }
    
    .hero .quote {
        margin: 8px 0 !important;
        padding: 12px !important;
        font-size: 0.9em !important;
    }
}
/* ========== SEÇÃO BIOGRAFIA ========== */
.biography {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.8), rgba(13, 0, 26, 0.9));
    position: relative;
}

.biography-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.biography-image {
    text-align: center;
}

.biography-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(138, 43, 226, 0.3);
}

.biography-text h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, #e0c0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.biography-text h3 {
    font-size: 1.4em;
    color: #e0c0ff;
    margin-bottom: 25px;
    font-weight: 400;
}

.biography-details p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.7;
    color: #e0c0ff;
}

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

/* ========== RESPONSIVIDADE BIOGRAFIA ========== */

/* Tablet */
@media (max-width: 1024px) {
    .biography-content {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }
    
    .biography-image img {
        max-width: 240px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .biography-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .biography-image img {
        max-width: 200px;
    }
    
    .biography-text h2 {
        font-size: 2em;
    }
    
    .biography-text h3 {
        font-size: 1.2em;
    }
    
    .biography-details p {
        font-size: 1em;
        text-align: left;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .biography-content {
        gap: 25px;
    }
    
    .biography-image img {
        max-width: 180px;
    }
    
    .biography-text h2 {
        font-size: 1.8em;
    }
    
    .biography-details p {
        font-size: 0.95em;
        line-height: 1.6;
    }
}