
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
}

/* ENCABEZADO SUPERIOR */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: white;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 50px;
    margin-right: 10px;
}

.brand-name {
    font-size: 24px;
    font-weight: bold;
    color: #006837;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-container input[type="text"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-container button {
    background-color: transparent !important;
    border: none !important;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    outline: none;

}

.search-container button img {
    height: 20px;
    width: 20px;
    background: none;
    display: block;
}

.top-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-links a {
    text-decoration: none;
    color: #006837;
    font-weight: bold;
}

.top-links a img.icon {
    height: 20px;
    vertical-align: middle;
}

/* MENÚ PRINCIPAL */
.main-nav {
    background-color: #006837;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    gap: 25px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* SLIDER */
.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.slider-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

/* LEMA */
.tagline {
    text-align: center;
    margin-top: 20px;
}

.tagline h2 {
    color: #006837;
}

/* BOTÓN WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    cursor: pointer;
}
