/* agendone.css */
.agendone-hero {
    background: linear-gradient(135deg, #1a2639 0%, #2a3b4c 100%);
    padding: 60px 0;
}

.produto-badge.scheduling {
    background: linear-gradient(135deg, #00d4ff, #0077be);
}

.highlight {
    color: #00d4ff;
}

/* Calendário */
.calendario-dashboard {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 30px;
    margin-top: 50px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

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

.calendario-header h3 {
    color: #00d4ff;
    font-size: 20px;
}

.calendario-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.calendario-nav button {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.calendario-nav button:hover {
    background: #00d4ff;
    color: #1a2639;
}

#currentDate {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

/* Agenda */
.agenda-grid {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 15px;
    height: 600px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 15px;
}

.timeline-coluna {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.time-slot {
    color: #a0b8cc;
    font-size: 12px;
    font-weight: 600;
    height: 60px;
    display: flex;
    align-items: center;
}

.agenda-visual {
    position: relative;
    height: 100%;
}

.agendamento-card {
    position: absolute;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #00d4ff, #0077be);
    border-radius: 12px;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideIn 0.3s ease;
    cursor: pointer;
    transition: all 0.3s;
}

.agendamento-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
    z-index: 10;
}

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

.agendamento-info {
    display: flex;
    flex-direction: column;
}

.agendamento-info strong {
    font-size: 14px;
    color: white;
}

.agendamento-info span {
    font-size: 11px;
    opacity: 0.8;
}

.agendamento-time {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 20px;
}

/* Stats */
.stats-rapidos {
    padding: 80px 0;
    background: #111821;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    background: #18232e;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: #1f2d3a;
}

.stat-item i {
    font-size: 42px;
    color: #00d4ff;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    display: block;
    color: white;
}

.stat-label {
    color: #a0b8cc;
    font-size: 14px;
}

/* Funcionalidades */
.funcionalidades-agendone {
    padding: 100px 0;
    background: #0e141b;
}

.funcionalidades-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.funcionalidade-card {
    background: #18232e;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.funcionalidade-card:hover {
    border-color: #00d4ff;
    transform: translateY(-10px);
}

.func-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.func-icon i {
    font-size: 32px;
    color: #00d4ff;
}

.funcionalidade-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.funcionalidade-card p {
    color: #a0b8cc;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.func-lista {
    list-style: none;
}

.func-lista li {
    margin-bottom: 10px;
    color: #a0b8cc;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.func-lista i {
    color: #00d4ff;
    font-size: 12px;
}

/* Para Negócios */
.para-negocios {
    padding: 100px 0;
    background: #111821;
    text-align: center;
}

.negocios-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 50px 0;
}

.negocio-tag {
    background: #18232e;
    padding: 12px 25px;
    border-radius: 40px;
    color: #a0b8cc;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.negocio-tag:hover,
.negocio-tag.active {
    background: #00d4ff;
    color: #1a2639;
    border-color: #00d4ff;
}

.preview-img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

/* Planos */
.planos-agendone {
    padding: 100px 0;
    background: #0e141b;
}

.planos-grid-agendone {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.plano-agendone {
    background: #18232e;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.plano-agendone:hover {
    transform: translateY(-10px);
}

.plano-agendone.destaque {
    background: linear-gradient(135deg, #1e2f3d, #2a3f4f);
    border: 2px solid #00d4ff;
    transform: scale(1.05);
}

.plano-agendone h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #00d4ff;
}

.plano-agendone .preco {
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0;
    color: white;
}

.plano-agendone .preco span {
    font-size: 14px;
    color: #a0b8cc;
}

.plano-agendone ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.plano-agendone li {
    margin-bottom: 12px;
    color: #a0b8cc;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plano-agendone li i {
    color: #00d4ff;
    width: 20px;
}

/* App Preview */
.app-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #00d4ff, #0077be);
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.app-info h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.app-info p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.app-buttons {
    display: flex;
    gap: 20px;
}

.app-button {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.app-button:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
}

.app-button i {
    font-size: 24px;
}

.app-mockup {
    text-align: center;
}

.app-mockup i {
    font-size: 200px;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsivo */
@media (max-width: 968px) {
    .funcionalidades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .planos-grid-agendone {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .app-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .app-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .funcionalidades-grid {
        grid-template-columns: 1fr;
    }
    
    .negocios-slider {
        flex-direction: column;
        align-items: stretch;
    }
    
    .negocio-tag {
        text-align: center;
    }
}

/* Badge do domínio no header */
.dominio-badge {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid #00d4ff;
    color: #00d4ff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    margin-left: 20px;
}

.dominio-badge i {
    margin-right: 5px;
}

/* Destaque no hero */
.dominio-destaque {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-flex;
}

.dominio-icon {
    font-size: 20px;
}

.dominio-texto {
    color: #a0b8cc;
}

.dominio-texto strong {
    color: #00d4ff;
    font-size: 18px;
}

/* CTA do domínio */
.cta-dominio {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2639, #0e141b);
    text-align: center;
}

.cta-dominio-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-dominio-content p {
    color: #a0b8cc;
    margin-bottom: 30px;
    font-size: 18px;
}

.btn-cta-dominio {
    background: #00d4ff;
    color: #1a2639;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-cta-dominio:hover {
    transform: scale(1.05);
    background: #1a2639;
    color: #00d4ff;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.btn-cta-dominio i {
    font-size: 28px;
}