/* Reset básico y tipografía */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}

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

/* Header */
header {
    background-color: #1f1f1f;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
header h1 {
    margin: 0;
    font-weight: 700;
    color: #33c9ff;
}
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}
nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #33c9ff;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #33c9ff, #6a11cb);
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 40px;
}
.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.hero p {
    font-size: 1.2rem;
}

/* Features section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 30px;
}
.feature {
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(51, 201, 255, 0.3);
    text-align: center;
    transition: transform 0.3s;
}
.feature:hover {
    transform: translateY(-5px);
}
.feature h3 {
    color: #33c9ff;
}
.feature img {
    width: 70px;
    margin-bottom: 15px;
}

/* Products section */
.products {
    margin-top: 50px;
}
.product-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.product {
    background-color: #222;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}
.product:hover {
    box-shadow: 0 8px 24px rgba(51, 201, 255, 0.7);
}
.product img {
    width: 100%;
    object-fit: cover;
    height: 200px;
}
.product-body {
    padding: 15px;
    color: #ddd;
}
.product-price {
    font-weight: 700;
    color: #33c9ff;
    margin-top: 10px;
    font-size: 1.3rem;
}

/* Section mission */
.mission {
    background-color: #181818;
    padding: 30px 20px;
    margin: 50px 0;
    border-radius: 8px;
    text-align: center;
    color: #b0b0b0;
}

/* Contact form */
.contact form {
    background-color: #222;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    max-width: 500px;
    margin: 0 auto;
}
.contact input, .contact textarea {
    width: 100%;
    padding: 12px 10px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    background-color: #333;
    color: #eee;
    font-size: 1rem;
}
.contact button {
    background-color: #33c9ff;
    color: #121212;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}
.contact button:hover {
    background-color: #1a96c9;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #1f1f1f;
    color: #555;
    font-size: 0.9rem;
}
