.brand-section {
    background-color: #f4f4f4; /* Fondo claro */
    text-align: center;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
}

.brand-subtitle {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.brand-title {
    font-size: 38px;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
    margin-left:60px;
    margin-right: 60px;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.brand-title .highlight {
    color: rgb(255, 192, 0);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.brand-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.brand-button {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    background-color: white;
    border: 2px solid #333;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-button:hover {
    background-color: #333;
    color: white;
}

.brand-button.dark {
    background-color: #333;
    color: white;
}

.brand-button.dark:hover {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
}

/* --- animación de la mini-imagen flotante --- */
@keyframes slide-in   { from { transform: translate(-50%, -50%) scale(.7); opacity: 0; }
                        to   { transform: translate(-50%, -50%) scale(1);  opacity: 1; } }

@keyframes slide-out  { from { transform: translate(-50%, -50%) scale(1);  opacity: 1; }
                        to   { transform: translate(-50%, -50%) scale(.7); opacity: 0; } }

.hover-image{
  position:fixed; display:none; width:180px; height:auto; pointer-events:none;
  z-index:50; border-radius:8px; box-shadow:0 4px 12px rgba(0,0,0,.35);
}