/* estilos.css — Mi Tienda · Paleta morado/violeta Facebook moderno
   Violeta principal #7c3aed · Fondo #f4f1fb · WhatsApp #25d366 */

:root {
    --brand: #7c3aed;              /* violeta principal */
    --brand-dark: #5b21b6;         /* morado profundo */
    --brand-deep: #4c1d95;         /* morado más oscuro */
    --brand-soft: #a78bfa;         /* lila */
    --brand-tint: #ede9fe;         /* lila muy claro (fondos suaves) */
    --brand-grad: linear-gradient(135deg, #7c3aed 0%, #c026d3 100%);
    --wa: #25d366;                 /* WhatsApp */
    --fb-green: #2ea44f;           /* verde agregado */
    --bg: #f4f1fb;                 /* fondo lila grisáceo */
    --card: #ffffff;               /* card blanco */
    --text: #1c1326;               /* casi negro con matiz morado */
    --text2: #6b5f7c;              /* secundario morado-gris */
    --text-light: #a8a0b0;         /* texto más claro */
    --line: #e8e2f4;               /* bordes lila */
    --hover: #f3eefc;              /* hover background */
    --accent-gold: #b8860b;        /* dorado */
    --shadow: 0 1px 2px rgba(76, 29, 149, 0.10), 0 2px 8px rgba(76, 29, 149, 0.06);
    --shadow-lg: 0 4px 14px rgba(124, 58, 237, 0.15);
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #d9d2ec;
    color: var(--text);
    line-height: 1.34;
    -webkit-font-smoothing: antialiased;
}

/* Marco móvil centrado en escritorio */
.app {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
}

/* ===== TOPBAR (Sticky) ===== */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--card);
    border-bottom: 1px solid var(--line);
}

.topbar-row1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px 6px;
}

.topbar-left {
    flex: 0 0 auto;
}

.topbar-logo {
    background: var(--brand-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1.4px;
    text-decoration: none;
    cursor: pointer;
    display: block;
}

.topbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.topbar-menu {
    display: flex;
    justify-content: space-around;
    gap: 0;
}

.topbar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    color: var(--text2);
    font-size: 13px;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    font-weight: 600;
    transition: color 0.2s;
}

.topbar-btn:hover {
    color: var(--brand);
}

.topbar-btn.active {
    color: var(--brand);
}

.topbar-btn.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 14%;
    right: 14%;
    height: 3px;
    background: var(--brand);
    border-radius: 3px;
}

.topbar-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-user {
    position: relative;
}

.topbar-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    object-fit: cover;
    border: 2px solid transparent;
    transition: border 0.2s;
}

.topbar-avatar:hover {
    border-color: var(--brand);
}

.user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    margin-top: 8px;
    z-index: 1001;
    overflow: hidden;
}

.user-menu-item {
    display: block;
    padding: 12px 16px;
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid var(--line);
    transition: background 0.2s;
}

.user-menu-item:last-child {
    border-bottom: none;
}

.user-menu-item:hover {
    background: var(--hover);
    color: var(--brand);
}

.btn-login {
    background: var(--brand-grad);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    text-decoration: none;
    transition: transform 0.2s;
    font-weight: 600;
}

.btn-login:hover {
    transform: scale(1.05);
}

.btn-login:active {
    transform: scale(0.98);
}

.topbar-icons {
    display: flex;
    gap: 8px;
}

.circ {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #050505;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.circ:hover {
    background: var(--line);
}

.circ:active {
    transform: scale(0.95);
}

.badge {
    position: absolute;
    top: 4px;
    right: 24%;
    background: #f02849;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 10px;
    padding: 1px 5px;
    line-height: 1.2;
}

/* ===== CARD (contenedor genérico) ===== */
.card {
    background: var(--card);
    box-shadow: var(--shadow);
    margin-bottom: 8px;
    border-radius: 8px;
    overflow: hidden;
}

/* ===== COMPOSER (publicador de posts) ===== */
.composer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
}

.composer .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex: none;
    overflow: hidden;
    background: var(--hover);
}

.composer .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.composer .inp {
    flex: 1;
    background: var(--hover);
    border-radius: 20px;
    padding: 9px 14px;
    color: var(--text2);
    font-size: 15px;
    cursor: pointer;
}

.composer .photo {
    color: var(--fb-green);
    font-size: 22px;
    cursor: pointer;
}

/* ===== STORIES (carrusel) ===== */
.stories {
    background: var(--card);
    box-shadow: var(--shadow);
    padding: 10px 0 12px;
    margin-bottom: 8px;
    overflow: hidden;
}

.stories-mask {
    overflow: hidden;
    width: 100%;
}

.stories-track {
    display: flex;
    gap: 8px;
    padding: 0 8px;
    width: max-content;
    animation: slideStories 48s linear infinite;
    animation-play-state: paused;
}

body.ready .stories-track {
    animation-play-state: running;
}

.stories:hover .stories-track,
.stories:active .stories-track {
    animation-play-state: paused;
}

@keyframes slideStories {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.story {
    position: relative;
    width: 108px;
    height: 188px;
    border-radius: 14px;
    overflow: hidden;
    flex: none;
    background: #222;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22), 0 1px 3px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28), 0 3px 6px rgba(0, 0, 0, 0.2);
}

.story:active {
    transform: scale(0.98);
}

.story img,
.story video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story .label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 8px 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.story.create {
    background: var(--card);
    border: 1px solid var(--line);
}

.story.create .plus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 4px solid var(--card);
}

/* ===== POST / MURO ===== */
.post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 8px;
}

.post-user {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.post-user:hover {
    opacity: 0.7;
}

.post-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--hover);
    flex: none;
}

.post-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-info {
    flex: 1;
}

.post-info h3 {
    font-weight: 700;
    font-size: 15px;
    margin: 0;
}

.post-info p {
    font-size: 12px;
    color: var(--text2);
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 2px 0 0;
}

.post-menu {
    margin-left: auto;
    color: var(--text2);
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

/* ===== CONTENIDO DEL POST ===== */
.post-content {
    padding: 0 12px 10px;
    font-size: 15px;
}

.post-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--text);
}

.post-content p {
    font-size: 14px;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1.4;
}

.post-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--brand);
    margin: 8px 0;
}

.post-description {
    font-size: 13px;
    color: var(--text2);
    margin: 8px 0;
}

/* ===== GALERÍA DE FOTOS / CARRUSEL ===== */
.carousel-container {
    position: relative;
    background: #000;
    aspect-ratio: 1;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.3s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    color: #1c1326;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
    transform: translateY(-50%) scale(1.08);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.2s;
}

.dot.active {
    background: white;
    width: 20px;
    border-radius: 3px;
}

/* ===== ACCIONES DEL POST ===== */
.post-actions {
    padding: 8px 12px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--line);
}

.action-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 4px;
    transition: all 0.2s;
    font-weight: 600;
}

.action-btn:hover {
    background: var(--hover);
    color: var(--brand);
}

.action-btn.liked {
    color: #f02849;
}

.like-count {
    font-size: 12px;
}

/* ===== BOTÓN CTA ===== */
.post-cta {
    display: inline-block;
    background: var(--brand-grad);
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.post-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.4);
}

.post-cta:active {
    transform: scale(0.98);
}

/* ===== PERFIL (STORE.PHP) ===== */
.profile-header {
    background: var(--card);
}

.profile-cover {
    width: 100%;
    height: 200px;
    background: var(--brand-grad);
    object-fit: cover;
    display: block;
}

.profile-info {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid var(--line);
    position: relative;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: -50px auto 12px;
    border: 4px solid var(--card);
    overflow: hidden;
    background: var(--hover);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--text);
}

.profile-meta {
    font-size: 13px;
    color: var(--text2);
    margin: 4px 0;
}

.profile-description {
    font-size: 13px;
    color: var(--text);
    margin: 12px 0;
    line-height: 1.5;
}

.profile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 16px;
    padding-top: 0;
}

.profile-btn {
    padding: 10px 16px;
    border: 1.5px solid var(--brand);
    background: transparent;
    color: var(--brand);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.profile-btn.primary {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
}

.profile-btn.primary:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
}

.profile-btn.whatsapp {
    background: var(--wa);
    color: white;
    border-color: var(--wa);
    grid-column: 1 / -1;
}

.profile-btn.whatsapp:hover {
    background: #1faa4b;
    border-color: #1faa4b;
}

.profile-btn:hover {
    opacity: 0.85;
}

.profile-btn:active {
    transform: scale(0.98);
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px;
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.stat {
    padding: 8px;
}

.stat-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand);
    display: block;
}

.stat-label {
    font-size: 11px;
    color: var(--text2);
    display: block;
    margin-top: 2px;
}

/* ===== FILTROS ===== */
.filters {
    background: var(--card);
    padding: 12px 12px;
    margin: 8px 0;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: var(--shadow);
}

.filters::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    background: var(--hover);
    border: 1px solid var(--line);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
    color: var(--text2);
    transition: all 0.2s;
    flex-shrink: 0;
    font-weight: 600;
}

.filter-btn:hover {
    background: var(--line);
}

.filter-btn.active {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
}

/* ===== GRILLA DE PRODUCTOS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--text2);
    padding: 2px;
}

.product-thumb {
    aspect-ratio: 1;
    background: var(--hover);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: 4px;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
}

.product-thumb:hover img {
    transform: scale(1.05);
}

.product-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.2s;
}

.product-thumb:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

/* ===== ESTADO VACÍO ===== */
.empty-state {
    padding: 40px 20px;
    text-align: center;
    color: var(--text2);
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.empty-state h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 13px;
    color: var(--text2);
}

/* ===== BOTTOM NAV (Navegación inferior flotante) ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: var(--card);
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
}

.nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text2);
    font-size: 24px;
    padding: 8px;
    text-decoration: none;
    gap: 4px;
    flex: 1;
    transition: all 0.2s;
}

.nav-btn:hover,
.nav-btn.active {
    color: var(--brand);
}

.nav-label {
    font-size: 10px;
    color: inherit;
    font-weight: 600;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--brand);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

body.loading .loader {
    opacity: 1;
    pointer-events: auto;
}

/* ===== FORMULARIOS ===== */
input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    transition: all 0.2s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

button {
    background: var(--brand-grad);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow-lg);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.25);
}

button:active {
    transform: scale(0.98);
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ===== ALERTAS ===== */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    display: flex;
    gap: 10px;
}

.alert.error {
    background: #fee8eb;
    color: #c33;
    border-left: 4px solid #c33;
}

.alert.success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #2e7d32;
}

.alert.warning {
    background: #fff3e0;
    color: #e65100;
    border-left: 4px solid #e65100;
}

.alert.info {
    background: #e3f2fd;
    color: #1565c0;
    border-left: 4px solid #1565c0;
}

/* ===== SECTION HEADING ===== */
.section-head {
    padding: 16px;
}

.section-head h2 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-head p {
    font-size: 13px;
    color: var(--text2);
    margin: 0;
}

/* ===== ACCORDION ===== */
.acc {
    border-bottom: 1px solid var(--line);
}

.acc:last-child {
    border-bottom: none;
}

.acc-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.acc-head:hover {
    background: var(--hover);
}

.acc-head .ico {
    font-size: 20px;
}

.acc-title {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.acc-head .chev {
    font-size: 16px;
    color: var(--text2);
    transition: transform 0.2s;
}

.acc.open .chev {
    transform: rotate(180deg);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.acc.open .acc-body {
    max-height: 1000px;
}

.acc-inner {
    padding: 0 16px 16px;
    font-size: 13px;
    color: var(--text2);
    line-height: 1.5;
}

/* ===== MODAL / DIALOG ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 500;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--card);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text2);
    cursor: pointer;
    padding: 0;
}

.modal-body {
    padding: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .app {
        box-shadow: none;
        min-height: 100vh;
    }

    .profile-actions {
        grid-template-columns: 1fr 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .topbar-menu {
        display: none;
    }
}

/* ===== SCROLLBAR CUSTOM ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-soft);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand);
}

/* ===== FOOTER ===== */
footer {
    padding: 24px 16px 120px;
    text-align: center;
    color: var(--text2);
    font-size: 12px;
    line-height: 1.6;
}

footer a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

.footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wa);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-wa:hover {
    opacity: 0.9;
}
