/* General */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e0e0e0;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

/* Encabezado */
header {
    background: #00081e;
    color: #fff; /* Blanco para el texto */
    padding: 20px;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.6);
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

/* Navegación */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #bbb; /* Color gris claro al pasar el ratón */
}

/* Sección Parallax */
.parallax {
    background: url('img/imagen05.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    color: #fff;
}

/* Contenedor General */
section {
    padding: 50px;
    text-align: center;
    background: white;
    margin: 20px auto;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Galería */
.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Productos */
.product {
    background: white;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.product:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Testimonios */
.testimonial {
    text-align: center;
    margin: 20px;
}

.testimonial img {
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 50vh;
}

/* Botones */
button, .tab-button {
    background: #222;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease-in-out, transform 0.3s ease;
}

button:hover, .tab-button:hover, .tab-button.active {
    background: #444;
    transform: scale(1.05);
}

/* Pestañas */
.tabs {
    text-align: center;
    margin-bottom: 20px;
}

.tab-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 90vw;
    margin: auto;
}

.tab-content img {
    width: 100%;
    max-width: 70vw;
    max-height: 50vh;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Resplandor en los textos sobre imágenes */
.parallax h1, 
.parallax p, 
.tab-content h3, 
.tab-content p {
    color: #111; /* Negro casi absoluto */
    text-shadow: 3px 3px 8px rgba(255, 255, 255, 0.9), 
                 -3px -3px 8px rgba(255, 255, 255, 0.9);
}

/* Pie de página */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
