#view-landing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

#view-landing .text-center {
    text-align: center;
}

#view-landing .text-primary {
    color: #007bff;
}

#view-landing .text-success {
    color: #28a745;
}

#view-landing .text-muted {
    color: #6c757d;
}

#view-landing .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

#view-landing .btn-primary {
    background-color: #007bff;
    color: white;
}

#view-landing .btn-primary:hover {
    background-color: #0056b3;
}

#view-landing .btn-secondary {
    background-color: #6c757d;
    color: white;
}

#view-landing .btn-secondary:hover {
    background-color: #5a6268;
}

#view-landing .btn-lg {
    font-size: 1.25rem;
    padding: 1rem 2rem;
}

/* Layout responsivo base */
#view-landing .row {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem;
}

#view-landing .col-md-4,
#view-landing .col-md-6 {
    padding: 1rem;
    box-sizing: border-box;
    width: 100%;
}

@media (min-width: 768px) {
    #view-landing .col-md-4 { width: 33.333%; }
    #view-landing .col-md-6 { width: 50%; }
    #view-landing .row.align-items-center { align-items: center; }
}

#view-landing .feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
}

#view-landing .feature-card:hover {
    transform: translateY(-5px);
}

#view-landing ul {
    list-style: none;
    padding-left: 0;
}

#view-landing ul li {
    margin-bottom: 0.5rem;
}
