body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #111;
    color: #e6e6e6;
    line-height: 1.6;
}


header {
    background: #000;
    text-align: center;
    padding-top: 15px;
}

.logo img {
    max-height: 120px;

}


nav {
    background-color: #000;
    padding: 15px;
}

nav a {
    color: #ddd;
    margin-right: 15px;
    text-decoration: none;
    font-size: 14px;
}

nav a:hover {
    color: #9aa67a;
}

h1, h2, h3 {
    color: #b8b8b8; /* menos brillante que blanco */

}

p {
    margin-left: 10px;
    color: #d6d6d6;
}

.container {
    max-width: 850px;
    margin: auto;
}



a {
    color: #9aa67a;
}

a:hover {
    color: #c3d1a3;
}

img {
    max-width: 100%;
    height: auto;
}




.whatsapp-float {
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    z-index: 9999;
    transition: transform .2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-float img {
    width: 36px;
    height: 36px;
}

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.whatsapp-text {
    background: white;
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,.2);
    font-size: 14px;
    color: #333;
}

@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 90px;
    }
}