/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --primary-color: #1a1a1a;
    --accent-color: #c5a059;
    /* Gold/Champagne for sophistication */
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --serif-font: 'Playfair Display', serif;
    --sans-font: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--sans-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: var(--serif-font);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header & Nav */
.top-header {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Menu Toggle Button (Mobile) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.logo-text {
    font-family: var(--serif-font);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

nav {
    padding: 15px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

/* Hero Section - Creative Banner Style */
.hero-banner {
    background: linear-gradient(135deg, #fcfcfc 0%, #f5f5f5 100%);
    padding: 60px 0 80px;
    /* Reduced padding */
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    /* Reduced height for better balance */
    display: flex;
    align-items: center;
}

/* Elementos Decorativos de Fundo */
.hero-banner::before {
    content: 'NÉYA';
    position: absolute;
    top: 10%;
    right: -5%;
    font-size: 15vw;
    /* Reduced font size */
    font-family: var(--serif-font);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-right: 40px;
}

.hero-content .badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    border-radius: 0 20px 20px 0;
    box-shadow: 10px 10px 30px rgba(197, 160, 89, 0.2);
}

.hero-content h1 {
    font-size: 4.5rem;
    /* Slightly reduced for better balance */
    line-height: 0.95;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
}

.hero-content h1 span {
    display: block;
    font-size: 1.5rem;
    font-family: var(--sans-font);
    font-weight: 300;
    letter-spacing: 8px;
    margin-top: 10px;
    color: var(--accent-color);
}

.hero-content .description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
    max-width: 450px;
    position: relative;
}

.hero-content .description::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-card {
    position: relative;
    width: 80%;
    /* Reduced width */
    padding: 15px;
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    transform: rotate(2deg);
    transition: var(--transition);
}

.hero-image-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image-card img {
    width: 100%;
    display: block;
    filter: grayscale(10%) contrast(105%);
}

.hero-image-card .image-caption {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 25px;
    font-family: var(--serif-font);
    font-size: 1rem;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

nav ul li a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

nav ul li a:hover {
    color: var(--accent-color);
}

/* Video Section */
.video-section {
    padding: 0;
    background: #000;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

/* Bio Section */
.bio-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.bio-img img {
    box-shadow: 20px 20px 0 var(--accent-color);
}

.bio-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.bio-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

/* Projects Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Agenda Section */
.agenda-list {
    max-width: 800px;
    margin: 0 auto;
}

.agenda-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.agenda-date {
    flex: 0 0 100px;
}

.agenda-date .day {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
}

.agenda-date .month {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.agenda-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-align: left;
}

.agenda-info p {
    color: #777;
    font-size: 0.9rem;
    text-align: left;
}

/* Music Section */
.music-platforms {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-link i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.platform-link:hover i {
    color: var(--accent-color);
}

/* Books Section - Editorial Luxury Style */
.books-section {
    background: linear-gradient(to right, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.books-section::before {
    content: 'LITERATURA';
    position: absolute;
    bottom: -5%;
    left: -5%;
    font-size: 15vw;
    font-family: var(--serif-font);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.books-container {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.books-image-wrapper {
    flex: 1.2;
    position: relative;
}

.books-image-wrapper::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--accent-color);
    opacity: 0.3;
    z-index: -1;
}

.books-image-wrapper img {
    width: 100%;
    display: block;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    filter: brightness(1.1) contrast(1.1);
}

.books-content {
    flex: 0.8;
}

.books-content .label {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: block;
}

.books-content h2 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 700;
}

.books-content h2 span {
    display: block;
    font-size: 1.5rem;
    font-family: var(--sans-font);
    font-weight: 300;
    color: #ccc;
    margin-top: 10px;
}

.books-content .description {
    font-size: 1.1rem;
    line-height: 2;
    color: #bbb;
    margin-bottom: 50px;
    border-left: 3px solid var(--accent-color);
    padding-left: 30px;
}

.books-cta {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 992px) {
    .books-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .books-image-wrapper {
        width: 100%;
    }

    .books-content h2 {
        font-size: 3rem;
    }

    .books-content .description {
        border-left: none;
        padding-left: 0;
    }

    .books-cta {
        justify-content: center;
    }
}

/* Pre-footer Section */
.contact-prefooter {
    background-color: var(--light-bg);
    text-align: center;
}

.contact-prefooter h2 {
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-details p {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    font-size: 1.5rem;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background-color: var(--white);
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-quote {
    font-family: var(--serif-font);
    font-size: 1.5rem;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto 40px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.footer-bottom {
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .top-header .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .logo-text {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .header-contact {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .header-contact span {
        margin-right: 0 !important;
        display: block;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 15px;
    }

    nav {
        padding: 0;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        gap: 0 !important;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f9f9f9;
        font-size: 0.9rem;
    }

    .hero-banner {
        padding: 40px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        display: flex;
        flex-direction: column;
        /* Ensures order control */
    }

    .hero-image-wrapper {
        order: 1;
        /* Photo first on mobile */
        justify-content: center;
        margin-bottom: 40px;
    }

    .hero-image-card {
        width: 80%;
        transform: rotate(0);
    }

    .hero-image-card .image-caption {
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        bottom: -20px;
    }

    .hero-content {
        order: 2;
        /* Text below photo */
        padding-right: 0;
    }

    .hero-content .badge {
        border-radius: 20px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content .description {
        margin: 0 auto 35px;
    }

    .hero-content .description::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-btns {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .bio-content {
        grid-template-columns: 1fr;
    }

    nav ul {
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* --- LUXURY V2 ADDITIONS --- */
.hero-luxury-v2 {
    background: radial-gradient(circle at 20% 50%, #fdf8f0 0%, #f4e9d5 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero-luxury-v2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('pasted_file_vJVdyY_image.png') no-repeat center right;
    background-size: cover;
    z-index: 1;
}

.hero-luxury-v2 .overlay-curve {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(244, 233, 213, 1) 0%, rgba(244, 233, 213, 0.8) 20%, transparent 100%);
    z-index: 2;
}

.luxury-container-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.luxury-content-v2 {
    padding-right: 50px;
}

.motto-top-v2 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.motto-top-v2 i {
    color: #5d0c1d;
    font-size: 1.5rem;
}

.motto-top-v2 span {
    font-family: var(--serif-font);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.luxury-name-v2 {
    position: relative;
    margin-bottom: 35px;
}

.luxury-name-v2 h1 {
    font-family: var(--serif-font);
    font-size: 5rem;
    line-height: 0.8;
    color: #5d0c1d;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
}

.luxury-name-v2 .surname-v2 {
    font-family: 'Great Vibes', cursive;
    font-size: 4.5rem;
    color: var(--accent-color);
    position: absolute;
    top: 35px;
    left: 20px;
    font-weight: 400;
}

.ministry-label-v2 {
    display: block;
    margin-top: 55px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-color);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
}

.luxury-description-v2 {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 25px 0;
    color: #444;
}

.luxury-description-v2 strong {
    color: #5d0c1d;
}

.luxury-roles-v2 {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #5d0c1d;
    margin-bottom: 40px;
}

.luxury-roles-v2 span::after {
    content: '•';
    margin-left: 15px;
    color: var(--accent-color);
}

.luxury-roles-v2 span:last-child::after {
    display: none;
}

.luxury-btns-v2 {
    display: flex;
    gap: 15px;
}

.btn-luxury-burgundy-v2 {
    background: #5d0c1d;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(93, 12, 29, 0.3);
}

.btn-luxury-outline-v2 {
    background: transparent;
    color: var(--text-color);
    padding: 12px 25px;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.luxury-image-v2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.luxury-image-v2 img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

@media (max-width: 992px) {
    .hero-luxury-v2::before {
        width: 100%;
        opacity: 0.25;
    }

    .luxury-container-v2 {
        grid-template-columns: 1fr;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .luxury-content-v2 {
        padding-right: 0;
        order: 2;
    }

    .luxury-image-v2 {
        order: 1;
        margin-bottom: 30px;
    }

    .motto-top-v2 {
        justify-content: center;
    }

    .luxury-name-v2 h1 {
        font-size: 3.5rem;
    }

    .luxury-name-v2 .surname-v2 {
        font-size: 3rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .luxury-roles-v2 {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .luxury-roles-v2 span::after {
        display: none;
    }

    .luxury-btns-v2 {
        flex-direction: column;
        align-items: center;
    }
}

/* Banner responsivo */
.responsive-header {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.responsive-header img.banner-img {
    width: 100%;
    height: auto;
    display: block;
}