/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    color: #2F2F2F;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hidden {
    display: none;
}

/* Bold Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.display-1 {
    font-size: clamp(4rem, 8vw, 12rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.display-2 {
    font-size: clamp(3rem, 6vw, 8rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.display-3 {
    font-size: clamp(2rem, 4vw, 5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.text-bold {
    font-weight: 900;
}

.text-black {
    font-weight: 900;
    color: #000;
}

.text-oversized {
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    margin-bottom: 60px;
}

.loading-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    letter-spacing: -0.03em;
    line-height: 0.9;
}

.slogan-container {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slogan {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 300;
    color: #D4AF37;
    min-height: 30px;
    letter-spacing: 0.02em;
}

.cursor {
    font-weight: 100;
    animation: blink 1s infinite;
}

.loading-progress {
    margin-top: 60px;
}

.circular-progress {
    position: relative;
    display: inline-block;
}

.progress-ring {
    transform: rotate(-90deg);
    width: 60px;
    height: 60px;
}

.progress-ring-circle {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 4;
    stroke-linecap: round;
    r: 25;
    cx: 30;
    cy: 30;
}

.progress-ring-circle.active {
    stroke: #D4AF37;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: progress 3s ease-in-out forwards;
}

.progress-text {
    display: none;
}

/* Header */
.header {
    background: #000;
    color: white;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid #8B0000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.logo a {
    color: white;
    text-decoration: none;
}

.logo-text {
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 3rem;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.nav-item > a:hover {
    color: #D4AF37;
    transform: translateY(-2px);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    min-width: 280px;
    border: 2px solid #8B0000;
    border-radius: 0;
    padding: 1.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: #8B0000;
    color: white;
    border-left-color: #D4AF37;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 4px;
    background: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
    margin-top: 0;
    padding-top: 120px;
    padding-bottom: 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(139, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    width: 100%;
    text-align: center;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
}

.hero-text {
    animation: fadeInUp 1s ease-out 1s both;
    text-align: left;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-author-image {
    width: 350px;
    height: 450px;
    object-fit: cover;
    border: 5px solid #D4AF37;
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.hero-author-image:hover {
    transform: scale(1.05);
    box-shadow: 0 40px 80px rgba(212, 175, 55, 0.4);
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 370px;
    height: 470px;
    background: linear-gradient(45deg, #8B0000, #D4AF37);
    opacity: 0.2;
    filter: blur(30px);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite alternate;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 7rem);
    font-weight: 900;
    margin-bottom: 2rem;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.85;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero-buttons {
    margin-top: 3rem;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeInRight 1s ease-out 1.5s both;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #8B0000;
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    color: #D4AF37;
    margin-bottom: 1rem;
    line-height: 0.9;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    animation: fadeIn 1s ease-out 2s both;
}

.hero-scroll span {
    font-size: 1rem;
    margin-bottom: 15px;
    display: block;
    opacity: 0.8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator {
    width: 3px;
    height: 40px;
    background: #D4AF37;
    margin: 0 auto;
    animation: scrollDown 2s infinite;
}

/* Quote of the Month Section */
.quote-month {
    background: white;
    padding: 6rem 0;
    text-align: center;
}

.quote-content {
    max-width: 1000px;
    margin: 0 auto;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    color: #000;
    line-height: 1.2;
    margin-bottom: 3rem;
    font-style: italic;
    position: relative;
}

.quote-text::before,
.quote-text::after {
    content: '"';
    font-size: 6rem;
    color: #D4AF37;
    position: absolute;
    font-family: serif;
}

.quote-text::before {
    top: -2rem;
    left: -3rem;
}

.quote-text::after {
    bottom: -4rem;
    right: -3rem;
}

.quote-author {
    font-size: 1.5rem;
    font-weight: 900;
    color: #8B0000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.quote-date {
    font-size: 1.2rem;
    color: #666;
    font-weight: 700;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 900;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #8B0000;
    color: white;
    border: 3px solid #8B0000;
}

.btn-primary:hover {
    background: transparent;
    color: #8B0000;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 0, 0, 0.4);
}

.btn-secondary {
    background: #D4AF37;
    color: #000;
    border: 3px solid #D4AF37;
}

.btn-secondary:hover {
    background: transparent;
    color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    border: 3px solid #D4AF37;
    color: #D4AF37;
}

.btn-outline:hover {
    background: #D4AF37;
    color: #000;
}

/* Section Styles */
section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    color: #000;
    margin-bottom: 2rem;
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-line {
    width: 120px;
    height: 6px;
    background: #8B0000;
    margin: 2rem auto;
}

/* Latest Book Section */
.latest-book {
    background: #E5E5E5;
}

.book-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: center;
}

.book-cover {
    position: relative;
    text-align: center;
}

.book-cover img {
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border: 5px solid #000;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.book-cover:hover img {
    transform: scale(1.05) rotateY(5deg);
}

.book-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 520px;
    background: linear-gradient(45deg, #8B0000, #D4AF37);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(30px);
}

.book-cover:hover .book-glow {
    opacity: 0.4;
}

.book-info {
    padding: 3rem 0;
}

.book-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    color: #000;
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.book-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 3rem;
    margin-top: 1rem;
    font-weight: 500;
}

.book-details {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #8B0000;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Next Event Section */
.next-event {
    background: #000;
    color: white;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid #8B0000;
    padding: 4rem;
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 4rem;
    align-items: center;
}

.event-icon {
    font-size: 4rem;
    color: #D4AF37;
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-date,
.event-location {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.9;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-name {
    font-size: clamp(1.5rem, 2vw, 2rem);
    color: #D4AF37;
    margin: 1rem 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

/* Latest Intervention Section */
.latest-intervention {
    background: #E5E5E5;
}

.intervention-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.intervention-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    color: #000;
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.intervention-date {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #8B0000;
    font-weight: 900;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.intervention-excerpt {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
    font-weight: 500;
}

.intervention-media {
    text-align: center;
}

.media-thumbnail {
    position: relative;
    border: 5px solid #000;
    overflow: hidden;
    cursor: pointer;
}

.media-thumbnail img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-thumbnail:hover img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(139, 0, 0, 0.9);
    border: 3px solid #D4AF37;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #8B0000;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Blog Articles Section */
.blog-articles {
    background: white;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.article-card {
    background: white;
    border: 3px solid #000;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: #8B0000;
}

.article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-category {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #8B0000;
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.article-content {
    padding: 3rem;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.article-excerpt {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 500;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #999;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-link {
    color: #8B0000;
    font-weight: 900;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-link:hover {
    color: #A30000;
}

.articles-footer {
    text-align: center;
}

/* Social Media & Newsletter Section */
.social-newsletter {
    background: #000;
    color: white;
}

.social-content {
    text-align: center;
}

.social-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 4rem);
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.9;
}

.social-description {
    font-size: 1.4rem;
    opacity: 0.8;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid #8B0000;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.social-link:hover {
    background: #8B0000;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 0, 0, 0.4);
}

.social-link i {
    font-size: 1.5rem;
}

.newsletter {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    margin-bottom: 2rem;
    color: #D4AF37;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.newsletter-form {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    width: 100%;
    gap: 1.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 1.5rem 2rem;
    border: 3px solid #8B0000;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.newsletter-input:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    white-space: nowrap;
}

/* Footer */
.footer {
    background: #2F2F2F;
    color: #F5F5F5;
    padding: 6rem 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h4 {
    color: #D4AF37;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.footer-description {
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ccc;
    font-weight: 600;
}

.contact-item a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 700;
}

.contact-item a:hover {
    color: #E6C547;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.footer-menu a:hover {
    color: #D4AF37;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 2px solid #444;
}

.footer-copyright {
    color: #999;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: #444;
    color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #444;
}

.social-icon:hover {
    background: #D4AF37;
    color: #000;
    border-color: #D4AF37;
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes progress {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(15px);
        opacity: 0.5;
    }
}

@keyframes pulse {
    0% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Page Header Styles */
.page-header {
    background: #000;
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 80px;
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.9;
}

.page-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.breadcrumb a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #E6C547;
}

.breadcrumb span {
    color: #666;
}

/* Biography Styles */
.biography-content {
    background: white;
    padding: 6rem 0;
}

.biography-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
}

.biography-image {
    position: sticky;
    top: 120px;
}

.biography-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 5px solid #000;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.image-caption {
    margin-top: 1.5rem;
    text-align: center;
}

.image-caption p {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.biography-text {
    padding: 2rem 0;
}

.bio-section {
    margin-bottom: 4rem;
}

.bio-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #8B0000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.bio-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Timeline Styles */
.timeline-section {
    background: #E5E5E5;
    padding: 6rem 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #8B0000;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #8B0000;
    color: white;
    padding: 1rem 2rem;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border: 3px solid #000;
    flex: 1;
    margin: 0 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    font-weight: 500;
}

/* Journey Styles */
.journey-content {
    background: white;
    padding: 6rem 0;
}

.journey-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.journey-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.journey-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #666;
    font-weight: 500;
}

.journey-phases {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.phase-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    background: white;
    border: 3px solid #000;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-5px);
}

.phase-icon {
    width: 80px;
    height: 80px;
    background: #8B0000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border: 3px solid #000;
}

.phase-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.phase-period {
    background: #D4AF37;
    color: #000;
    padding: 0.5rem 1rem;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.phase-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 500;
}

.phase-highlights {
    list-style: none;
    padding: 0;
}

.phase-highlights li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: #666;
    font-weight: 600;
}

.phase-highlights li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #8B0000;
    font-weight: 900;
}

/* Values Section */
.values-section {
    background: #E5E5E5;
    padding: 6rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.value-card {
    background: white;
    padding: 3rem;
    text-align: center;
    border: 3px solid #000;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #8B0000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    border: 3px solid #000;
}

.value-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.value-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 500;
}

/* Education Styles */
.education-content {
    background: white;
    padding: 6rem 0;
}

.education-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.education-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.education-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #666;
    font-weight: 500;
}

.education-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.education-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.education-year {
    background: #8B0000;
    color: white;
    padding: 1.5rem 2rem;
    font-weight: 900;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.education-content-box {
    background: white;
    border: 3px solid #000;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.education-icon {
    width: 60px;
    height: 60px;
    background: #D4AF37;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    border: 2px solid #000;
}

.education-degree {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.education-institution {
    font-size: 1.2rem;
    color: #8B0000;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.education-details .education-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 500;
}

.education-highlights h4 {
    font-size: 1rem;
    font-weight: 900;
    color: #8B0000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.education-highlights ul {
    list-style: none;
    padding: 0;
}

.education-highlights li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: #666;
    font-weight: 600;
}

.education-highlights li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: 900;
}

/* Additional Training */
.additional-training {
    background: #E5E5E5;
    padding: 6rem 0;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.training-card {
    background: white;
    padding: 3rem;
    text-align: center;
    border: 3px solid #000;
    transition: all 0.3s ease;
}

.training-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.training-icon {
    width: 60px;
    height: 60px;
    background: #8B0000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin: 0 auto 2rem;
    border: 2px solid #000;
}

.training-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.training-institution {
    font-size: 1rem;
    color: #8B0000;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.training-year {
    background: #D4AF37;
    color: #000;
    padding: 0.3rem 0.8rem;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1rem;
}

.training-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 500;
}

/* Publications Section */
.publications-section {
    background: white;
    padding: 6rem 0;
}

.publications-list {
    max-width: 900px;
    margin: 0 auto;
}

.publication-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #E5E5E5;
    align-items: start;
}

.publication-year {
    background: #8B0000;
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    min-width: 80px;
    text-align: center;
}

.publication-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.publication-journal {
    font-size: 1rem;
    color: #8B0000;
    font-weight: 700;
    margin-bottom: 1rem;
    font-style: italic;
}

.publication-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 500;
}

/* Awards Styles */
.awards-content {
    background: white;
    padding: 6rem 0;
}

.awards-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 6rem;
}

.awards-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.awards-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #666;
    font-weight: 500;
}

.awards-categories {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.award-category {
    background: #E5E5E5;
    padding: 4rem;
    border: 3px solid #000;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: #8B0000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border: 3px solid #000;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.award-item {
    background: white;
    padding: 3rem;
    border: 3px solid #000;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.award-year {
    background: #D4AF37;
    color: #000;
    padding: 1.5rem 2rem;
    font-weight: 900;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #8B0000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.award-organization {
    font-size: 1.1rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.award-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.award-work {
    background: #E5E5E5;
    padding: 1rem 1.5rem;
    font-weight: 700;
    color: #8B0000;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Recognition Stats */
.recognition-stats {
    background: #E5E5E5;
    padding: 6rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-card {
    background: white;
    padding: 3rem;
    text-align: center;
    border: 3px solid #000;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: #8B0000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    border: 3px solid #000;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #D4AF37;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Interventions Styles */
.interventions-content {
    background: white;
    padding: 6rem 0;
}

.interventions-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.interventions-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.interventions-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #666;
    font-weight: 500;
}

.interventions-filter {
    margin-bottom: 4rem;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #8B0000;
    color: #8B0000;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #8B0000;
    color: white;
}

.interventions-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.intervention-card {
    background: white;
    border: 3px solid #000;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    transition: all 0.3s ease;
}

.intervention-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.intervention-date {
    background: #8B0000;
    color: white;
    padding: 2rem;
    text-align: center;
    min-width: 120px;
}

.intervention-date .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.intervention-date .month {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.intervention-date .year {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.8;
}

.intervention-category {
    background: #D4AF37;
    color: #000;
    padding: 0.5rem 1rem;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.intervention-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.intervention-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
}

.intervention-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8B0000;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.intervention-actions {
    display: flex;
    gap: 1.5rem;
}

.intervention-stats {
    background: #E5E5E5;
    padding: 6rem 0;
}

/* Projects Styles */
.projects-content {
    background: white;
    padding: 6rem 0;
}

.projects-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 6rem;
}

.projects-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.projects-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #666;
    font-weight: 500;
}

.projects-categories {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.project-category {
    background: #E5E5E5;
    padding: 4rem;
    border: 3px solid #000;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.project-card {
    background: white;
    border: 3px solid #000;
    padding: 3rem;
    position: relative;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.project-status {
    position: absolute;
    top: -15px;
    right: 3rem;
    padding: 0.8rem 2rem;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.project-status.approved {
    background: #22c55e;
    color: white;
}

.project-status.in-progress {
    background: #f59e0b;
    color: white;
}

.project-status.proposed {
    background: #3b82f6;
    color: white;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #8B0000;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.project-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 500;
}

.project-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #E5E5E5;
    border: 2px solid #000;
}

.progress-fill {
    height: 100%;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.progress-text {
    font-weight: 900;
    color: #8B0000;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.projects-impact {
    background: #E5E5E5;
    padding: 6rem 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.impact-card {
    background: white;
    padding: 3rem;
    text-align: center;
    border: 3px solid #000;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: #8B0000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    border: 3px solid #000;
}

.impact-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #D4AF37;
    margin-bottom: 1rem;
    line-height: 1;
}

.impact-label {
    font-size: 1rem;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.impact-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 500;
}

/* Agenda Styles */
.calendar-nav {
    background: #E5E5E5;
    padding: 3rem 0;
}

.calendar-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.calendar-btn {
    width: 50px;
    height: 50px;
    background: #8B0000;
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-btn:hover {
    background: #A30000;
    transform: scale(1.1);
}

.current-month {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.view-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.view-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #8B0000;
    color: #8B0000;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-btn:hover,
.view-btn.active {
    background: #8B0000;
    color: white;
}

.events-content {
    background: white;
    padding: 6rem 0;
}

.events-filter {
    margin-bottom: 4rem;
    text-align: center;
}

.events-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-section {
    margin-bottom: 6rem;
}

.timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #8B0000;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    text-align: center;
}

.event-item {
    background: white;
    border: 3px solid #000;
    padding: 3rem;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.event-item.past-event {
    opacity: 0.7;
    border-color: #ccc;
}

.event-date-badge {
    background: #8B0000;
    color: white;
    padding: 2rem;
    text-align: center;
    min-width: 120px;
}

.event-date-badge .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.event-date-badge .month {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.event-date-badge .year {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.8;
}

.event-category {
    background: #D4AF37;
    color: #000;
    padding: 0.5rem 1rem;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.event-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
}

.event-actions {
    display: flex;
    gap: 1.5rem;
}

.calendar-view {
    background: white;
    padding: 6rem 0;
}

.calendar-grid {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #000;
    margin-bottom: 1px;
}

.day-header {
    background: #8B0000;
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #000;
}

.calendar-legend {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.calendar-legend h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.legend-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legend-color {
    width: 20px;
    height: 20px;
    border: 2px solid #000;
}

.legend-color.conferencia {
    background: #3b82f6;
}

.legend-color.lancamento {
    background: #22c55e;
}

.legend-color.politico {
    background: #8B0000;
}

.legend-color.literario {
    background: #D4AF37;
}

/* Books Styles */
.books-content {
    background: white;
    padding: 6rem 0;
}

.books-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.books-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.books-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #666;
    font-weight: 500;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
}

.book-card {
    background: white;
    border: 3px solid #000;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.book-card.featured {
    border-color: #D4AF37;
    border-width: 5px;
}

.book-card.upcoming {
    border-color: #3b82f6;
}

.book-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.8rem 1.5rem;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
}

.book-badge.featured {
    background: #D4AF37;
    color: #000;
}

.book-badge.award {
    background: #22c55e;
    color: white;
}

.book-badge.upcoming {
    background: #3b82f6;
    color: white;
}

.book-cover-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.book-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.book-card:hover .book-cover {
    transform: scale(1.1);
}

.book-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-card:hover .book-overlay {
    opacity: 1;
}

.book-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.book-info {
    padding: 3rem;
}

.book-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.book-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.book-meta span {
    background: #E5E5E5;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
}

.book-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
}

.book-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
    color: #D4AF37;
}

.rating-text {
    font-weight: 700;
    color: #666;
    font-size: 0.9rem;
}

.book-purchase {
    border-top: 2px solid #E5E5E5;
    padding-top: 2rem;
}

.price-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.digital-price,
.physical-price {
    font-weight: 900;
    font-size: 1.2rem;
    color: #8B0000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.purchase-buttons {
    display: flex;
    gap: 1rem;
}

.purchase-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem;
    font-size: 0.9rem;
}

.book-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.status-bar {
    flex: 1;
    height: 8px;
    background: #E5E5E5;
    border: 2px solid #000;
}

.status-progress {
    height: 100%;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.status-text {
    font-weight: 900;
    color: #3b82f6;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.book-launch {
    text-align: center;
}

.launch-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.notify-btn {
    background: #3b82f6;
    color: white;
    border: 3px solid #3b82f6;
}

.notify-btn:hover {
    background: transparent;
    color: #3b82f6;
}

.book-stats {
    background: #E5E5E5;
    padding: 6rem 0;
}

.reviews-section {
    background: white;
    padding: 6rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.review-card {
    background: white;
    border: 3px solid #000;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.review-rating {
    margin-bottom: 2rem;
}

.review-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 500;
}

.review-author {
    font-weight: 700;
    color: #8B0000;
}

.review-author span {
    display: block;
    font-weight: 500;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Book Details Styles */
.book-details {
    padding: 3rem 2rem;
    background: white;
}

.book-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.book-cover-large {
    position: relative;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.book-cover-large img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.book-cover-large:hover img {
    transform: scale(1.05);
}

.book-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #D4AF37;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.book-badge.award {
    background: #8B0000;
    color: white;
}

.book-rating-large {
    text-align: center;
    margin-bottom: 2rem;
}

.book-rating-large .stars {
    color: #D4AF37;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.book-rating-large .rating-text {
    color: #666;
    font-size: 0.9rem;
}

.book-purchase-section {
    background: #F8F8F8;
    padding: 2rem;
    border-radius: 12px;
}

.purchase-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.purchase-option {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.purchase-option:hover {
    border-color: #D4AF37;
    transform: translateY(-2px);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #000;
}

.option-price {
    font-size: 2rem;
    font-weight: 900;
    color: #8B0000;
    margin-bottom: 1rem;
}

.option-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.option-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.option-features .fa-check {
    color: #22c55e;
}

.shipping-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #666;
}

.book-meta-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #F8F8F8;
    border-radius: 8px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.1em;
}

.meta-value {
    font-weight: 600;
    color: #000;
}

.book-description h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.book-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

.book-themes {
    margin: 2rem 0;
}

.book-themes h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #000;
}

.themes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.theme-tag {
    background: #E5E5E5;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.book-awards {
    margin: 2rem 0;
}

.book-awards h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #000;
}

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #F8F8F8;
    border-radius: 8px;
}

.award-item i {
    color: #D4AF37;
    font-size: 1.5rem;
}

.award-info strong {
    display: block;
    color: #000;
    margin-bottom: 0.25rem;
}

.award-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Book Reviews */
.book-reviews {
    padding: 4rem 0;
    background: #E5E5E5;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info strong {
    display: block;
    color: #000;
    margin-bottom: 0.25rem;
}

.reviewer-info span {
    color: #666;
    font-size: 0.9rem;
}

.review-rating .stars {
    color: #D4AF37;
}

.review-text {
    line-height: 1.6;
    color: #333;
    font-style: italic;
}

/* Related Books */
.related-books {
    padding: 4rem 0;
    background: white;
}

/* Reading Interface */
.reading-interface {
    min-height: 100vh;
    background: white;
}

.reading-header {
    background: #000;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.reading-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.book-title {
    font-size: 1.2rem;
    font-weight: 900;
    margin: 0;
}

.chapter-info {
    color: #D4AF37;
    font-size: 0.9rem;
}

.reading-tools {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.font-controls {
    display: flex;
    gap: 0.5rem;
}

.font-btn {
    background: #333;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.font-btn:hover {
    background: #D4AF37;
    color: #000;
}

.theme-controls {
    display: flex;
    gap: 0.5rem;
}

.theme-btn {
    background: #333;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-btn.active,
.theme-btn:hover {
    background: #D4AF37;
    color: #000;
}

.progress-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-text {
    font-size: 0.9rem;
    white-space: nowrap;
}

.progress-bar {
    width: 100px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.reading-content {
    padding: 4rem 0;
}

.reading-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.chapter-header {
    text-align: center;
    margin-bottom: 3rem;
}

.chapter-header h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.chapter-header h3 {
    font-size: 1.5rem;
    color: #666;
    font-weight: 400;
}

.text-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.chapter-navigation {
    margin-top: 4rem;
    padding: 2rem;
    background: #F8F8F8;
    border-radius: 12px;
    text-align: center;
}

.nav-info {
    color: #666;
    margin-bottom: 2rem;
}

.purchase-prompt h3 {
    color: #000;
    margin-bottom: 1rem;
}

.purchase-prompt p {
    color: #666;
    margin-bottom: 2rem;
}

.purchase-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Styles */
.blog-content {
    padding: 4rem 0;
    background: white;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.blog-filters {
    margin-bottom: 3rem;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #E5E5E5;
    color: #666;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #000;
    border-color: #000;
    color: white;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-post {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post.featured {
    grid-template-columns: 1fr;
    background: #F8F8F8;
    border: 2px solid #D4AF37;
}

.blog-post.featured .post-image {
    height: 300px;
    margin-bottom: 2rem;
}

.post-image {
    position: relative;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #D4AF37;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 900;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.post-title {
    margin-bottom: 1rem;
}

.post-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #8B0000;
}

.blog-post.featured .post-title {
    font-size: 2rem;
}

.post-excerpt {
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: #E5E5E5;
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    background: transparent;
    border: 2px solid #E5E5E5;
    color: #666;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn.active,
.pagination-btn:hover {
    background: #000;
    border-color: #000;
    color: white;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: #F8F8F8;
    padding: 2rem;
    border-radius: 12px;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.author-widget {
    text-align: center;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.author-bio {
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.popular-post img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.popular-content h4 {
    margin-bottom: 0.25rem;
}

.popular-content h4 a {
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.3;
}

.popular-content h4 a:hover {
    color: #8B0000;
}

.popular-date {
    font-size: 0.8rem;
    color: #666;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: #000;
    color: white;
}

.category-count {
    background: #E5E5E5;
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-link:hover .category-count {
    background: #D4AF37;
}

.newsletter-widget p {
    margin-bottom: 1rem;
    color: #333;
}

.newsletter-widget .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-widget .newsletter-input {
    padding: 0.75rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 1rem;
}

/* Article Styles */
.article-header {
    padding: 4rem 0 2rem;
    background: #F8F8F8;
    margin-top: 80px;
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.article-category {
    background: #000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.article-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: #000;
}

.publish-date {
    color: #666;
    font-size: 0.9rem;
}

.article-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.article-content {
    padding: 2rem 2rem;
    background: white;
}

.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.article-image {
    margin-bottom: 3rem;
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.article-lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-text h2 {
    font-size: 1.8rem;
    color: #000;
    margin: 2rem 0 1rem;
}

.article-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.article-text blockquote {
    background: #F8F8F8;
    border-left: 4px solid #D4AF37;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #000;
}

.article-conclusion {
    background: #F8F8F8;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.article-tags {
    margin: 3rem 0;
    padding: 2rem;
    background: #F8F8F8;
    border-radius: 12px;
}

.article-tags h3 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 1rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-share {
    margin: 3rem 0;
    padding: 2rem;
    background: #F8F8F8;
    border-radius: 12px;
}

.article-share h3 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

.article-author {
    margin: 3rem 0;
}

.author-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: #F8F8F8;
    border-radius: 12px;
}

.author-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    color: #000;
    margin-bottom: 0.5rem;
}

.author-title {
    color: #8B0000;
    font-weight: 600;
    margin-bottom: 1rem;
}

.author-bio {
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background: #000;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #D4AF37;
    color: #000;
}

.article-sidebar .related-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.related-article img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.related-content h4 {
    margin-bottom: 0.5rem;
}

.related-content h4 a {
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.3;
}

.related-content h4 a:hover {
    color: #8B0000;
}

.related-date {
    font-size: 0.8rem;
    color: #666;
}

.books-widget {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.book-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.book-item img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.book-info h4 {
    margin-bottom: 0.5rem;
}

.book-info h4 a {
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
}

.book-info h4 a:hover {
    color: #8B0000;
}

.book-price {
    color: #8B0000;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Contact Styles */
.contact-content {
    padding: 4rem 0;
    background: white;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-intro h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 1rem;
}

.contact-intro p {
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-info h3 {
    color: #000;
    margin-bottom: 0.5rem;
}

.method-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

.method-info a {
    color: #8B0000;
    text-decoration: none;
    font-weight: 600;
}

.method-info a:hover {
    text-decoration: underline;
}

.method-info address {
    font-style: normal;
    line-height: 1.5;
    color: #333;
}

.social-contact h3 {
    color: #000;
    margin-bottom: 1rem;
}

.social-contact p {
    color: #666;
    margin-bottom: 1.5rem;
}

.social-contact .social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-contact .social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #F8F8F8;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
}

.social-contact .social-link:hover {
    background: #000;
    color: white;
}

.social-contact .social-link i {
    width: 30px;
    text-align: center;
    font-size: 1.2rem;
}

.form-container {
    background: #F8F8F8;
    padding: 3rem;
    border-radius: 12px;
}

.form-container h2 {
    color: #000;
    margin-bottom: 1rem;
}

.form-container p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 700;
    color: #000;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #E5E5E5;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #000;
    border-color: #000;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

.checkbox-label a {
    color: #8B0000;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    align-self: flex-start;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #E5E5E5;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #F8F8F8;
}

.faq-question h3 {
    color: #000;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #666;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        width: 100%;
    }
    
    .book-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .intervention-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .biography-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .biography-image {
        position: static;
        text-align: center;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .phase-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .education-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .education-year {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        min-height: auto;
        padding: 1rem 2rem;
    }
    
    .education-content-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .award-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .award-year {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        min-height: auto;
        padding: 1rem 2rem;
    }
    
    .publication-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .intervention-card,
    .project-card,
    .event-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intervention-date,
    .event-date-badge {
        align-self: center;
    }
    
    .books-grid {
        grid-template-columns: 1fr;
    }
    
    .purchase-buttons {
        flex-direction: column;
    }
    
    .calendar-controls {
        gap: 2rem;
    }
    
    .current-month {
        font-size: 2rem;
    }
    
    .view-toggle {
        flex-direction: column;
        align-items: center;
    }
    
    .book-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-post {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .reading-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .reading-tools {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    
    .hero {
        padding-top: 200px;
    }


}
@media (max-width: 768px) {

    .logo {
        font-size: 2rem;
    }
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding-top: 150px;
    }
    
    .hero-main {
        gap: 2rem;
    }
    
    .hero-author-image {
        width: 280px;
        height: 350px;
    }
    
    .hero-image-glow {
        width: 300px;
        height: 370px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    section {
        padding: 5rem 0;
    }
    
    .event-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 3rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .intervention-meta,
    .event-details,
    .project-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .intervention-actions,
    .event-actions {
        flex-direction: column;
    }
    
    .calendar-controls {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .legend-items {
        flex-direction: column;
        gap: 1rem;
    }
    
    .price-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .article-content {
        padding: 2rem;
    }
    
    .event-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .biography-content,
    .journey-content,
    .education-content,
    .awards-content {
        padding: 4rem 0;
    }
    
    .timeline-section,
    .values-section,
    .additional-training,
    .publications-section,
    .recognition-stats {
        padding: 4rem 0;
    }
    
    .phase-card,
    .education-content-box,
    .award-item {
        padding: 2rem;
    }
    
    .award-category {
        padding: 2rem;
    }
    
    .intervention-card,
    .project-card,
    .event-item,
    .book-card {
        padding: 2rem;
    }
    
    .book-info {
        padding: 2rem;
    }
    
    .project-category {
        padding: 2rem;
    }
    
    .impact-card,
    .review-card {
        padding: 2rem;
    }
}


////////
////////
/* Estilos para a nova estrutura de intervenções */
.intervention-date-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.intervention-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border: 3px solid #000;
}

.intervention-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.intervention-card:hover .intervention-image img {
    transform: scale(1.1);
}

/* Ajuste responsivo */
@media (max-width: 1200px) {
    .intervention-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intervention-date-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .intervention-image {
        width: 200px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .intervention-date-container {
        flex-direction: column;
    }
    
    .intervention-image {
        width: 100%;
        height: 150px;
    }
}

/* Estilos para o menu mobile - CORRIGIDO */
@media (max-width: 768px) {
    .navigation {
        position: relative;
    }

    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #000;
        flex-direction: column;
        padding: 100px 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        border-left: 3px solid #8B0000;
        display: flex !important; /* Força exibição */
        gap: 0rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        margin: 0;
    }
    
    .nav-item > a {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        justify-content: space-between;
        font-size: 1.1rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        padding: 0;
        margin: 1rem 0;
        width: 100%;
        display: none;
        box-shadow: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 1rem 1.5rem;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.95rem;
    }
    
    .dropdown-menu a:hover {
        background: rgba(139, 0, 0, 0.2);
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1000;
        position: relative;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .mobile-menu-toggle span {
        transition: all 0.3s ease;
        width: 30px;
        height: 3px;
        background: white;
        display: block;
    }
    
    /* Prevenir scrolling quando menu está aberto */
    body.no-scroll {
        overflow: hidden;
    }
    
    /* Overlay para fundo quando menu está aberto */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 998;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    /* Ajustes no header para mobile */
    .header-content {
        padding: 1rem 0;
    }
    
    .logo {
        font-size: 1.8rem;
    }
}