/* VARIABLES CORPORATIVAS AURA */
:root {
    --beige-fondo: #E5DED1; 
    --verde-logo: #828E7A;  
    --azul-bruma: #B4BCC2;  
    --taupe-oscuro: #484441; 
    --blanco-roto: #F9F8F6;
}

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

body {
    background-color: var(--beige-fondo);
    font-family: 'Montserrat', sans-serif;
    color: var(--taupe-oscuro);
    line-height: 1.8;
}

/* --- NAVEGACIÓN BASE (ORDENADOR) --- */
.navbar {
    width: 100%;
    background-color: var(--beige-fondo);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Tres columnas para centrar el logo */
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}


.nav-logo {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 400;
    text-align: center;
}


.nav-logo a {
    text-decoration: none; 
    color: inherit;        
    display: block;        
    transition: opacity 0.3s ease;
}

.nav-logo a:hover {
    opacity: 0.7;          
}

.nav-side {
    display: flex;
    justify-content: flex-end; /* Empuja el botón a la derecha */
}

.hide-mobile {
    display: flex; /* Se ve en PC */
}

.btn-nav {
    background-color: var(--taupe-oscuro);
    color: var(--blanco-roto);
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    white-space: nowrap;
}

/* --- ADAPTACIÓN PARA MÓVIL (PANTALLAS < 768px) --- */
@media (max-width: 768px) {
    .navbar {
        padding: 2rem 1rem;
    }

    .nav-container {
        display: flex;
        flex-direction: column; /* Cambia de horizontal a vertical */
        gap: 1.5rem;            /* Espacio entre logo y botón */
    }

    .hide-mobile {
        display: none; /* Eliminamos el espacio vacío innecesario en móvil */
    }

    .nav-side {
        justify-content: center; /* Centra el botón en móvil */
        width: 100%;
    }

    .nav-logo {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }
}

/* Ajuste para el Hero */
.hero {
    margin-top: 0;
    padding-top: 2rem;
}

/* NAVEGACIÓN */
.navbar {
    padding: 2.5rem;
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 400;
}

/* SECCIÓN HERO */
.hero {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
}


.logo-image {
    max-width: 300px; /* Ajusta este valor (ej. 80px, 120px) para el tamaño del logo */
    height: auto;     /* Mantiene la proporción */
    display: block;
    margin: 0 auto;   /* Centra la imagen si el contenedor es más ancho */
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 3.5rem;
    margin: 1.5rem 0;
    font-style: italic;
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* SECCIÓN MÉTODO */
.metodo-section {
    background-color: var(--blanco-roto);
    padding: 4rem 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.card {
    background: transparent;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 1rem;
    color: var(--verde-logo);
}

.card h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

/* --- SECCIÓN SOBRE MÍ / VISIÓN --- */
.about-section {
    padding: 4rem 10%;
    background-color: var(--beige-fondo);
    display: flex;
    justify-content: center;
    text-align: center;
}

.about-content {
    max-width: 700px;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--taupe-oscuro);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--taupe-oscuro);
    opacity: 0.9;
}

/* --- SECCIÓN SERVICIOS GRID (Actualizada) --- */
.servicios-grid {
    padding: 4rem 10%;
    background-color: var(--blanco-roto);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: center;
}

.servicio-item {
    padding: 3rem 2rem;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.5s ease;
}

.servicio-item:hover {
    background-color: white;
    border-color: var(--beige-fondo);
}

/* BOTONES Y CTA */
.cta-section {
    padding: 4rem 10%;
    text-align: center;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border: 1px solid var(--taupe-oscuro);
    text-decoration: none;
    color: var(--taupe-oscuro);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 3px;
    transition: all 0.4s ease;
}

.btn:hover {
    background-color: var(--taupe-oscuro);
    color: white;
}

/* --- SECCIÓN FAQ --- */
.faq-section {
    padding: 4rem 10%;
    background-color: var(--blanco-roto);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    font-style: italic;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Estilo del contenedor desplegable */
details {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.0rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Título de la pregunta */
summary {
    list-style: none; /* Quita la flecha por defecto */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

/* Crear nuestra propia flecha sutil */
summary::after {
    content: '+';
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

/* Cuando está abierto */
details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

/* Contenido de la respuesta */
.faq-content {
    padding-top: 1.5rem;
    padding-right: 2rem;
    cursor: default;
}

.faq-content p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
    color: var(--taupe-oscuro);
}

/* Efecto hover suave */
details:hover summary {
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section { padding: 6rem 5%; }
    summary { font-size: 0.8rem; }
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .metodo-section { padding: 4rem 5%; }
}

/* --- FOOTER ACTUALIZADO --- */
.footer {
    padding: 4rem 10%;
    background-color: var(--beige-fondo);
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-content p {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap; /* Permite que bajen si no caben */
}

.footer-links a {
    text-decoration: none;
    color: var(--taupe-oscuro);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    border-bottom: 1px solid var(--taupe-oscuro);
}

/* Ajuste móvil */
@media (max-width: 600px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* --- ESTILOS PÁGINAS LEGALES --- */
.legal-section {
    padding: 4rem 10% 4rem 10%;
    background-color: var(--blanco-roto);
    min-height: 80vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-style: italic;
    margin-bottom: 3rem;
    color: var(--taupe-oscuro);
}

.legal-block {
    margin-bottom: 3rem;
}

.legal-block h2 {
    font-size: 1.2rem;
    font-style: normal; /* Menos énfasis que los títulos de secciones */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--verde-logo);
    padding-left: 15px;
}

.legal-block p, .legal-block li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--taupe-oscuro);
    opacity: 0.8;
}

.legal-block ul {
    margin: 1.5rem 0;
    list-style-position: inside;
}

.legal-block li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .legal-container h1 { font-size: 2.5rem; }
    .legal-section { padding: 6rem 5%; }
}

