/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #111;
    overflow-x: hidden;
    line-height: 1.5;
}

/* === ANIMATIONS === */
@keyframes monjeFloat {
    0%   { transform: translateY(-50%); }
    50%  { transform: translateY(-53%); }
    100% { transform: translateY(-50%); }
}
@keyframes botonFloat {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-7px); }
    100% { transform: translateY(0); }
}

/* === FOOTER === */
.tv-footer {
    background: #1a1208;
    color: #c8b89a;
    padding: 60px 0 0;
}
.tv-footer__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.tv-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: #f5ede0;
    margin-bottom: 16px;
}
.tv-footer__logo-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff 0%, #d7aa5b 40%, #8a5a22 100%);
    flex-shrink: 0;
}
.tv-footer__brand p { font-size: 13px; line-height: 1.7; }
.tv-footer__col h4 { font-size: 13px; font-weight: 700; color: #f5ede0; margin-bottom: 14px; }
.tv-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.tv-footer__col ul li, .tv-footer__col ul a { font-size: 13px; color: #c8b89a; text-decoration: none; }
.tv-footer__col ul a:hover { color: #f5ede0; }
.tv-footer__bottom {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 32px;
    border-top: 1px solid rgba(200,184,154,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.tv-footer__bottom small { font-size: 12px; color: #7a6b52; }
.tv-footer__social { display: flex; gap: 14px; }
.tv-footer__social a { font-size: 12px; font-weight: 700; color: #c8b89a; text-decoration: none; }
.tv-footer__social a:hover { color: #f5ede0; }

@media (max-width: 900px) {
    .tv-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .tv-footer__inner { grid-template-columns: 1fr; gap: 28px; }
    .tv-footer__bottom { flex-direction: column; text-align: center; }
}

/* === BOTONES FLOTANTES === */
.tv-floating {
    position: fixed;
    right: 24px;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 900;
}

.tv-floating__top,
.tv-floating__support {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    background: #8a6331;
    box-shadow: 0 4px 18px rgba(138,99,49,0.35);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.tv-floating__top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.tv-floating__support {
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
}

.tv-floating__top:hover,
.tv-floating__support:hover {
    background: #6b4c22;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(138,99,49,0.45);
}

/* === MODAL SOPORTE === */
.tv-support-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 24px 90px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}

.tv-support-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.tv-support-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    cursor: pointer;
}

.tv-support-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 360px;
    background: #1a1208;
    border: 1px solid rgba(200,184,154,0.15);
    border-radius: 18px;
    padding: 28px 24px 22px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    transform: translateY(16px);
    transition: transform 0.25s;
}

.tv-support-modal.is-open .tv-support-modal__dialog {
    transform: translateY(0);
}

.tv-support-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(200,184,154,0.2);
    border-radius: 50%;
    background: transparent;
    color: #c8b89a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.tv-support-modal__close:hover { border-color: #c8a06a; color: #f5ede0; }

.tv-support-modal__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c8a06a;
    margin-bottom: 8px;
}

.tv-support-modal__header h3 {
    margin: 0 0 6px;
    color: #f5ede0;
    font-size: 17px;
    font-weight: 700;
}

.tv-support-modal__header p {
    margin: 0 0 20px;
    color: #c8b89a;
    font-size: 13px;
}

.tv-support-modal__options { display: flex; flex-direction: column; gap: 10px; }

.tv-support-modal__option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(200,184,154,0.15);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.tv-support-modal__option:hover {
    border-color: #c8a06a;
    background: rgba(200,160,106,0.08);
    transform: translateY(-2px);
}

.tv-support-modal__icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(200,160,106,0.12);
    color: #c8a06a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-support-modal__copy { display: flex; flex-direction: column; gap: 3px; }
.tv-support-modal__copy strong { color: #f5ede0; font-size: 14px; }
.tv-support-modal__copy small  { color: #c8b89a; font-size: 12px; }

@media (max-width: 640px) {
    .tv-floating { right: 16px; bottom: 20px; }
    .tv-floating__support span { display: none; }
    .tv-floating__support { width: 44px; height: 44px; padding: 0; border-radius: 50%; }
    .tv-support-modal { padding: 16px; align-items: center; justify-content: center; }
    .tv-support-modal__dialog { max-width: none; }
}
