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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fcfcf9; /* Blanco hueso suave */
    color: #333;
    line-height: 1.6;
}

/* NAVEGACIÓN */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a.active, .nav-links a:hover {
    color: #8b5a2b; /* Color madera/tierra */
    font-weight: 700;
}

/* MAIN CONTENT */
.main-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-extras {
    text-align: center;
    margin-bottom: 60px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.intro-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
}

/* SECCIÓN IA */
.ia-section {
    margin-bottom: 80px;
}

.card-ia {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-left: 6px solid #4a5d4e;
}

.card-ia h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.prompts-container {
    margin-top: 25px;
}

.prompt-item {
    display: flex;
    align-items: flex-start;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.bullet {
    margin-right: 15px;
    color: #8b5a2b;
    font-weight: bold;
}

.prompt-item p {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
}

/* GRILLA DE GALERÍA */
.producto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.gallery-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #e0e0d0;
}

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

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

.card-text {
    padding: 25px;
}

.card-text h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.card-text p {
    font-size: 0.9rem;
    color: #777;
}

/* FUTURO SECCIÓN */
.future-cta {
    text-align: center;
    margin-top: 80px;
}

.divider {
    height: 1px;
    background: #eee;
    width: 100px;
    margin: 0 auto 40px auto;
}

.future-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

/* FOOTER */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 40px 0;
    margin-top: 100px;
}

.footer-content p {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .nav-links { display: none; } /* Podrías agregar un menú hamburguesa luego */
}
