/* 
 * EXCENTRICA - Estilo Red Social
 * ===============================
 * Layout estilo Facebook con nueva paleta de colores
 * Fucsia = acción | Violeta = estructura | Dorado = marca
 */

/* ===== LAYOUT PRINCIPAL ===== */
.social-layout {
    display: grid;
    grid-template-columns: 260px 1fr 300px;
    min-height: 100vh;
    background-color: #0F001D;
    padding-top: 60px;
}

@media (max-width: 1200px) {
    .social-layout {
        grid-template-columns: 220px 1fr;
    }
    .sidebar-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .social-layout {
        grid-template-columns: 1fr;
    }
    .sidebar-left {
        display: none;
    }
}

/* ===== HEADER SOCIAL ===== */
.social-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 1.5rem;
    background: #0C0116;
    border-bottom: 1px solid #960FC6;
    box-shadow: 0 2px 20px rgba(200, 29, 255, 0.15);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    text-decoration: none;
}

.brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #EFB020;
}

/* Search Box */
.search-box {
    position: relative;
    width: 280px;
}

.search-box input {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    background: #170127;
    border: 1px solid #4B086A;
    border-radius: 20px;
    color: #EDE6F2;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #C81DFF;
    box-shadow: 0 0 0 3px rgba(200, 29, 255, 0.2);
}

.search-box input::placeholder {
    color: #7A6A8F;
}

.search-icon {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #7A6A8F;
}

/* Header Nav */
.header-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 44px;
    color: #B7A9C4;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-icon-link svg {
    width: 24px;
    height: 24px;
}

.nav-icon-link:hover {
    background: #1E0833;
    color: #EFB020;
}

.nav-icon-link.active {
    color: #EFB020;
    border-bottom: 3px solid #EFB020;
    border-radius: 8px 8px 0 0;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #170127;
    border: none;
    border-radius: 50%;
    color: #EDE6F2;
    cursor: pointer;
    transition: all 0.2s ease;
}

.icon-btn svg {
    width: 20px;
    height: 20px;
}

.icon-btn:hover {
    background: #1E0833;
    color: #C81DFF;
}

.avatar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #170127;
    border: 2px solid #960FC6;
    border-radius: 50%;
    color: #EDE6F2;
    cursor: pointer;
    transition: all 0.2s ease;
}

.avatar-btn svg {
    width: 22px;
    height: 22px;
}

.avatar-btn:hover {
    border-color: #C81DFF;
    box-shadow: 0 0 15px rgba(200, 29, 255, 0.4);
}

/* User Dropdown Menu */
.user-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: #170127;
    border: 1px solid #4B086A;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 200;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #EDE6F2;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.dropdown-item svg {
    width: 18px;
    height: 18px;
    color: #B7A9C4;
}

.dropdown-item:hover {
    background: #1E0833;
    color: #EFB020;
}

.dropdown-item:hover svg {
    color: #EFB020;
}

.dropdown-item-danger {
    color: #E1065C;
}

.dropdown-item-danger svg {
    color: #E1065C;
}

.dropdown-item-danger:hover {
    background: rgba(225, 6, 92, 0.15);
    color: #FF2A7A;
}

.dropdown-divider {
    height: 1px;
    background: #4B086A;
    margin: 0.5rem 0;
}

/* ===== SIDEBAR IZQUIERDO ===== */
.sidebar-left {
    position: sticky;
    top: 60px;
    height: calc(100vh - 60px);
    overflow-y: auto;
    padding: 1rem;
    background: #0C0116;
    border-right: 1px solid #4B086A;
}

.sidebar-left::-webkit-scrollbar {
    width: 4px;
}

.sidebar-left::-webkit-scrollbar-thumb {
    background: #4B086A;
    border-radius: 2px;
}

/* User Widget */
.user-widget {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #170127;
    border: 1px solid #4B086A;
    border-radius: 12px;
}

.user-avatar-large {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C81DFF 0%, #960FC6 100%);
    border-radius: 50%;
    color: #EDE6F2;
    font-weight: 700;
    font-size: 1.2rem;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    color: #EDE6F2;
    font-weight: 600;
    font-size: 0.95rem;
}

.user-role {
    color: #7A6A8F;
    font-size: 0.8rem;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
}

.nav-section {
    margin-bottom: 1.5rem;
}

.nav-section-title {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #7A6A8F;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    color: #B7A9C4;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sidebar-link:hover {
    background: #1E0833;
    color: #EDE6F2;
}

.sidebar-link.active {
    background: linear-gradient(135deg, #4B086A 0%, #1E0833 100%);
    color: #EFB020;
    border-left: 3px solid #EFB020;
}

/* ===== CONTENIDO PRINCIPAL ===== */
.main-feed {
    padding: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

/* Feed Filters */
.feed-filters {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: #170127;
    border: 1px solid #4B086A;
    border-radius: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 20px;
    color: #B7A9C4;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    background: #1E0833;
    color: #EDE6F2;
}

.filter-btn.active {
    background: #C81DFF;
    color: #0F001D;
    font-weight: 600;
}

/* Welcome Card */
.welcome-card {
    background: linear-gradient(135deg, #1E0833 0%, #170127 50%, #0F001D 100%);
    border: 1px solid #4B086A;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 29, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.welcome-content {
    position: relative;
    z-index: 1;
}

.welcome-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #EDE6F2;
    margin-bottom: 0.75rem;
}

.welcome-title .brand-highlight {
    background: linear-gradient(135deg, #C81DFF 0%, #EFB020 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-text {
    color: #B7A9C4;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
}

@media (max-width: 768px) {
    .welcome-card {
        padding: 1.5rem;
    }
    
    .welcome-title {
        font-size: 1.4rem;
    }
}

/* Page Header Social */
.page-header-social {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #170127;
    border: 1px solid #4B086A;
    border-radius: 12px;
}

.page-header-social h1 {
    font-size: 1.75rem;
    color: #EDE6F2;
    margin-bottom: 0.5rem;
}

.page-header-social p {
    color: #B7A9C4;
    font-size: 0.95rem;
}

/* Filtros */
.filters-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: #170127;
    border: 1px solid #4B086A;
    border-radius: 12px;
}

.filter-group {
    flex: 1;
}

.filter-group label {
    display: block;
    font-size: 0.75rem;
    color: #7A6A8F;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.filter-select {
    width: 100%;
    padding: 0.6rem 1rem;
    background: #0F001D;
    border: 1px solid #4B086A;
    border-radius: 8px;
    color: #EDE6F2;
    font-size: 0.9rem;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: #C81DFF;
}

/* Content Grid */
.content-grid {
    display: grid;
    gap: 1rem;
}

/* Content Card */
.content-card {
    background: #170127;
    border: 1px solid #4B086A;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.content-card:hover {
    border-color: #960FC6;
    box-shadow: 0 4px 30px rgba(150, 15, 198, 0.2);
}

.card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 1rem;
}

.card-category {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: rgba(200, 29, 255, 0.15);
    color: #C81DFF;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.card-title a {
    color: #EDE6F2;
    text-decoration: none;
    transition: color 0.2s;
}

.card-title a:hover {
    color: #EFB020;
}

.card-excerpt {
    color: #B7A9C4;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.card-price {
    color: #1ED760;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #7A6A8F;
    margin-bottom: 0.75rem;
}

.card-actions {
    display: flex;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #4B086A;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    color: #B7A9C4;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
}

.action-btn svg {
    width: 18px;
    height: 18px;
}

.action-btn:hover {
    background: #1E0833;
    color: #C81DFF;
}

.action-btn.like-btn:hover,
.action-btn.like-btn.active {
    color: #E1065C;
}

.action-btn.action-btn-success:hover {
    color: #1ED760;
}

/* Event Card specific */
.event-card {
    position: relative;
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    background: #C81DFF;
    color: #0F001D;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(200, 29, 255, 0.4);
}

.event-day {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.event-month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: #7A6A8F;
}

.empty-state svg {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    color: #EDE6F2;
    margin-bottom: 0.5rem;
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 3rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #4B086A;
    border-top-color: #C81DFF;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-state p {
    color: #7A6A8F;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-btn {
    padding: 0.5rem 1rem;
    background: #170127;
    border: 1px solid #4B086A;
    border-radius: 8px;
    color: #EDE6F2;
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover {
    border-color: #C81DFF;
}

.page-btn.active {
    background: #C81DFF;
    border-color: #C81DFF;
    color: #0F001D;
}

/* ===== SIDEBAR DERECHO ===== */
.sidebar-right {
    position: sticky;
    top: 60px;
    height: calc(100vh - 60px);
    overflow-y: auto;
    padding: 1rem;
    background: #0C0116;
    border-left: 1px solid #4B086A;
}

.sidebar-right::-webkit-scrollbar {
    width: 4px;
}

.sidebar-right::-webkit-scrollbar-thumb {
    background: #4B086A;
    border-radius: 2px;
}

/* Aside Cards */
.aside-card {
    background: #170127;
    border: 1px solid #4B086A;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.aside-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #4B086A;
    color: #EDE6F2;
    font-weight: 600;
    font-size: 0.95rem;
}

.aside-card-header svg {
    width: 18px;
    height: 18px;
    color: #C81DFF;
}

.aside-card-body {
    padding: 1rem;
}

.aside-text {
    color: #B7A9C4;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.aside-text-muted {
    color: #7A6A8F;
    font-size: 0.85rem;
    font-style: italic;
}

/* Botones en aside */
.btn-primary-full {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: #C81DFF;
    border: none;
    border-radius: 8px;
    color: #0F001D;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.2s;
}

.btn-primary-full:hover {
    background: #E24BFF;
    box-shadow: 0 4px 20px rgba(200, 29, 255, 0.4);
}

.btn-outline-full {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid #960FC6;
    border-radius: 8px;
    color: #EDE6F2;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline-full:hover {
    background: #2A0B44;
    border-color: #C81DFF;
}

/* Categories List */
.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.75rem;
    background: #0F001D;
    color: #B7A9C4;
    font-size: 0.8rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.2s;
}

.category-tag:hover {
    background: #1E0833;
    color: #C81DFF;
}

/* Quick Links */
.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quick-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.75rem;
    background: #0F001D;
    color: #B7A9C4;
    font-size: 0.8rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.2s;
}

.quick-link:hover {
    background: #1E0833;
    color: #EFB020;
}

/* Upcoming Events */
.upcoming-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.upcoming-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: #0F001D;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.upcoming-item:hover {
    background: #1E0833;
}

.upcoming-date {
    color: #C81DFF;
    font-weight: 600;
    font-size: 0.8rem;
    white-space: nowrap;
}

.upcoming-title {
    color: #EDE6F2;
    font-size: 0.85rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* User Widget Card (Sidebar Derecho) */
.user-widget-card {
    padding: 0;
}

.user-widget-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-lg);
    transition: background 0.2s ease;
}

.user-widget-link:hover {
    background: rgba(200, 29, 255, 0.1);
}

.user-widget-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.user-widget-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.user-widget-name {
    font-weight: 600;
    color: #EDE6F2;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-widget-email {
    font-size: 0.8rem;
    color: #7A6A8F;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Aside Footer */
.aside-footer {
    padding: 1rem;
    text-align: center;
    color: #7A6A8F;
    font-size: 0.75rem;
}

.aside-footer p {
    margin: 0.25rem 0;
}

/* Error Message */
.error-message {
    padding: 1rem;
    background: rgba(225, 6, 92, 0.15);
    border: 1px solid #E1065C;
    border-radius: 8px;
    color: #FF2A7A;
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .social-header {
        padding: 0 1rem;
    }
    
    .search-box {
        width: 160px;
    }
    
    .header-nav {
        display: none;
    }
    
    .main-feed {
        padding: 1rem;
    }
    
    .filters-card {
        flex-direction: column;
    }
}

/* ===== SCROLLBAR GLOBAL ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0F001D;
}

::-webkit-scrollbar-thumb {
    background: #4B086A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #960FC6;
}

/* ===== HIDDEN UTILITY ===== */
.hidden {
    display: none !important;
}

/* ===== PAGE TITLE COMPACT ===== */
.page-title-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #170127 0%, #1E0833 100%);
    border: 1px solid #4B086A;
    border-radius: 12px;
}

.page-title-compact svg {
    width: 24px;
    height: 24px;
    color: #C81DFF;
}

.page-title-compact h1 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #EDE6F2;
    margin: 0;
}

/* ===== FILTERS COMPACT ===== */
.filters-compact {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.filters-compact select {
    flex: 1;
    min-width: 120px;
    padding: 0.5rem 0.75rem;
    background: #170127;
    border: 1px solid #4B086A;
    border-radius: 8px;
    color: #EDE6F2;
    font-size: 0.85rem;
}

.filters-compact select:focus {
    outline: none;
    border-color: #C81DFF;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #170127;
    border: 1px solid #4B086A;
    border-radius: 50%;
    color: #B7A9C4;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #C81DFF;
    border-color: #C81DFF;
    color: #ffffff;
    transform: scale(1.1);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* ===== CONTACT CTA SECTION ===== */
.contact-cta-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #170127 0%, #1E0833 100%);
    border: 1px solid #4B086A;
    border-radius: 16px;
    text-align: center;
}

.contact-cta-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #EFB020;
    margin: 0 0 0.5rem 0;
}

.contact-cta-section p {
    font-size: 0.9rem;
    color: #B7A9C4;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #25D366;
    border: none;
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}
/* ===== CONTACT PAGE STYLES ===== */
.contact-page {
    padding-bottom: 2rem;
}

.contact-hero {
    background: linear-gradient(135deg, #1E0833 0%, #2A0B44 50%, #170127 100%);
    border: 1px solid #960FC6;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 29, 255, 0.1) 0%, transparent 50%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #EDE6F2;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.brand-highlight {
    color: #EFB020;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1rem;
    color: #B7A9C4;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-services,
.contact-benefits,
.contact-extra {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #EDE6F2;
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #4B086A;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.service-card {
    background: #170127;
    border: 1px solid #4B086A;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #C81DFF;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(200, 29, 255, 0.2);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #EDE6F2;
    margin: 0 0 0.5rem 0;
}

.service-card p {
    font-size: 0.8rem;
    color: #7A6A8F;
    margin: 0;
    line-height: 1.4;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #170127;
    border: 1px solid #4B086A;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.benefit-item:hover {
    border-color: #960FC6;
}

.benefit-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(30, 215, 96, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-check svg {
    width: 14px;
    height: 14px;
    color: #1ED760;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.benefit-text strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: #EDE6F2;
}

.benefit-text span {
    font-size: 0.85rem;
    color: #7A6A8F;
    line-height: 1.4;
}

.contact-cta-main {
    background: linear-gradient(135deg, #C81DFF 0%, #960FC6 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
}

.cta-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.25rem 0;
    line-height: 1.5;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #25D366;
    border: none;
    border-radius: 30px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp-large:hover {
    background: #1ebe57;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-large svg {
    width: 24px;
    height: 24px;
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.decoration-circle:nth-child(1) {
    width: 150px;
    height: 150px;
    top: -50px;
    right: -30px;
}

.decoration-circle:nth-child(2) {
    width: 100px;
    height: 100px;
    bottom: -30px;
    left: -20px;
}

.decoration-circle:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 20%;
}

.extra-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.extra-card {
    background: #170127;
    border: 1px solid #4B086A;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.2s ease;
}

.extra-card:hover {
    border-color: #C81DFF;
}

.extra-card svg {
    width: 32px;
    height: 32px;
    margin: 0 auto 0.75rem;
}

.extra-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #EDE6F2;
    margin: 0 0 0.25rem 0;
}

.extra-card p {
    font-size: 0.8rem;
    color: #7A6A8F;
    margin: 0;
}

.btn-whatsapp-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: #25D366;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-whatsapp-sidebar:hover {
    background: #1ebe57;
}

.btn-whatsapp-sidebar svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 1.5rem;
    }
    
    .contact-hero h1 {
        font-size: 1.4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .extra-services {
        grid-template-columns: 1fr;
    }
    
    .btn-whatsapp-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== NEWS CATEGORY FILTERS ===== */
.news-category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.category-filter-btn {
    padding: 0.5rem 1rem;
    background: #170127;
    border: 1px solid #4B086A;
    border-radius: 20px;
    color: #B7A9C4;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-filter-btn:hover {
    border-color: #C81DFF;
    color: #EDE6F2;
}

.category-filter-btn.active {
    background: linear-gradient(135deg, #C81DFF 0%, #960FC6 100%);
    border-color: #C81DFF;
    color: #ffffff;
}