/* Custom Styles para Bobbie Goods Landing Page */

:root {
    --primary-color: #4f46e5;
    --secondary-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --light-bg: #f8fafc;
    --dark-bg: #1f2937;
}

/* Fonte personalizada */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Melhorar todos os textos da seção hero */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 0;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    color: #ffffff !important;
}

.hero-content h1 .text-primary {
    color: #fbbf24 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-content .lead {
    color: #f9fafb !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

.hero-features {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-features span {
    color: #f9fafb !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

.hero-features .text-success {
    color: #10b981 !important;
    filter: brightness(1.2);
    text-shadow: 0 0 3px rgba(16, 185, 129, 0.3);
}

/* Melhorias adicionais para legibilidade */
.hero-buttons .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.hero-buttons .btn-primary {
    background: #4f46e5 !important;
    border: none;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-outline-secondary {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid #ffffff !important;
    color: #374151 !important;
    font-weight: 600;
}

.hero-buttons .btn-outline-secondary:hover {
    background: #ffffff !important;
    color: #374151 !important;
    border-color: #ffffff !important;
}

/* Melhorar todos os textos da seção hero */
.hero-section * {
    color: #ffffff;
}

.brand-logo h2 {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
}

.brand-logo i {
    color: #fbbf24 !important;
}

.hero-section .text-primary {
    color: #fbbf24 !important;
}

.hero-section .text-success {
    color: #34d399 !important;
}

.hero-section p, .hero-section span, .hero-section small {
    color: #f9fafb !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Garantir que os price tags tenham display block para espaçamento */
.price-tag {
    display: inline-block;
    margin-bottom: 1rem;
}

/* Estados de foco para acessibilidade */
.btn:focus, .btn:focus-visible {
    outline: 3px solid rgba(79, 70, 229, 0.5) !important;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2) !important;
}

/* Product Showcase */
.product-showcase {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.product-mockup {
    background: linear-gradient(45deg, #fff 0%, #f8f9fa 100%);
    border: 3px solid #e9ecef;
    position: relative;
}

.product-mockup::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

/* Produtos Section */
.produtos-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.produtos-section h2 {
    color: #1f2937 !important;
}

.produtos-section .lead {
    color: #6b7280 !important;
}

.produtos-section .text-muted {
    color: #6b7280 !important;
}

.produto-card {
    transition: all 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
}

.produto-card .card-body {
    background: #ffffff;
}

.produto-card h3 {
    color: #1f2937 !important;
}

.produto-card p {
    color: #6b7280 !important;
}

.produto-card li span {
    color: #374151 !important;
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.produto-icon {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.price-tag {
    background: #f3f4f6 !important;
    color: #374151 !important;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid #d1d5db;
    box-shadow: none;
}

/* Variações específicas para diferentes contextos */
.price-tag.oferta-especial {
    background: #fef2f2 !important;
    color: #dc2626 !important;
    border-color: #fecaca;
}

.price-tag.preco-acessivel {
    background: #f0fdf4 !important;
    color: #16a34a !important;
    border-color: #bbf7d0;
}

/* Benefícios Section */
.beneficios-section {
    background: #f8fafc;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.beneficios-section h2 {
    color: #1f2937 !important;
}

.beneficios-section .lead {
    color: #6b7280 !important;
}

.beneficios-section h4 {
    color: #1f2937 !important;
}

.beneficios-section p {
    color: #6b7280 !important;
}

.beneficio-icon {
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.beneficio-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6366f1 100%);
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.cta-section .card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.cta-features i {
    opacity: 0.8;
}

.btn-warning {
    background: #f59e0b;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    border: none;
    border-radius: 15px;
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-warning:hover, .btn-warning:focus {
    background: #d97706;
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

/* Melhorar botões outline para maior contraste */
.btn-outline-primary {
    border: 2px solid #4f46e5;
    color: #4f46e5 !important;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background: #4f46e5;
    color: #ffffff !important;
    border-color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
}

.btn-outline-secondary {
    border: 2px solid #6b7280;
    color: #374151 !important;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover, .btn-outline-secondary:focus {
    background: #6b7280;
    color: #ffffff !important;
    border-color: #6b7280;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.3);
}

/* Footer */
footer {
    background: var(--dark-bg) !important;
    position: relative;
    z-index: 2;
}

/* Animações e efeitos especiais */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .produtos-section, .beneficios-section, .cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .produto-card, .cta-section .card {
        margin-bottom: 2rem;
    }
}

/* Efeitos de scroll suave */
html {
    scroll-behavior: smooth;
}

/* Melhorias na acessibilidade */
.btn:focus, .card:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Gradientes personalizados para botões com melhor legibilidade */
.btn-primary {
    background: #4f46e5;
    background: linear-gradient(135deg, #4f46e5 0%, #5b52f0 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
    background: #3730a3;
    background: linear-gradient(135deg, #3730a3 0%, #4338ca 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.btn-success {
    background: #10b981;
    background: linear-gradient(135deg, #10b981 0%, #1dd1a1 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-success:hover, .btn-success:focus {
    background: #059669;
    background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Loading animations */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Destacar elementos importantes */
.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: var(--secondary-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

/* Melhorar legibilidade */
.lead {
    font-weight: 300;
    opacity: 0.9;
}

.small {
    opacity: 0.8;
}

/* Estilo para ícones do Font Awesome */
.fas, .fab {
    vertical-align: middle;
}

/* Efeitos de hover para cards */
.card {
    transition: all 0.3s ease;
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}