/* Estilos Generales */
body {
    font-family: 'Poppins', sans-serif;
}

/* Barra Superior */
.top-bar {
    background: #0092CB;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .social-icons a {
    color: white;
    margin-right: 12px;
    text-decoration: none;
    font-size: 16px;
}

.top-bar .top-links a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar .top-links a:hover {
    color: #0092CB;
}

/* Navbar Principal */
.navbar {
    border-bottom: 2px solid #f1f1f1;
    padding: 15px 0;
}

.search-bar {
    flex-grow: 1;
    max-width: 500px;
    margin: 0 auto;
}

.search-bar input {
    border-radius: 25px 0 0 25px;
    border: 1px solid #ccc;
    padding: 8px 15px;
}

.search-bar button {
    border-radius: 0 25px 25px 0;
    padding: 8px 15px;
}

/* Botones de Ingreso y Cotización */
.btn-outline-primary {
    border-radius: 20px;
    padding: 8px 15px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.btn-outline-primary:hover {
    background-color: #0092CB;
    color: white;
}

.btn-dark {
    border-radius: 20px;
    padding: 8px 15px;
    font-weight: bold;
}

/* Menú de Categorías */
.category-menu {
    background: #222;
    padding: 12px 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.category-menu .nav-link {
    color: white;
    margin: 0 15px;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease;
}

.category-menu .nav-link:hover {
    color: #0092CB;
}

.category-menu .nav-link::after {
    content: "";
    display: block;
    width: 0%;
    height: 3px;
    background: #0092CB;
    transition: width 0.3s ease-in-out;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.category-menu .nav-link:hover::after {
    width: 100%;
}


footer {
    background: #ffffff;
    color: #000000;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    width: 22%;
    min-width: 250px;
}

.footer-section h3 {
    color: #0092CB;
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section a {
    text-decoration: none;
    color: #000000;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #0092CB;
    text-decoration: underline;
}

.download-link {
    display: inline-block;
    background: #0092CB;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
}

.download-link:hover {
    background: #0092CB;
    color: #fff;
}

.social-links {
    display: flex;
    flex-direction: column;
}
        
.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 16px;
}

.social-links i {
    font-size: 20px;
    color: #0092CB;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    background: #222;
    margin-top: 20px;
    padding: 15px;
    width: 100%;
}


/* Estilos generales */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

/* Contenedor principal */
.container {
    width: 95%;
    max-width: 1400px;
    margin: 5px auto;
    text-align: center;
}

/* Título principal */
h1 {
    color: #0092CB;
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* Layout con Grid */
.info-container {
    display: grid;
    grid-template-columns: 250px auto;
    gap: 40px;
    align-items: flex-start;
}

/* Menú lateral */
.menu {
    position: sticky;
    top: 20px;
    background: linear-gradient(45deg, #131515, #0092CB);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    height: fit-content;
}

.menu a {
    display: block;
    text-decoration: none;
    color: white;
    padding: 15px 20px;
    margin: 10px 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 16px;
}

.menu a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

/* Contenido principal */
.content {
    text-align: left;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.content:hover {
    transform: translateY(-3px);
}

/* Títulos */
.content h2 {
    color: #0092CB;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Texto */
.content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* Imagen */
.image {
    text-align: center;
    margin-top: 20px;
}

.image img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.image img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .info-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .menu {
        position: static;
        width: 100%;
        text-align: center;
    }
    .menu a {
        text-align: center;
        display: inline-block;
        margin: 5px;
    }
    .content {
        padding: 20px;
    }
    .image img {
        max-width: 100%;
    }
}
