/* servicioQR.css */

/* Estilos Generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f6f7f6;
    color: #333;    
}

header.fixed-header {
    background-color: #000;
    padding: 10px;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header.fixed-header .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

header.fixed-header .menu > li {
    display: inline-block;
    position: relative;
}

header.fixed-header .menu > li > a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

/* Hero Section */
#hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #61dafb;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero-content .logo {
    max-width: 150px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.logo {
    width: 150px; /* Ajusta este tamaño para que coincida con el de 'index.html' */
    margin-right: 20px;
    margin-top: 20px;
    vertical-align: middle;
    padding-bottom: 0px;
}


/* Content Section */
#content {
    padding: 40px 20px;
    text-align: center;
}

.content-box {
    max-width: 800px;
    margin: 0 auto;
}

.content-box ul {
    list-style-type: none; /* Elimina los puntos */
    padding-left: 0; /* Elimina el espacio a la izquierda */
}

.content-box ul li {
    margin-bottom: 10px;
}

/* Gallery Section */
h2{
    text-align: center;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.gallery h2{
    display: flex;
    }

.gallery-item {
    width: 30%;
    margin: 10px;
}

.gallery-item img {
    width: 100%;    
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
}
/* Estilo del botón del menú */
.dropbtn {
    background-color: #000;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Contenedor del menú desplegable */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Contenido del menú desplegable (inicialmente oculto) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Estilo de los enlaces dentro del menú */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Cambia el color del enlace al pasar el cursor por encima */
.dropdown-content a:hover {
    background-color: #61dafb;
}

/* Muestra el menú cuando se hace clic en el botón */
.show {
    display: block;
}
/* CTA Section */
.cta-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #333;
    color: #fff;
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #61dafb;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #21a1f1;
}

/* Estilos Responsivos */
@media (max-width: 768px) {
    .gallery-item {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 100%;
    }

    .fixed-header .menu {
        flex-direction: column;
    }
}
