body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    padding-top: 80px; /* El mismo valor que la altura del header */
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #006666; /* Mantiene el color */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px; /* Ajustar espaciado consistente */
    border-bottom: 1px solid #ddd;
    z-index: 1000;
    box-sizing: border-box; /* Asegura que el padding no distorsione el tamaño */
}

header .logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}

header .logo-container img {
    height: 50px;
    width: auto;
    margin-right: 15px;
}

header .company-name {
    font-size: 1.5rem; /* Asegurar tamaño consistente */
    font-weight: bold; /* Forzar el peso de fuente */
    color: #fff;
    margin-right: 20px;
}


nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-end;
    flex-grow: 1;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    padding: 8px 15px;
    white-space: nowrap;
    transition: color 0.3s, background-color 0.3s, border-radius 0.3s;
}

nav a:hover {
    color: #207a6b;
    background-color: #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav a.active {
    background-color: #ffffff;
    color: #207a6b;
    border-color: #207a6b;
}

/* Estilos para la sección de productos */
.container {
    padding: 2rem;
    text-align: center;
}

.container h2 {
    margin-bottom: 2rem;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}



.product {
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column; /* Cambiado para permitir el nombre del producto debajo de la imagen */
    align-items: center;
    justify-content: center;
    border-radius: 10%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #ddd; /* Borde visible para todos los productos */
}
.product2 {
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column; /* Cambiado para permitir el nombre del producto debajo de la imagen */
    align-items: center;
    justify-content: center;
    border-radius: 90%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #ddd; /* Borde visible para todos los productos */
}



.product img {
    width: 100%;
    height: auto;
}



.product-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.5rem;
    text-align: center;
    display: none;
}

.product2:hover .product-description {
    display: block;
}

.product2:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Añadido para mejorar la visibilidad */
}


.product:hover .product-description {
    display: block;
}

.product:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Añadido para mejorar la visibilidad */
}

/* Nombre del producto debajo de cada círculo */
.product-name {
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: bold;
    color: #333; /* Cambiado a un color visible */
}

/* Estilos para el footer y el botón de WhatsApp */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: relative;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366; /* Color verde característico de WhatsApp */
    color: white;
    border-radius: 50%; /* Botón redondeado */
    width: 60px; /* Ancho del botón */
    height: 60px; /* Altura del botón */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Sombra para darle profundidad */
    text-decoration: none; /* Sin subrayado */
    z-index: 1000; /* Asegura que el botón esté encima de otros elementos */
    transition: background-color 0.3s ease; /* Transición suave para el color de fondo */
}

.whatsapp-button:hover {
    background-color: #128C7E; /* Color verde oscuro de WhatsApp al pasar el ratón */
}

.whatsapp-button i {
    font-size: 30px; /* Tamaño del icono */
}


    