/* =========================================
   AHIZER - MASTER CSS 
   ========================================= */

:root {
    --apple-white: #ffffff;
    --apple-gray: #f5f5f7;
    --apple-text: #1d1d1f;
    --apple-text-muted: #86868b;
    --purple-grad: linear-gradient(135deg, #a445b2 0%, #6c5ce7 100%);
    --star-gold: #ffcc00;
    --glass: rgba(255, 255, 255, 0.7);
}

body {
    background-color: #fff;
    color: var(--apple-text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", sans-serif;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 90px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- NAVBAR --- */
.navbar-apple {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
}
.brand-text {
    font-weight: 700;
    background: var(--purple-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 22px;
}

/* --- BUSCADOR Y SEARCH STICKY --- */
.search-container {
    position: relative;
    max-width: 600px;
    margin: 25px auto;
    width: 100%;
    padding: 0 15px;
}
.sticky-search {
    position: sticky;
    top: 56px;
    background: rgba(255, 255, 255, 0.95);
    z-index: 900;
    padding: 15px 0;
    backdrop-filter: blur(10px);
}
.search-box {
    background: var(--apple-gray);
    border-radius: 20px;
    padding: 15px 20px 15px 50px;
    border: 2px solid transparent;
    width: 100%;
    font-size: 17px;
    color: var(--apple-text);
    transition: all 0.3s ease;
    outline: none;
}
.search-box:focus {
    background: #fff;
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.search-icon {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--apple-text-muted);
    font-size: 18px;
    pointer-events: none;
}

/* --- CATEGORÍAS --- */
.category-scroll {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px 0 30px;
    scrollbar-width: none;
}
.category-scroll::-webkit-scrollbar { display: none; }
.category-item {
    background: var(--apple-gray);
    padding: 10px 20px;
    border-radius: 980px;
    margin-right: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--apple-text);
    transition: 0.3s;
    cursor: pointer;
    border: 1px solid transparent;
}
.category-item:hover, .category-item.active {
    background: #fff;
    border-color: #6c5ce7;
    color: #6c5ce7;
}

/* --- HEADERS Y TITULOS --- */
.hero { padding: 60px 0 20px; text-align: center; }
.hero h1 { font-weight: 800; letter-spacing: -0.04em; font-size: 3rem; }
.hero-mini { padding: 40px 0 10px; text-align: center; }
.hero-mini h2 { font-weight: 800; letter-spacing: -0.02em; font-size: 2.5rem;}
.hero-mini p { color: var(--apple-text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.section-header {
    display: flex; justify-content: space-between; align-items: center;
    margin: 30px 0 20px; padding: 0 15px;
}
.section-header h2 { font-size: 20px; font-weight: 700; margin: 0; }
.btn-view-all, .btn-see-all {
    color: #6c5ce7; font-weight: 600; font-size: 14px; text-decoration: none !important;
}

/* --- CARRUSEL PUBLICITARIO --- */
.promo-carousel { border-radius: 24px; overflow: hidden; margin-bottom: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.carousel-item img { height: 250px; object-fit: cover; }

/* --- STORE CARDS Y LISTAS --- */
.store-card {
    border: none; border-radius: 28px; background: #fff; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); margin-bottom: 30px; position: relative; height: calc(100% - 30px);
}
.store-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.store-banner { height: 140px; background-size: cover; background-position: center; }
.store-logo-wrapper {
    position: absolute; top: 105px; left: 20px; width: 70px; height: 70px;
    background: #fff; border-radius: 18px; padding: 5px; box-shadow: 0 8px 15px rgba(0,0,0,0.1); z-index: 2;
}
.store-logo-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.store-body { padding: 45px 20px 20px; }
.store-name { font-weight: 700; font-size: 19px; margin-bottom: 4px; display: block; color: var(--apple-text); }
.store-location { font-size: 13px; color: var(--apple-text-muted); display: flex; align-items: center; margin-bottom: 10px; }
.store-location i { margin-right: 5px; color: #6c5ce7; }
.badge-verified { font-size: 10px; background: #6c5ce7; color: #fff; padding: 2px 8px; border-radius: 10px; margin-left: 5px; vertical-align: middle; }

.store-item {
    display: flex; align-items: center; background: var(--apple-gray);
    border-radius: 18px; padding: 12px; margin-bottom: 12px;
    transition: 0.3s; text-decoration: none !important; color: inherit;
}
.store-img { width: 55px; height: 55px; border-radius: 14px; object-fit: cover; margin-right: 15px; }
.store-info h6 { margin: 0; font-weight: 700; font-size: 15px; }
.store-info p { margin: 0; font-size: 12px; color: var(--apple-text-muted); }

/* --- PRODUCT CARDS --- */
.product-card {
    border: none; border-radius: 24px; background: var(--apple-gray); overflow: hidden;
    transition: all 0.3s ease; margin-bottom: 25px; position: relative; height: 100%;
}
.product-card:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.product-img-wrapper { width: 100%; aspect-ratio: 1/1; overflow: hidden; background: #ebebed; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img { transform: scale(1.08); }
.product-info { padding: 15px; }
.product-category { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--apple-text-muted); font-weight: 600; margin-bottom: 4px; display: block; }
.product-title { font-weight: 600; font-size: 15px; color: var(--apple-text); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: 40px; }
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.product-price { font-weight: 700; font-size: 17px; color: #6c5ce7; }
.btn-add-cart { width: 32px; height: 32px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; color: var(--apple-text); box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: 0.3s; }
.btn-add-cart:hover { background: #6c5ce7; color: #fff; }

/* --- INDEX: NEGOCIO, RESEÑAS Y FAQ --- */
.business-section { background: var(--apple-gray); border-radius: 30px; padding: 40px 20px; margin: 50px 0; }
.feature-box { background: #fff; padding: 25px; border-radius: 20px; height: 100%; transition: 0.3s; }
.feature-icon { font-size: 28px; margin-bottom: 15px; background: var(--purple-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
.review-card { background: var(--apple-gray); border-radius: 22px; padding: 20px; border: none; margin-bottom: 20px; }
.review-user { display: flex; align-items: center; margin-top: 15px; }
.user-avatar { width: 40px; height: 40px; border-radius: 50%; background: #ccc; margin-right: 12px; }
.faq-section { background: #fff; border: 1px solid #eee; border-radius: 30px; padding: 40px 20px; margin: 40px 0; }
.faq-item { border-bottom: 1px solid #e5e5e7; padding: 15px 0; }
.faq-question { font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; }

/* --- PERFIL --- */
.profile-header { padding: 40px 15px 20px; text-align: center; }
.avatar-wrapper { position: relative; width: 110px; height: 110px; margin: 0 auto 15px; }
.profile-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.edit-avatar-btn { position: absolute; bottom: 5px; right: 5px; background: #6c5ce7; color: #fff; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; border: 2px solid #fff; }
.profile-name { font-weight: 700; font-size: 24px; margin-bottom: 5px; }
.profile-email { color: var(--apple-text-muted); font-size: 14px; margin-bottom: 20px; }

.stats-container { display: flex; justify-content: space-around; background: var(--apple-gray); border-radius: 20px; padding: 15px; margin-bottom: 30px; }
.stat-item { text-align: center; }
.stat-value { display: block; font-weight: 700; font-size: 18px; color: #6c5ce7; }
.stat-label { font-size: 12px; color: var(--apple-text-muted); font-weight: 500; }

.menu-group { background: var(--apple-gray); border-radius: 18px; margin-bottom: 25px; overflow: hidden; }
.menu-item { display: flex; align-items: center; padding: 15px 20px; color: var(--apple-text); text-decoration: none !important; transition: background 0.2s; border-bottom: 0.5px solid rgba(0,0,0,0.05); }
.menu-item:last-child { border-bottom: none; }
.menu-item:active { background: #e5e5e7; }
.menu-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-right: 15px; color: #fff; font-size: 14px; }
.icon-blue { background: #007aff; } .icon-red { background: #ff3b30; } .icon-orange { background: #ff9500; } .icon-purple { background: #af52de; } .icon-green { background: #34c759; }
.menu-text { font-weight: 500; font-size: 16px; flex-grow: 1; }
.menu-chevron { color: #c7c7cc; font-size: 12px; }

.editable-label { font-size: 11px; color: var(--apple-text-muted); text-transform: uppercase; font-weight: 600; display: block; margin-bottom: -2px; }
.editable-input { border: none; background: transparent; padding: 0; width: 100%; font-weight: 500; font-size: 16px; color: var(--apple-text); outline: none; }

.modal-content { border: none; border-radius: 24px; padding: 10px; }
.modal-header, .modal-footer { border: none; }
.apple-modal-input { background: var(--apple-gray); border: none; border-radius: 12px; padding: 14px; margin-bottom: 12px; width: 100%; font-size: 16px; }
.btn-update-pass { background: #6c5ce7; color: white; border: none; border-radius: 14px; padding: 12px; width: 100%; font-weight: 600; }

.recent-orders-title { font-weight: 700; font-size: 18px; margin-bottom: 15px; padding-left: 5px; }
.order-card-mini { display: flex; align-items: center; padding: 12px 0; border-bottom: 0.5px solid #eee; }
.order-img { width: 45px; height: 45px; border-radius: 10px; object-fit: cover; margin-right: 12px; }
.order-info h6 { margin: 0; font-size: 14px; font-weight: 600; }
.order-info p { margin: 0; font-size: 12px; color: var(--apple-text-muted); }

/* --- QUIENES SOMOS Y PREMIUM HERO --- */
.hero-section {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, rgba(164, 69, 178, 0.05), transparent),
                radial-gradient(circle at bottom left, rgba(108, 92, 231, 0.05), transparent);
}
.hero-section h1 { font-weight: 800; font-size: 4rem; letter-spacing: -0.05em; line-height: 1.1; margin-bottom: 25px; }
.hero-section p { font-size: 1.4rem; color: var(--apple-text-muted); max-width: 800px; margin: 0 auto; font-weight: 400; }

.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.bento-item { background: var(--apple-gray); border-radius: 32px; padding: 40px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid transparent; }
.bento-item:hover { background: #fff; border-color: rgba(108, 92, 231, 0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.04); transform: translateY(-5px); }
.bento-item h3 { font-weight: 700; margin-top: 15px; }
.bento-item p { color: var(--apple-text-muted); font-size: 15px; line-height: 1.6; }
.icon-gradient { font-size: 32px; background: var(--purple-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.story-box { background: var(--apple-text); color: #fff; border-radius: 40px; padding: 80px 60px; margin: 100px 0; position: relative; overflow: hidden; }
.story-box h2 { font-weight: 800; font-size: 3rem; margin-bottom: 30px; }
.story-box p { font-size: 1.2rem; opacity: 0.8; font-weight: 300; line-height: 1.8; }

.floating-stats { display: flex; justify-content: space-around; padding: 40px; background: var(--glass); backdrop-filter: blur(10px); border-radius: 30px; border: 1px solid rgba(255,255,255,0.3); margin-top: -60px; position: relative; z-index: 2; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.stat-card { text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 800; color: #6c5ce7; display: block; }
.stat-lab { font-size: 12px; font-weight: 600; text-transform: uppercase; color: var(--apple-text-muted); letter-spacing: 1px; }

.final-cta { text-align: center; padding: 100px 20px; }
.btn-premium { background: var(--apple-text); color: #fff; padding: 18px 45px; border-radius: 100px; font-weight: 600; font-size: 18px; border: none; transition: 0.3s; text-decoration: none !important; }
.btn-premium:hover { background: #444; color: #fff; transform: scale(1.05); }

/* --- PLANES --- */
.pricing-card { border: none; border-radius: 30px; background: var(--apple-gray); padding: 40px 30px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); text-align: center; margin-bottom: 30px; height: 100%; display: flex; flex-direction: column; }
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); background: #fff; border: 1px solid rgba(108, 92, 231, 0.2); }
.pricing-card.featured { background: var(--apple-text); color: #fff; position: relative; transform: scale(1.05); z-index: 2; }
.pricing-card.featured:hover { background: #000; }
.badge-popular { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--purple-grad); color: #fff; padding: 5px 20px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.plan-name { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; color: #6c5ce7; }
.featured .plan-name { color: #a445b2; }
.plan-price { font-size: 3rem; font-weight: 800; margin-bottom: 5px; }
.plan-price span { font-size: 1rem; font-weight: 500; opacity: 0.6; }
.feature-list { list-style: none; padding: 0; margin: 30px 0; text-align: left; flex-grow: 1; }
.feature-list li { margin-bottom: 15px; font-size: 15px; display: flex; align-items: center; }
.feature-list li i { color: #6c5ce7; margin-right: 12px; width: 20px; }
.featured .feature-list li i { color: #fff; }
.btn-plan { border-radius: 15px; padding: 14px; font-weight: 700; width: 100%; transition: 0.3s; border: none; }
.btn-light-plan { background: #fff; color: var(--apple-text); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.btn-purple-plan { background: var(--purple-grad); color: #fff; }

/* --- PRIVACIDAD --- */
.policy-header { padding: 80px 20px 40px; text-align: center; }
.policy-header h1 { font-weight: 800; font-size: 3rem; letter-spacing: -0.04em; }
.last-update { color: var(--apple-text-muted); font-size: 14px; font-weight: 500; }
.policy-card { background: var(--apple-gray); border-radius: 24px; padding: 35px; margin-bottom: 25px; border: 1px solid transparent; transition: 0.3s; }
.policy-card:hover { background: #fff; border-color: rgba(108, 92, 231, 0.2); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.policy-card h3 { font-weight: 700; font-size: 1.5rem; margin-bottom: 15px; display: flex; align-items: center; }
.policy-card h3 i { margin-right: 15px; color: #6c5ce7; font-size: 1.2rem; }
.policy-card p, .policy-card li { color: #424245; font-size: 16px; }
.highlight-box { background: #fff; border-radius: 18px; padding: 20px; margin-top: 20px; border-left: 4px solid #6c5ce7; }
.policy-footer { text-align: center; padding: 60px 20px; background: var(--apple-gray); border-radius: 40px 40px 0 0; margin-top: 60px; }
.btn-contact { background: var(--apple-text); color: #fff; padding: 12px 30px; border-radius: 50px; font-weight: 600; text-decoration: none !important; display: inline-block; margin-top: 20px; }

/* --- AUTH (LOGIN / REGISTRO) --- */
.auth-container { max-width: 400px; width: 100%; margin: auto; padding: 40px 20px; }
.auth-header { text-align: center; margin-bottom: 35px; }
.auth-header h2 { font-weight: 800; letter-spacing: -0.04em; font-size: 2rem; margin-bottom: 10px; }
.form-group { margin-bottom: 20px; position: relative; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--apple-text-muted); margin-left: 5px; }
.apple-input { background: var(--apple-gray); border: none; border-radius: 14px; padding: 14px 18px; font-size: 16px; width: 100%; transition: 0.3s; outline: none; }
.apple-input:focus { background: #fff; box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1); color: var(--apple-text); }
.forgot-password { display: block; text-align: right; font-size: 13px; color: #6c5ce7; font-weight: 600; margin-top: 8px; text-decoration: none !important; }
.btn-register, .btn-login { background: var(--purple-grad); color: white; border: none; border-radius: 14px; padding: 14px; width: 100%; font-weight: 700; font-size: 16px; margin-top: 15px; box-shadow: 0 10px 20px rgba(108, 92, 231, 0.2); transition: 0.3s; }
.btn-register:active, .btn-login:active { transform: scale(0.98); }
.divider { display: flex; align-items: center; text-align: center; margin: 25px 0; color: var(--apple-text-muted); font-size: 14px; }
.divider::before, .divider::after { content: ''; flex: 1; border-bottom: 1px solid #eee; }
.divider:not(:empty)::before { margin-right: .75em; }
.divider:not(:empty)::after { margin-left: .75em; }
.btn-google { background: #fff; color: var(--apple-text); border: 1px solid #ddd; border-radius: 14px; padding: 12px; width: 100%; font-weight: 600; font-size: 15px; display: flex; align-items: center; justify-content: center; transition: 0.3s; text-decoration: none !important;}
.btn-google img { width: 20px; margin-right: 10px; }
.btn-google:hover { background: var(--apple-gray); color: var(--apple-text); }
.auth-footer { text-align: center; margin-top: 35px; font-size: 14px; }
.auth-footer a { color: #6c5ce7; font-weight: 600; text-decoration: none; }

/* --- FOOTER GENERAL --- */
footer { background: #fdfdfd; padding: 60px 0 20px; border-top: 1px solid #eee; margin-top: 50px;}
.footer-link { color: var(--apple-text-muted); font-size: 14px; display: block; margin-bottom: 10px; text-decoration: none !important; }

/* --- MOBILE NAV GENERAL --- */
.mobile-nav {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px);
    display: none; justify-content: space-around; padding: 10px 0 25px;
    border-top: 0.5px solid rgba(0,0,0,0.1); z-index: 1000;
}
.mobile-nav-item { text-align: center; color: var(--apple-text-muted); font-size: 11px; text-decoration: none !important; }
.mobile-nav-item i { font-size: 20px; display: block; }
.mobile-nav-item.active { color: #6c5ce7; }



    /* Estilos para la vista de lista (Horizontal) */
    .row-products.list-view .col-product {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .row-products.list-view .product-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    
    .row-products.list-view .product-img-wrapper {
        width: 120px; /* Ancho fijo para la imagen en vista lista */
        height: 120px;
        flex-shrink: 0;
        margin-right: 15px;
    }
    
    .row-products.list-view .product-info {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .row-products.list-view .product-footer {
        margin-top: 10px;
    }


/* =========================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================= */

@media (max-width: 992px) {
    .bento-grid { grid-template-columns: 1fr; }
    .hero-section h1 { font-size: 2.8rem; }
    .story-box { padding: 40px 25px; border-radius: 0; margin-left: -15px; margin-right: -15px; }
    .floating-stats { flex-wrap: wrap; gap: 20px; }
    .pricing-card.featured { transform: scale(1); margin: 40px 0; }
}

@media (max-width: 768px) {
    .mobile-nav { display: flex; }
    .hero h1 { font-size: 2rem; }
    .hero-mini h2 { font-size: 1.8rem; }
    .carousel-item img { height: 180px; }
    .search-box { font-size: 16px; } 
    .row-products { padding: 0 8px; }
    .col-product { padding: 0 7px; flex: 0 0 50%; max-width: 50%; }
    .product-title { font-size: 14px; }
    .policy-header h1 { font-size: 2.2rem; }
    .policy-card { padding: 25px; }
}

@media (max-width: 576px) {
    .auth-header h2 { font-size: 1.7rem; }
}
/* --- NAVEGACIÓN PC --- */
/* Ocultamos los enlaces centrales en celulares */
.pc-nav-links {
    display: none; 
}

/* --- MOBILE NAV GENERAL --- */
.mobile-nav {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px);
    display: none; justify-content: space-around; padding: 10px 0 25px;
    border-top: 0.5px solid rgba(0,0,0,0.1); z-index: 1000;
}
.mobile-nav-item { text-align: center; color: var(--apple-text-muted); font-size: 11px; text-decoration: none !important; }
.mobile-nav-item i { font-size: 20px; display: block; }
.mobile-nav-item.active { color: #6c5ce7; }

/* =========================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================= */

@media (min-width: 769px) {
    /* Mostramos los enlaces centrales en PC (Tablets grandes en adelante) */
    .pc-nav-links {
        display: flex;
        align-items: center;
        gap: 20px; /* Separación entre los botones */
        position: absolute;
        left: 50%;
        transform: translateX(-50%); /* Centrado absoluto */
    }
    
    .pc-nav-item {
        color: var(--apple-text-muted);
        font-weight: 600;
        font-size: 15px;
        text-decoration: none !important;
        transition: 0.3s;
        display: flex;
        align-items: center;
        gap: 6px; /* Separación entre el icono y el texto */
    }
    
    .pc-nav-item:hover, .pc-nav-item.active {
        color: #6c5ce7;
    }
}

@media (max-width: 768px) {
    /* Aquí ya tienes definido que se muestre en móvil, lo dejamos igual */
    .mobile-nav { display: flex; }
    /* ... el resto de tu código móvil ... */
}
/* --- ANILLO DEGRADADO PARA AVATAR --- */
.avatar-gradient-ring {
    width: 44px; /* Tamaño total del círculo exterior */
    height: 44px;
    border-radius: 50%;
    /* El degradado morado de Ahizer */
    background: linear-gradient(135deg, #a445b2 0%, #6c5ce7 100%);
    padding: 2px; /* El grosor del anillo de color */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    cursor: pointer;
}

.avatar-gradient-ring:hover {
    transform: scale(1.08); /* Crece un poquito al pasar el mouse */
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.4); /* Sombra morada */
}

.avatar-gradient-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff; /* Borde blanco para separar la foto del degradado */
}
