/* ========================================
   AYAHU - MAEAYA PWA - ESTILO
   Rede de Solidariedade - Conectando Consciências 🌿
   ======================================== */

/* ========================================
   VARIÁVEIS CSS - BASEADAS NO SITE AYAHU
   ======================================== */
:root {
    --ayahu-primary: #2d5016;
    --ayahu-secondary: #4a7c59;
    --ayahu-light: #6ba368;
    --ayahu-accent: #8bc34a;
    --ayahu-gold: #d4af37;
    --ayahu-earth: #8b4513;
    --ayahu-purple: #6a4c93;
    --ayahu-gradient: linear-gradient(135deg, #2d5016 0%, #4a7c59 50%, #6ba368 100%);
    --cosmic-gradient: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    --earth-gradient: linear-gradient(135deg, #8b4513 0%, #d4af37 50%, #6ba368 100%);
    --forest-gradient: linear-gradient(135deg, #2d5016 0%, #4a7c59 30%, #6ba368 60%, #8bc34a 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border radius */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 25px;
    --radius-xl: 50px;
    
    /* Shadows */
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.2);
    --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.4);
    --shadow-instagram: 0 2px 12px rgba(0, 0, 0, 0.15);
}

/* ========================================
   RESET E BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 25%, #2c5364 50%, #2d5016 75%, #4a7c59 100%);
    min-height: 100vh;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

@media (max-width: 380px) {
    .container {
        padding: 0 var(--spacing-xs);
    }
}

/* ========================================
   LOADING SCREEN
   ======================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 25%, #2c5364 50%, #2d5016 75%, #4a7c59 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    animation: breathe 2s ease-in-out infinite;
}

.loading-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.loading-title {
    font-family: 'Comfortaa', cursive;
    color: var(--ayahu-gold);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.loading-spinner {
    display: flex;
    justify-content: center;
}

.spinner-circle {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top: 3px solid var(--ayahu-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ========================================
   PARTÍCULAS FLUTUANTES
   ======================================== */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.particle:nth-child(odd) {
    background: rgba(139, 195, 74, 0.4);
    animation-duration: 10s;
}

.particle:nth-child(3n) {
    background: rgba(106, 76, 147, 0.5);
    animation-duration: 12s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0; 
    }
    10% { opacity: 1; }
    50% { 
        transform: translateY(-150px) rotate(180deg); 
        opacity: 1; 
    }
    90% { opacity: 1; }
    100% { 
        transform: translateY(-300px) rotate(360deg); 
        opacity: 0; 
    }
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: sticky;
    top: 0;
    background: rgba(45, 80, 22, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
    padding: var(--spacing-sm) 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.title-primary {
    font-family: 'Comfortaa', cursive;
    font-size: 1.1rem;
    color: var(--ayahu-gold);
    margin: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.btn-icon.hidden {
    display: none;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    border: none;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--ayahu-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
    .title-primary {
        font-size: 0.9rem;
    }
    
    .btn span {
        display: none;
    }
    
    .logo {
        width: 35px;
        height: 35px;
    }
}

/* ========================================
   TOAST DE BOAS-VINDAS
   ======================================== */
.welcome-toast {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    max-width: 90%;
    width: 450px;
    z-index: 200;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.welcome-toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast-content {
    background: rgba(45, 80, 22, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    box-shadow: var(--shadow-strong);
}

.toast-icon {
    color: var(--ayahu-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-message h4 {
    color: var(--ayahu-gold);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.toast-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.toast-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0.2rem;
    margin-left: auto;
    transition: color 0.3s;
}

.toast-close:hover {
    color: white;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-md) 0;
    min-height: 100vh;
}

.results-counter {
    background: rgba(45, 80, 22, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.results-counter i {
    color: var(--ayahu-gold);
}

.results-counter.hidden {
    display: none;
}

/* ========================================
   FEED DE ANFITRIÕES
   ======================================== */
.feed-section {
    margin-bottom: var(--spacing-lg);
}

.anfitrioes-feed {
    display: grid;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

/* ========================================
   CONTAINER DE ANÚNCIOS IN-FEED
   ======================================== */
.ad-container {
    width: 100%;
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm);
    background: rgba(45, 80, 22, 0.2);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-container ins {
    display: block !important;
    width: 100%;
    max-width: 100%;
}

.ad-container .adsbygoogle {
    display: block !important;
    width: 100%;
}

.anfitriao-card {
    background: rgba(45, 80, 22, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.anfitriao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--ayahu-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.anfitriao-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(212, 175, 55, 0.3);
}

.anfitriao-card:hover::before {
    opacity: 1;
}

.card-header {
    margin-bottom: var(--spacing-sm);
}

.card-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.anfitriao-header {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.anfitriao-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
}

.card-title-section {
    flex: 1;
    min-width: 0;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ayahu-gold);
    margin: 0 0 0.5rem 0;
}

.card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.badge-categoria {
    background: rgba(139, 195, 74, 0.2);
    color: #8bc34a;
    border: 1px solid rgba(139, 195, 74, 0.3);
}

.badge-subcateg {
    background: rgba(106, 76, 147, 0.2);
    color: #9575cd;
    border: 1px solid rgba(106, 76, 147, 0.3);
}

.badge-tarja {
    background: currentColor;
    color: white;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.card-body {
    margin-top: var(--spacing-sm);
}

.card-info {
    margin-bottom: var(--spacing-sm);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.info-item i {
    color: var(--ayahu-light);
    width: 20px;
}

.info-item strong {
    color: white;
}

.card-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: var(--spacing-sm) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
}

.card-actions {
    margin-top: var(--spacing-sm);
}

.badge-success {
    background: rgba(139, 195, 74, 0.2);
    color: #8bc34a;
    border: 1px solid rgba(139, 195, 74, 0.3);
}

/* ========================================
   MODAL DE FILTROS
   ======================================== */
.modal-filters {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}

.modal-filters.show {
    display: block;
}

.modal-filters-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-filters-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.98), rgba(74, 124, 89, 0.98));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-filters-title {
    font-family: 'Comfortaa', cursive;
    color: var(--ayahu-gold);
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-close-modal {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.modal-filters-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-md);
}

.filters-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label i {
    color: var(--ayahu-gold);
}

.filter-input {
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.filter-input:focus {
    outline: none;
    border-color: var(--ayahu-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.filter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.filter-select {
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--ayahu-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.filter-select option {
    background: rgba(45, 80, 22, 0.95);
    color: white;
}

.filter-hint {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* ========================================
   FORMULÁRIO DE SOLICITAÇÃO
   ======================================== */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--ayahu-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-footer {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer .btn {
    flex: 1;
}

.modal-filters-footer {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-filters-footer .btn {
    flex: 1;
}

/* ========================================
   MODAL DE DETALHES
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    display: none;
    opacity: 0;
}

.modal-container {
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.98), rgba(74, 124, 89, 0.98));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    font-family: 'Comfortaa', cursive;
    color: var(--ayahu-gold);
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.modal-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-md);
}

.medicamento-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.detail-section {
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-section:last-child {
    border-bottom: none;
}

.detail-section h4 {
    color: var(--ayahu-gold);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ========================================
   MODAL DE AVISO INICIAL
   ======================================== */
.modal-warning {
    max-width: 700px;
}

.warning-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-md);
}

.warning-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ayahu-gold);
    font-size: 2rem;
    flex-shrink: 0;
}

.warning-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    text-align: left;
}

.warning-text a {
    color: var(--ayahu-gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.warning-text a:hover {
    color: #FFD700;
}

.modal-footer {
    display: flex;
    justify-content: center;
    padding: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: var(--spacing-sm);
}

.modal-footer .btn {
    min-width: 200px;
}

@media (max-width: 640px) {
    .modal-warning {
        max-width: 95%;
    }
    
    .warning-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .warning-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .modal-footer .btn {
        min-width: 100%;
    }
}

.detail-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* ========================================
   NOTIFICAÇÕES TOAST
   ======================================== */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(45, 80, 22, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    box-shadow: var(--shadow-medium);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-width: 350px;
}

.toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-notification .toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.toast-notification.toast-success {
    border-left: 4px solid #8bc34a;
}

.toast-notification.toast-error {
    border-left: 4px solid #f44336;
}

.toast-notification.toast-info {
    border-left: 4px solid var(--ayahu-gold);
}

.toast-notification i {
    font-size: 1.2rem;
}

.toast-notification.toast-success i {
    color: #8bc34a;
}

.toast-notification.toast-error i {
    color: #f44336;
}

.toast-notification.toast-info i {
    color: var(--ayahu-gold);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn.spinning {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   ESTADOS (EMPTY, ERROR, LOADING)
   ======================================== */
.empty-state,
.error-state {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
}

.empty-state.hidden,
.error-state.hidden {
    display: none;
}

.empty-content,
.error-content {
    background: rgba(45, 80, 22, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.empty-icon,
.error-icon {
    font-size: 4rem;
    color: var(--ayahu-gold);
    margin-bottom: var(--spacing-md);
    opacity: 0.6;
}

.empty-title,
.error-title {
    font-family: 'Comfortaa', cursive;
    color: var(--ayahu-gold);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.empty-description,
.error-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.loading-more {
    text-align: center;
    padding: var(--spacing-md);
}

.loading-more.hidden {
    display: none;
}

.loading-more p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--spacing-sm);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    position: relative;
    z-index: 2;
    background: rgba(45, 80, 22, 0.8);
    backdrop-filter: blur(15px);
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
}

.footer-text .highlight {
    color: var(--ayahu-gold);
    font-weight: 600;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--ayahu-gold);
}

/* ========================================
   UTILITIES
   ======================================== */
.hidden {
    display: none !important;
}

.w-100 {
    width: 100%;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 640px) {
    .card-title {
        font-size: 1.1rem;
    }
    
    .modal-filters-content,
    .modal-container {
        width: 95%;
        max-height: 85vh;
    }
    
    .anfitriao-card {
        padding: var(--spacing-sm);
    }
}

