/* =========================================================
   MOTIVACIÓN SALSERA
   Reusable components
========================================================= */


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow {
    color: var(--red);

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 48px;

    padding: 0 22px;

    border-radius: 28px;

    font-size: 0.78rem;
    font-weight: 700;

    transition: var(--transition);

    white-space: nowrap;
}

.btn span {
    font-size: 1rem;
}


/* Primary */

.btn-primary {
    background: var(--red);

    color: white;

    box-shadow:
        0 8px 20px rgba(169, 0, 32, 0.17);
}

.btn-primary:hover {
    background: var(--red-dark);

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(169, 0, 32, 0.25);
}


/* Outline */

.btn-outline {
    color: var(--text);

    background: rgba(255, 255, 255, 0.65);

    border: 1px solid #cdbfb7;
}

.btn-outline:hover {
    border-color: var(--red);

    color: var(--red);

    background: white;

    transform: translateY(-2px);
}


/* Light */

.btn-light {
    background: white;

    color: var(--red);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
    background: var(--orange-light);

    color: white;

    transform: translateY(-3px);
}


/* =========================================================
   TEXT BUTTON
========================================================= */

.text-button {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--red);

    font-size: 0.78rem;
    font-weight: 800;

    transition: var(--transition);
}

.text-button span {
    transition: var(--transition);
}

.text-button:hover {
    color: var(--red-dark);
}

.text-button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   WHATSAPP
========================================================= */

.floating-whatsapp {
    position: fixed;

    z-index: 999;

    right: 25px;
    bottom: 25px;

    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25d366;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 0 0 5px rgba(37, 211, 102, 0.1);

    transition: var(--transition);
}

.floating-whatsapp img {
    width: 28px;
    height: 28px;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25),
        0 0 0 7px rgba(37, 211, 102, 0.12);
}
