/* Estilos generales */
body, html {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: black;
    color: white;
}

/* Navbar */
.navbar {
    display: flex;
    background-color: #000;
    overflow: hidden;
    position: relative;
    z-index: 1000; /* Asegura que la navbar esté sobre otros contenidos */
}

.navbar a {
    flex: 1;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.navbar img {
    max-width: 100px;
}

/* Contenido */
.container-fluid {
    padding: 0;
}

.display-galeria {
    padding: 20px;
}

.hovereffect {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

/* Overlay style */
.hovereffect .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    opacity: 0;
    display: flex; /* Flexbox para centrar */
    align-items: center; /* Centrar verticalmente */
    justify-content: center; /* Centrar horizontalmente */
    transition: all 0.4s ease-in-out;
}

/* Hover effect on image */
.hovereffect:hover img {
    transform: scale(1.1);
}

/* Hover effect on overlay */
.hovereffect:hover .overlay {
    opacity: 1;
}

/* Info link style */
.hovereffect .overlay .info {
    text-transform: uppercase;
    text-align: center;
    color: white;
    font-size: 24px; /* Aumentar el tamaño de la fuente */
    text-decoration: none;
    padding: 10px; /* Añadir padding para mejor apariencia */
}

/* Formularios */
form {
    background-color: #444;
    width: 50%;
    padding: 20px;
    border-radius: 5px;
}

label {
    display: block;
    margin-bottom: 8px;
}

input, textarea {
    width: 95%;
    padding: 5px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

/* Botones */
.buttons {
    display: flex;
    flex-wrap: nowrap; /* Evitar que los botones se envuelvan en una nueva línea */
    justify-content: center; /* Centrar botones horizontalmente */
    gap: 15px; /* Espacio entre botones */
    overflow-x: auto; /* Permitir desplazamiento horizontal si es necesario */
    padding: 10px; /* Añadir padding alrededor de los botones */
}

.buttons a {
    text-decoration: none;
    font-size: 24px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #314652;
    color: #f1f1f1;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
    transition: all .4s ease-in-out;
}

.buttons a:hover {
    transform: scale(1.2);
}

/* Swiper */
.swiper {
    width: 100%;
    padding: 150px 0 50px 0;
}

.swiper-slide {
    width: 300px;
    height: 500px;
    background-color: #323232;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    padding: 40px;
    text-align: center;
}

.icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.icons i {
    font-size: 25px;
    color: #FFB900;
}

.icons img {
    width: 120px;
}

.product-content {
    display: flex;
    justify-content: space-between;
}

.product-txt {
    flex-basis: 50%;
}

.product-txt span {
    font-size: 25px;
    color: #FFB900;
    font-weight: bold;
}

.product-txt h3 {
    font-size: 20px;
    color: #FFF;
    text-transform: uppercase;
}

.product-txt p {
    font-size: 14px;
    color: #C4C4C4;
}

.product-img {
    font-size: 50%;
    text-align: right;
}

.product-img img {
    width: 120px;
}

.btn-1 {
    display: inline-block;
    padding: 13px 55px;
    border: 1px solid #FFB900;
    border-radius: 25px;
    color: #FFB900;
    text-decoration: none;
    margin-top: 50px;
}

/* Estrellas */
.stars-container {
    background-color: #333;
    height: 300px;
    position: relative;
}

.star {
    width: 30px;
    height: 30px;
    background: url('https://img.icons8.com/emoji/48/000000/star-emoji.png') no-repeat center center;
    background-size: contain;
    position: absolute;
}

.star:nth-child(1) {
    top: 50px;
    right: 50px;
}

.star:nth-child(2) {
    top: 100px;
    right: 70px;
}

.star:nth-child(3) {
    top: 150px;
    right: 90px;
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.bottom-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.bottom-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.company-info {
    margin-top: 10px;
}

.company-info a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

.social-media a {
    color: #fff;
    margin: 0 10px;
    font-size: 24px;
}

/* Botones de redes sociales */

/* Botones de redes sociales */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espacio entre los botones */
    padding: 20px; /* Añadir un poco de padding alrededor de los botones */
}

.social-button {
    text-decoration: none;
    color: #ffffff; /* Color del icono en blanco */
    width: 80px; /* Ancho del botón */
    height: 80px; /* Alto del botón */
    border-radius: 50%; /* Hacer los botones redondos */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000; /* Fondo en negro */
    font-size: 32px; /* Tamaño del icono */
    transition: background-color 0.3s, transform 0.3s; /* Transición suave para la animación */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Añadir sombra para un efecto de profundidad */
}

.social-button i {
    color: #ffffff; /* Color del icono en blanco */
}

.social-button:hover {
    background-color: #444444; /* Cambiar el color de fondo al pasar el cursor */
    transform: scale(1.1); /* Aumentar el tamaño al pasar el cursor */
}
/* Media Queries */
@media (max-width: 768px) {
    .col-lg-3, .col-md-3, .col-sm-3, .col-xs-12 {
        flex: 1 0 50%; /* 2 elementos por fila */
    }

    .navbar {
        flex-direction: column;
    }

    .buttons {
        flex-direction: row; /* Mantener los botones en una fila horizontal */
        overflow-x: auto; /* Permitir desplazamiento horizontal si es necesario */
        justify-content: center; /* Centrar botones */
    }
}

@media (max-width: 576px) {
    .col-lg-3, .col-md-3, .col-sm-3, .col-xs-12 {
        flex: 1 0 100%; /* 1 elemento por fila */
    }
    
    .buttons a {
        font-size: 20px; /* Ajustar tamaño de fuente de los botones para pantallas más pequeñas */
        width: 50px;
        height: 50px;
    }

    .navbar {
        flex-direction: column;
    }
}
