/* Estilos Generales */
:root {
    --primary-color: #5C4033; /* Marrón oscuro para combinar con el logo de Bodeguita */
    --secondary-color: #D35400; /* Naranja terroso para contrastes y botones */
    --text-color: #333333;
    --bg-light: #F9F9F9;
    --bg-dark: #2C3E50; /* Azul oscuro para dar un toque tecnológico */
    --white: #FFFFFF;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Encabezado */
header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    max-height: 80px; /* Tamaño optimizado para tu logo.png */
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

header nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Sección Hero */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), url('https://images.unsplash.com/photo-1586769852836-bc069f19e1b6') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 140px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background: #E67E22;
    transform: translateY(-2px);
}

/* Características y Casos de Uso */
.features, .use-cases {
    padding: 80px 0;
    text-align: center;
}

.features {
    background: var(--white);
}

.features h2, .use-cases h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.feature-grid, .use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item, .use-case-item {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover, .use-case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.feature-item h3, .use-case-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Contacto */
.contact {
    padding: 80px 0;
    background: var(--bg-dark);
    color: var(--white);
    text-align: center;
}

.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Footer */
footer {
    background: #1A252F;
    color: var(--white);
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
}

/* Diseño Responsivo para Móviles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }

    header nav ul {
        flex-direction: column;
        gap: 15px;
    }
}