/* agrocontrol.css */
.agro-hero {
    background: linear-gradient(135deg, #0e1a26 0%, #1a2c3b 100%);
    padding: 60px 0;
}

.produto-header {
    text-align: center;
    margin-bottom: 50px;
}

.produto-badge {
    background: linear-gradient(135deg, #6c8fa7, #4e7089);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.produto-header h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.produto-subtitle {
    font-size: 20px;
    color: #a0b8cc;
}

/* Dashboard Completo */
.agro-dashboard-full {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.quick-stat-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.quick-stat-card .stat-icon {
    font-size: 36px;
}

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

.dashboard-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dashboard-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 25px;
}

.dashboard-card.large {
    grid-column: span 2;
}

.dashboard-card.full-width {
    grid-column: span 2;
}

.dashboard-card h3 {
    margin-bottom: 20px;
    color: #a0b8cc;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tabela */
.agro-table {
    width: 100%;
    border-collapse: collapse;
}

.agro-table th {
    text-align: left;
    padding: 12px;
    color: #6c8fa7;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.agro-table td {
    padding: 12px;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status.ativo {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff88;
}

.status.destaque {
    background: rgba(255, 215, 0, 0.1);
    color: gold;
}

/* Ações Rápidas */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-btn {
    background: rgba(108, 143, 167, 0.1);
    border: 1px solid rgba(108, 143, 167, 0.3);
    color: white;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn:hover {
    background: rgba(108, 143, 167, 0.3);
    transform: translateX(5px);
}

/* Mapa */
.farm-map {
    background: #1a2c3b;
    height: 200px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2a3f4f 25%, #1e2f3d 75%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    color: #a0b8cc;
    font-size: 14px;
}

.map-overlay span:first-child {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

/* Alertas */
.alerts-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alert {
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.alert.warning {
    background: rgba(255, 165, 0, 0.1);
    border-left: 3px solid orange;
}

.alert.info {
    background: rgba(108, 143, 167, 0.1);
    border-left: 3px solid #6c8fa7;
}

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

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

.func-item {
    background: #18232e;
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s;
}

.func-item:hover {
    transform: translateY(-10px);
}

.func-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.func-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.func-list {
    margin-top: 20px;
    list-style: none;
    color: #a0b8cc;
}

.func-list li {
    margin-bottom: 8px;
}

/* Planos */
.planos {
    padding: 100px 0;
}

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

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

.plano-card:hover {
    transform: scale(1.05);
}

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

.popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #6c8fa7;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.preco {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0;
}

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

.plano-card ul {
    list-style: none;
    margin: 30px 0;
    color: #a0b8cc;
}

.plano-card li {
    margin-bottom: 10px;
}

/* CTA Final */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, #6c8fa7, #4e7089);
    text-align: center;
}

.cta-final h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-final .btn-outline {
    border-color: white;
    color: white;
}

.cta-final .btn-outline:hover {
    background: white;
    color: #4e7089;
}

/* Responsivo */
@media (max-width: 968px) {
    .func-grid,
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-main-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
    }
}