/* === Importação de Fontes === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* === Variáveis CSS === */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --light-gray: #f8fafc;
    --border-color: #e2e8f0;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light-gray: #94a3b8;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --radius: 0.5rem;
    --transition: all 0.3s ease;
}

/* === Reset e Estilos Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* === Utilitários === */
.text-light-gray {
    color: var(--text-light-gray) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

/* Botões brancos com cor do botão "Começar Agora" */
.btn-light {
    background-color: var(--warning-color) !important;
    border-color: var(--warning-color) !important;
    color: white !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: #d97706 !important;
    border-color: #d97706 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.btn-outline-light {
    background-color: transparent !important;
    border-color: var(--warning-color) !important;
    color: var(--warning-color) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--warning-color) !important;
    border-color: var(--warning-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

/* === Navbar === */
.navbar {
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: white;
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

/* === Hero Section === */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-section.full-width-cta {
    width: 100vw;
    margin: 0;
    padding: 80px 0;
    text-align: center;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-section.full-width-cta .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.hero-section.full-width-cta .cta-content {
    margin-bottom: 3rem;
}

.hero-section.full-width-cta .cta-stats {
    margin-bottom: 2rem;
}

.hero-section.full-width-cta .stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-section.full-width-cta .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.hero-section.full-width-cta .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.hero-section.full-width-cta .cta-message {
    margin-bottom: 2rem;
}

.hero-section.full-width-cta .cta-highlight {
    background: rgba(255, 193, 7, 0.2);
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 0 5px 5px 0;
    margin: 1rem 0;
}

.hero-section.full-width-cta .cta-buttons {
    margin-top: 2rem;
}

.hero-section.full-width-cta .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-section.full-width-cta .btn-warning {
    background: #ffc107;
    border-color: #ffc107;
    color: #000;
}

.hero-section.full-width-cta .btn-warning:hover {
    background: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.hero-section.full-width-cta .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    background: transparent;
}

.hero-section.full-width-cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .hero-section.full-width-cta {
        padding: 60px 0;
    }
    
    .hero-section.full-width-cta .stat-number {
        font-size: 2rem;
    }
    
    .hero-section.full-width-cta .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

.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 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="1000,0 1000,100 0,100"/></svg>');
    background-size: cover;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* === Cards === */
.card {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.card-header {
    background-color: transparent;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* === Service Cards === */
.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === Section Styles === */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-bg {
    background-color: var(--light-gray);
}

/* === Botões === */
.btn {
    border-radius: var(--radius);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.btn-success {
    background-color: var(--success-color);
    border-color: var(--success-color);
}

.btn-warning {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
}

/* Garantir que o botão Entrar no navbar sempre use a cor padrão do Bootstrap */
.navbar .btn-warning,
.navbar .btn-warning:focus,
.navbar .btn-warning:active {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #000 !important;
}

.navbar .btn-warning:hover {
    background-color: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #000 !important;
}

.btn-danger {
    background-color: var(--danger-color);
    border-color: var(--danger-color);
}

/* === Formulários === */
.form-control, .form-select {
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.is-invalid {
    border-color: var(--danger-color);
}

.invalid-feedback {
    display: block;
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* === Alertas === */
.alert {
    border-radius: var(--radius);
    border: none;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #065f46;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: #991b1b;
}

.alert-warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: #92400e;
}

.alert-info {
    background-color: rgba(59, 130, 246, 0.1);
    color: #1e40af;
}

/* === Footer === */
.footer {
    background-color: #1f2937 !important;
    border-top: 1px solid #374151;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.footer h5, .footer h6 {
    color: white !important;
    margin-bottom: 1rem !important;
}

.footer a {
    color: var(--text-light-gray) !important;
    text-decoration: none !important;
    transition: var(--transition) !important;
}

.footer a:hover {
    color: white !important;
}

.footer .text-light-gray {
    color: var(--text-light-gray) !important;
}

/* Garantir que os links do menu do footer mantenham o padrão */
.footer .list-unstyled li {
    margin-bottom: 0.5rem !important;
}

.footer .list-unstyled li a {
    color: var(--text-light-gray) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 0.9rem !important;
}

.footer .list-unstyled li a:hover {
    color: white !important;
    text-decoration: none !important;
}

.footer .list-unstyled li.text-light-gray {
    color: var(--text-light-gray) !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
}

/* Garantir que o footer mantenha o layout correto */
.footer .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.footer .row {
    margin: 0 !important;
}

.footer .col-lg-4,
.footer .col-lg-2,
.footer .col-lg-3,
.footer .col-md-6 {
    padding: 0 15px !important;
}

.footer .mb-4 {
    margin-bottom: 1.5rem !important;
}

.footer .mb-3 {
    margin-bottom: 1rem !important;
}

.footer .text-md-end {
    text-align: right !important;
}

@media (max-width: 768px) {
    .footer .text-md-end {
        text-align: left !important;
    }
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.border-secondary {
    border-color: #374151 !important;
}

/* === Animações === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* === Responsividade === */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* === Estilo para Páginas Específicas === */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* === Loading Animation === */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* === Estilos para Páginas de Serviços === */
.service-hero-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.service-hero-banner::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 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="1000,0 1000,100 0,100"/></svg>');
    background-size: cover;
}

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

.hero-icon {
    position: relative;
    z-index: 2;
    font-size: 8rem;
    opacity: 0.3;
    color: white;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === Estilos para Seções de Soluções === */
.solution-content {
    padding: 2rem 0;
}

.solution-visual {
    padding: 2rem 0;
}

.diagram-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem;
    border-radius: var(--radius) var(--radius) 0 0;
    margin-bottom: 0;
}

.diagram-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.diagram-content {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow-md);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.feature-list li i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* === Estilos para Cards de Tecnologia === */
.tech-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.tech-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* === Estilos para Processo === */
.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.process-step h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* === Responsividade para Páginas de Serviços === */
@media (max-width: 768px) {
    .service-hero-banner {
        padding: 60px 0;
    }
    
    .hero-icon {
        font-size: 4rem;
    }
    
    .tech-card {
        margin-bottom: 1.5rem;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
}

/* === Modern Dashboard Styles === */
.mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.mockup-screen {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    overflow: hidden;
}

.mockup-header {
    background: #2a2a2a;
    padding: 15px 20px;
    border-bottom: 1px solid #333;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca3f; }

.mockup-content {
    padding: 20px;
    background: #f8f9fa;
    min-height: 300px;
}

.dashboard-preview {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
    margin-bottom: 20px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.header-top h4 {
    color: #333;
    font-weight: 600;
    margin: 0;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    position: relative;
}

.status-indicator.online::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    color: white;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 12px;
}

.stat-card.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-card.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-card.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stat-card.info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.2rem;
}

.stat-content {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
}

.appointment-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-header h5 {
    color: #333;
    font-weight: 600;
    margin: 0;
}

.badge {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 12px;
}

.appointment-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.appointment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.appointment-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-left-color: #10b981;
}

.appointment-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.appointment-time {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.appointment-time .time {
    font-weight: 700;
    font-size: 1rem;
    color: inherit;
}

.appointment-time .status {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 500;
}

.appointment-details {
    flex: 1;
    margin: 0 15px;
}

.appointment-details .client {
    font-weight: 600;
    color: inherit;
    display: block;
    margin-bottom: 2px;
}

.appointment-details .service {
    font-size: 0.85rem;
    opacity: 0.8;
    color: inherit;
}

.appointment-actions {
    font-size: 1.2rem;
}

/* === Lottery Cards Styles === */
.lottery-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.lottery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.lottery-header {
    margin-bottom: 1rem;
}

.lottery-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
}

.lottery-numbers {
    margin-bottom: 1rem;
}

.number-row {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.lottery-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    background: #6b7280;
    transition: all 0.3s ease;
}

.lottery-number.bg-success {
    background: #10b981 !important;
    color: white !important;
}

.lottery-number.bg-primary {
    background: #3b82f6 !important;
    color: white !important;
}

.lottery-number.bg-light {
    background: #f3f4f6 !important;
    color: #374151 !important;
    border: 1px solid #d1d5db;
}

.lottery-info {
    text-align: center;
}

.lottery-date {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.lottery-source {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.lottery-actions {
    margin-top: 0.5rem;
}

.lottery-links {
    margin-top: 0.5rem;
}

.lottery-links a {
    transition: color 0.3s ease;
}

.lottery-links a:hover {
    text-decoration: underline !important;
}

@media (max-width: 768px) {
    .lottery-card {
        padding: 1rem;
    }
    
    .lottery-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .number-row {
        gap: 0.25rem;
    }
}

/* === Barber Section Styles === */
.barber-showcase {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.barber-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.barber-real-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(40, 167, 69, 0.1) 100%);
    border-radius: 20px;
}

.tablet-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 120px;
    height: 90px;
    background: #2c3e50;
    border-radius: 12px;
    z-index: 6;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border: 2px solid #ffffff;
}

.tablet-screen {
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.app-interface {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 8px;
    font-size: 10px;
    color: #2c3e50;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid #e9ecef;
}

.app-title {
    font-weight: bold;
    color: #007bff;
    font-size: 12px;
}

.app-status {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.app-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.current-service {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-name {
    font-weight: bold;
    color: #2c3e50;
    font-size: 11px;
}

.service-time {
    font-size: 9px;
    color: #6c757d;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 4px;
}

.client-name {
    font-weight: bold;
    color: #2c3e50;
    font-size: 10px;
}

.client-phone {
    font-size: 8px;
    color: #6c757d;
}

.service-actions {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.action-btn {
    flex: 1;
    padding: 3px 6px;
    font-size: 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.action-btn.start {
    background: #28a745;
    color: white;
}

         .action-btn.finish {
             background: #dc3545;
             color: white;
         }

         /* Client Interface Section */
         .client-interface-content {
             padding-right: 2rem;
         }

         .interface-features {
             margin-top: 2rem;
         }

         .feature-item {
             display: flex;
             align-items: flex-start;
             margin-bottom: 1.5rem;
             padding: 1rem;
             background: #f8f9fa;
             border-radius: 12px;
             transition: all 0.3s ease;
         }

         .feature-item:hover {
             background: #e9ecef;
             transform: translateY(-2px);
             box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
         }

         .feature-icon {
             width: 50px;
             height: 50px;
             background: linear-gradient(135deg, #007bff, #0056b3);
             border-radius: 12px;
             display: flex;
             align-items: center;
             justify-content: center;
             margin-right: 1rem;
             flex-shrink: 0;
         }

         .feature-icon i {
             color: white;
             font-size: 1.2rem;
         }

         .feature-content h5 {
             margin-bottom: 0.5rem;
             color: #2c3e50;
             font-weight: 600;
         }

         .feature-content p {
             margin-bottom: 0;
             font-size: 0.9rem;
         }

         /* Mobile App Showcase */
         .mobile-app-showcase {
             display: flex;
             justify-content: center;
             align-items: center;
             height: 100%;
         }

         .phone-mockup {
             width: 280px;
             height: 560px;
             background: #2c3e50;
             border-radius: 30px;
             padding: 8px;
             box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
             position: relative;
         }

         .phone-screen {
             width: 100%;
             height: 100%;
             background: #ffffff;
             border-radius: 22px;
             overflow: hidden;
             position: relative;
         }

         .app-header {
             background: linear-gradient(135deg, #007bff, #0056b3);
             color: white;
             padding: 1rem;
             position: relative;
         }

         .status-bar {
             display: flex;
             justify-content: space-between;
             align-items: center;
             font-size: 0.8rem;
             margin-bottom: 1rem;
         }

         .status-icons {
             display: flex;
             gap: 0.3rem;
         }

         .status-icons i {
             font-size: 0.7rem;
         }

         .app-title h4 {
             margin-bottom: 0.2rem;
             font-weight: 600;
         }

         .app-title .subtitle {
             font-size: 0.8rem;
             opacity: 0.9;
         }

         .app-content {
             padding: 1rem;
             height: calc(100% - 120px);
             overflow-y: auto;
         }

         .date-selector {
             display: flex;
             gap: 0.5rem;
             margin-bottom: 1.5rem;
         }

         .date-item {
             flex: 1;
             text-align: center;
             padding: 0.5rem;
             border-radius: 8px;
             background: #f8f9fa;
             cursor: pointer;
             transition: all 0.3s ease;
         }

         .date-item.active {
             background: #007bff;
             color: white;
         }

         .date-item .day {
             display: block;
             font-size: 0.7rem;
             font-weight: 500;
         }

         .date-item .date {
             display: block;
             font-size: 1.1rem;
             font-weight: bold;
         }

         .time-slots {
             margin-bottom: 1.5rem;
         }

         .time-slots h6 {
             margin-bottom: 0.8rem;
             color: #2c3e50;
             font-weight: 600;
         }

         .slot-grid {
             display: grid;
             grid-template-columns: repeat(4, 1fr);
             gap: 0.5rem;
         }

         .time-slot {
             padding: 0.5rem;
             text-align: center;
             border-radius: 6px;
             font-size: 0.8rem;
             font-weight: 500;
             cursor: pointer;
             transition: all 0.3s ease;
         }

         .time-slot.available {
             background: #e8f5e8;
             color: #28a745;
             border: 1px solid #c3e6c3;
         }

         .time-slot.booked {
             background: #f8d7da;
             color: #dc3545;
             border: 1px solid #f5c6cb;
         }

         .time-slot:hover {
             transform: translateY(-1px);
             box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
         }

         .service-selection {
             margin-bottom: 1.5rem;
         }

         .service-selection h6 {
             margin-bottom: 0.8rem;
             color: #2c3e50;
             font-weight: 600;
         }

         .service-options {
             display: flex;
             flex-direction: column;
             gap: 0.5rem;
         }

         .service-option {
             display: flex;
             justify-content: space-between;
             align-items: center;
             padding: 0.8rem;
             border-radius: 8px;
             background: #f8f9fa;
             cursor: pointer;
             transition: all 0.3s ease;
         }

         .service-option.selected {
             background: #007bff;
             color: white;
         }

         .service-name {
             font-weight: 500;
             font-size: 0.9rem;
         }

         .service-price {
             font-weight: bold;
             font-size: 0.9rem;
         }

         .booking-button {
             position: absolute;
             bottom: 1rem;
             left: 1rem;
             right: 1rem;
         }

         .btn-book {
             width: 100%;
             padding: 0.8rem;
             background: #28a745;
             color: white;
             border: none;
             border-radius: 8px;
             font-weight: 600;
             font-size: 0.9rem;
             cursor: pointer;
             transition: all 0.3s ease;
         }

         .btn-book:hover {
             background: #218838;
             transform: translateY(-1px);
             box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
         }

         /* Responsive adjustments */
         @media (max-width: 768px) {
             .client-interface-content {
                 padding-right: 0;
                 margin-bottom: 2rem;
             }

             .phone-mockup {
                 width: 240px;
                 height: 480px;
             }

             .slot-grid {
                 grid-template-columns: repeat(3, 1fr);
             }
         }













/* Barber Content */
.barber-content {
    padding: 2rem 0;
}

.barber-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.feature-text h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-text p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .barber-showcase {
        height: 400px;
        margin-bottom: 2rem;
    }
    
    .barber-environment {
        border-radius: 15px;
    }
    
    .tablet-device {
        width: 60px;
        height: 45px;
        top: 150px;
        right: 20px;
    }
    
    .feature-item {
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 0.75rem;
    }
} 

/* Payment Integration Section */
.payment-content {
    padding-right: 2rem;
}

.payment-features {
    margin-top: 2rem;
}

.payment-features .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.payment-features .feature-item:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-features .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.payment-features .feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.payment-features .feature-content h5 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.payment-features .feature-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.payment-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #28a745;
}

.payment-method .method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.payment-method .method-icon i {
    color: white;
    font-size: 1.5rem;
}

.payment-method .method-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

/* Integration Card */
.payment-integration-info {
    margin-top: 2rem;
}

.integration-card {
    background: linear-gradient(135deg, #6c757d, #495057);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.integration-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.integration-card .card-header i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #28a745;
}

.integration-card .card-header h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.integration-card .card-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.supported-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.platform {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments for payment section */
@media (max-width: 768px) {
    .payment-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .payment-method {
        padding: 1rem;
    }

    .payment-method .method-icon {
        width: 50px;
        height: 50px;
    }

    .payment-method .method-icon i {
        font-size: 1.2rem;
    }

    .supported-platforms {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
} 