/* assets/css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: #333;
    color: white;
    padding: 1rem 0;
}

nav {
    background-color: #444;
    padding: 0.5rem 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Estilos para la grid de soluciones 
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}
*/

/* slider */
.slider-container {
    width: 1050px;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider img {
    width: 1050px;
    height: auto;
    flex-shrink: 0;
}

.slider-nav {
    position: absolute;
    top: 95%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slider-nav button {
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
    border: none;
    padding: 35px 67px;
    cursor: pointer;
    font-size: 16px;
}

ul li{
    list-style: none;
}

@media (max-width: 768px) {
    .slider-container {
        width: 100%;
        overflow: hidden;
    }

    .slider {
        transform: translateX(0) !important; /* Always show the first image */
        transition: none; /* Disable sliding animation */
    }

    .slider img {
        width: 100%;
        height: auto;
    }

    .slider-nav {
        display: none;
    }
}

/* end slider */

.emoji{
    font-size: 30px;
}
/*
.solution-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.solution-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.solution-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
}

.btn:hover {
    background-color: #444;
}

 Estilos para el detalle de la solución 
.solution-detail {
    padding: 2rem 0;
}

.solution-image {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
}

.solution-description, 
.solution-features {
    margin: 2rem 0;
}

.solution-features ul {
    list-style-position: inside;
    padding-left: 1rem;
}

.solution-features li {
    margin-bottom: 0.5rem;
}

*/