/* Estilos Generales */
html {
    scroll-behavior: smooth;
}
body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Lato', sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* --- ESTILOS DEL ENCABEZADO FIJO --- */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #4c2a85;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    height: 70px; 
}

.nav-logo-link {
    position: relative;
    height: 100%;
    width: 300px; /* AUMENTAMOS EL ANCHO PARA DAR ESPACIO AL TEXTO */
    display: flex;
    align-items: center;
    text-decoration: none; /* Quitamos el subrayado del enlace */
}

.nav-logo {
    height: 100px;
    width: auto;
    position: absolute;
    top: 50%; 
    left: 0; /* Lo anclamos a la izquierda */
    transform: translateY(-50%);
}

/* --- NUEVOS ESTILOS PARA EL TEXTO DEL LOGO EN LA BARRA --- */
.nav-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em; /* Tamaño del texto */
    font-weight: 700;
    color: #aa8ed6; /* Color violeta/lila */
    margin-left: 120px; /* Espacio para dejar sitio al logo. Ajusta si es necesario */
}

.fixed-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
.fixed-nav ul li {
    margin-left: 30px;
}
.fixed-nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}
.fixed-nav ul li a:hover {
    color: #aa8ed6;
}

/* Encabezado y Sección Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/1600x900/?nature,dark,food') no-repeat center center/cover;
    min-height: 90vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    padding-top: 70px;
}
.hero-logo {
    max-width: 500px; 
    height: auto;
    margin-bottom: 20px;
}
.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5em;
    margin-bottom: 0.2em;
    background: -webkit-linear-gradient(45deg, #4c2a85, #aa8ed6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content h4 {
    font-size: 1.5em;
    font-weight: 400;
    color: #FFFFFF;
}

/* ESTILOS PARA LAS ANIMACIONES */
.hidden-section {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* (El resto del código CSS permanece igual...) */

.content-section {
    padding: 80px 15%;
    text-align: center;
}
.section-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 40px auto;
    border-radius: 10px;
    border: 2px solid #4c2a85;
}
.content-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-transform: uppercase;
    background: -webkit-linear-gradient(45deg, #4c2a85, #aa8ed6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.content-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    color: #aa8ed6;
    margin-bottom: 30px;
}
.content-section p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 20px auto;
}
.content-section ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.content-section ul li {
    margin-bottom: 15px;
    font-size: 1.1em;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-left: 4px solid #4c2a85;
}
.alternate-bg {
    background-color: #0a0a0a;
}
strong {
    color: #aa8ed6;
    font-weight: 700;
}
.technical-info {
    margin-bottom: 50px;
    text-align: left;
}
.technical-info h4 {
    color: #aa8ed6;
    font-size: 1.3em;
    border-bottom: 2px solid #4c2a85;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}
.transparency-note {
    background-color: rgba(170, 142, 214, 0.1);
    border-left: 4px solid #aa8ed6;
    padding: 20px;
    margin-top: 30px;
    text-align: left;
}
.ingredients-table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
    text-align: left;
}
.ingredients-table th, .ingredients-table td {
    padding: 15px;
    border: 1px solid #4c2a85;
}
.ingredients-table th {
    background-color: #4c2a85;
    font-family: 'Montserrat', sans-serif;
}
.ingredients-table td:first-child {
    font-weight: 700;
    color: #aa8ed6;
}
blockquote {
    max-width: 800px;
    margin: 40px auto;
    border-left: 4px solid #aa8ed6;
    padding-left: 30px;
    font-style: italic;
    text-align: left;
}
blockquote footer {
    margin-top: 20px;
    font-weight: 700;
    text-align: right;
    font-style: normal;
    color: #aa8ed6;
}
.cta-buttons {
    margin-top: 40px;
}
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin: 10px;
}
.btn-primary {
    background-color: #aa8ed6;
    color: #000000;
}
.btn-primary:hover {
    background-color: #FFFFFF;
}
.btn-secondary {
    border: 2px solid #aa8ed6;
    color: #aa8ed6;
}
.btn-secondary:hover {
    background-color: #aa8ed6;
    color: #000000;
}
footer {
    background-color: #0a0a0a;
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #4c2a85;
}
footer p {
    margin: 5px 0;
    color: #aaa;
}
.footer-legal {
    margin-top: 25px;
    font-size: 0.8em;
    color: #888;
}
.footer-legal a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-legal a:hover {
    color: #aa8ed6;
}