/* ==========================================================================
   ESTILOS ESPECÍFICOS DA PÁGINA HOME
   ========================================================================== */

/* ==========================================================================
   SEÇÃO HERO
   ========================================================================== */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 100vh;
    width: 100%;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

/* ==========================================================================
   VIDEO BACKGROUND
   ========================================================================== */
.hero-video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    
    min-width: 100%;
    min-height: 100%;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.8) 0%, 
        rgba(118, 75, 162, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-hero-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    color: var(--primary-color);
    background: rgba(255, 255, 255, 1);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   DASHBOARD HERO
   ========================================================================== */
.hero-quadra-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.hero-dashboard-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    min-width: 320px;
    max-width: 370px;
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border: 2px solid #f3f4f6;
    margin-right: 20px;
    position: relative;
    z-index: 10;
}

.dashboard-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.dashboard-desc {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.dashboard-quadras {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.dashboard-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    font-size: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    margin-bottom: 0.2rem;
}

.dashboard-icon {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    margin-right: 1rem;
}

.dashboard-status {
    min-width: 90px;
    text-align: right;
}

/* ==========================================================================
   SEÇÃO DE ESTATÍSTICAS
   ========================================================================== */
.stats-section {
    background: white;
    padding: 6rem 0;
    margin-top: -4rem;
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   SEÇÃO DE FUNCIONALIDADES
   ========================================================================== */
.features-section {
    background: var(--gray-50);
    padding: 8rem 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

/* ==========================================================================
   SEÇÃO CTA
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* ==========================================================================
   ELEMENTOS FLUTUANTES
   ========================================================================== */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* ==========================================================================
   UTILITÁRIOS DE CORES
   ========================================================================== */
.bg-green-50 { background: #ecfdf5; }
.bg-green-500 { background: #10b981; }
.bg-yellow-50 { background: #fefce8; }
.bg-yellow-500 { background: #f59e0b; }
.bg-read-50 { background: #f8d7da; }
.bg-read-500 { background: #ef4444; }
.bg-gray-50 { background: #f3f4f6; }
.bg-gray-400 { background: #9ca3af; }

.text-green-600 { color: #059669; font-weight: 600; }
.text-yellow-600 { color: #ca8a04; font-weight: 600; }
.text-gray-600 { color: #4b5563; font-weight: 600; }
.text-read-600 { color: #ef4444; font-weight: 600; }

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 900px) {
    .hero-quadra-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 2.5rem;
    }
    
    .hero-dashboard-card {
        margin: 0 auto;
    }
    
    .hero-video {
        object-position: center 30%;
    }
    
    .hero-video-background {
        position: fixed;
        width: 100vw;
        height: 100vh;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 4rem;
        min-height: 100vh;
    }
    
    .hero-video-background {
        position: fixed;
        width: 100vw;
        height: 100vh;
    }
    
    .hero-video {
        filter: brightness(0.6) contrast(1.2);
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .hero-video-overlay {
        background: linear-gradient(135deg, 
            rgba(102, 126, 234, 0.9) 0%, 
            rgba(118, 75, 162, 0.9) 100%);
    }
    
    .stats-section {
        margin-top: -2rem;
        padding: 4rem 0;
    }
    
    .features-section {
        padding: 6rem 0;
    }
    
    .cta-section {
        padding: 6rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content,
    .cta-content {
        padding: 0 1rem;
    }
    
    .hero-video {
        object-position: center 40%;
    }
    
    .hero-video-overlay {
        background: linear-gradient(135deg, 
            rgba(102, 126, 234, 0.95) 0%, 
            rgba(118, 75, 162, 0.95) 100%);
    }
    
    .hero-video-background {
        position: fixed;
        width: 100vw;
        height: 100vh;
    }
    
    .stat-card,
    .feature-card {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   OTIMIZAÇÕES DE PERFORMANCE
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        animation: none;
    }
    
    .btn-hero:hover {
        transform: none;
    }
    
    .feature-card:hover {
        transform: none;
    }
    
    .stat-card:hover {
        transform: none;
    }
}

/* ==========================================================================
   FALLBACK PARA NAVEGADORES SEM SUPORTE A VÍDEO
   ========================================================================== */
.hero-video-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 1;
    opacity: 0;
}

.hero-video-background:not(:has(video))::before {
    opacity: 1;
}

/* ==========================================================================
   MELHORIAS DE VISIBILIDADE E PERFORMANCE
   ========================================================================== */
/* Garantir que o conteúdo seja sempre visível */
.stat-card,
.feature-card,
.plano-home-card,
.btn-conhecer-planos {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.8s ease, transform 0.8s ease !important;
}

/* Estado inicial visível para dispositivos sem suporte a animações */
.no-animation-support .stat-card,
.no-animation-support .feature-card,
.no-animation-support .plano-home-card,
.no-animation-support .btn-conhecer-planos {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}

/* Otimizações para dispositivos móveis */
.mobile-optimized .stat-card,
.mobile-optimized .feature-card,
.mobile-optimized .plano-home-card {
    transition: opacity 0.4s ease, transform 0.4s ease !important;
}

/* Fallback para elementos que podem ficar ocultos */
.stat-card[style*="opacity: 0"],
.feature-card[style*="opacity: 0"],
.plano-home-card[style*="opacity: 0"],
.btn-conhecer-planos[style*="opacity: 0"] {
    opacity: 1 !important;
}

/* ==========================================================================
   SEÇÃO DE PLANOS NA HOME
   ========================================================================== */
.planos-home-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.planos-home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid-plans" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23cbd5e1" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid-plans)"/></svg>');
    opacity: 0.5;
}

.planos-home-section header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.planos-home-section .section-title {
    color: #1e293b;
    margin-bottom: 1rem;
}

.planos-home-section .section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.planos-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.plano-home-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.plano-home-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #3b82f6;
}

.plano-destaque {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    position: relative;
}

.plano-home-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.plano-home-badge i {
    margin-right: 0.5rem;
    color: #fbbf24;
}

.plano-home-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plano-home-nome {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.plano-home-descricao {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
}

.plano-home-preco {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
}

.plano-home-valor {
    font-size: 3rem;
    font-weight: 800;
    color: #3b82f6;
    display: block;
}

.plano-destaque .plano-home-valor {
    color: #1d4ed8;
}

.plano-home-periodo {
    color: #64748b;
    font-size: 1.125rem;
    font-weight: 500;
}

.plano-home-caracteristicas {
    margin-bottom: 2rem;
}

.caracteristicas-home-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.caracteristica-home-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.caracteristica-home-item:last-child {
    border-bottom: none;
}

.caracteristica-home-item i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 1.125rem;
    min-width: 20px;
}

.caracteristica-home-item span {
    color: #374151;
    font-weight: 500;
}

.plano-home-acoes {
    text-align: center;
}

.btn-plano-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-plano-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: white;
    text-decoration: none;
}

.btn-plano-home-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.btn-plano-home-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.btn-plano-home i {
    margin-right: 0.5rem;
}

.planos-home-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.btn-conhecer-planos {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-conhecer-planos:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-conhecer-planos i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-conhecer-planos:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   RESPONSIVIDADE PARA SEÇÃO DE PLANOS
   ========================================================================== */
@media (max-width: 768px) {
    .planos-home-section {
        padding: 4rem 0;
    }
    
    .planos-home-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .plano-home-card {
        padding: 2rem 1.5rem;
    }
    
    .plano-home-valor {
        font-size: 2.5rem;
    }
    
    .btn-conhecer-planos {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ==========================================================================
   MELHORIAS DE ACESSIBILIDADE E VISIBILIDADE
   ========================================================================== */
/* Garantir contraste adequado */
.stat-card,
.feature-card,
.plano-home-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Melhorar visibilidade em dispositivos com baixa resolução */
@media (max-width: 480px) {
    .stat-card,
    .feature-card,
    .plano-home-card {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
    }
}

/* Indicador visual de carregamento */
.loading-indicator {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.loading-indicator.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.loading-indicator .spinner-border {
    width: 3rem;
    height: 3rem;
    color: #3b82f6;
}

.loading-indicator p {
    color: #374151;
    font-weight: 500;
    margin-top: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Classe para dispositivos sem suporte a animações */
.no-animation-support {
    /* Desabilitar todas as animações */
}

.no-animation-support * {
    animation: none !important;
    transition: none !important;
}

@media (max-width: 576px) {
    .planos-home-section {
        padding: 3rem 0;
    }
    
    .plano-home-card {
        padding: 1.5rem 1rem;
    }
    
    .plano-home-valor {
        font-size: 2rem;
    }
    
    .plano-home-nome {
        font-size: 1.5rem;
    }
    
    .btn-plano-home {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .plano-home-card:hover {
        transform: none;
    }
    
    .btn-plano-home:hover,
    .btn-conhecer-planos:hover {
        transform: none;
    }
    
    .btn-conhecer-planos:hover i {
        transform: none;
    }
}