.blog-header-img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: #071844;
    border-left: 5px solid #007bff;
    padding-left: 15px;
    margin: 40px 0 20px;
    font-weight: bold;
}

.highlight-box {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    font-style: italic;
}

.box-blue {
    background: #eef7ff;
    border-left: 4px solid #3498db;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.box-red {
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
    padding: 20px;
    border-radius: 8px;
}

.box-green {
    background: #f1f8e9;
    padding: 24px;
    border-radius: 8px;
    margin: 30px 0;
}

.box-green h3 {
    color: #2e7d32;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 24px;
}

.box-green-item {
    margin-bottom: 16px;
}

.box-yellow {
    background: #fff8e1;
    padding: 24px;
    border-radius: 8px;
    margin: 30px 0;
}

.box-yellow h3 {
    color: #f57c00;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 24px;
}

.box-yellow-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.box-yellow-table th,
.box-yellow-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.box-yellow-table th {
    background: #f5f5f5;
}

.tech-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #007bff;
}

.btn-consult {
    background-color: #ff6b6b;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-align: center;
    font-weight: bold;
    display: block;
    margin: 40px auto;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.btn-consult:hover {
    background-color: #ff5252;
    color: white;
}

.check-list {
    background: #f0f7ff;
    border-radius: 6px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.check-list li {
    list-style: none;
    margin-bottom: 0.5rem;
}

.check-list li::before {
    content: "■ ";
    color: #2c5282;
    margin-right: 0.5rem;
}

.note {
    background: #fff8e6;
    border: 1px solid #ffe082;
    border-radius: 6px;
    padding: 1rem;
    margin: 1.5rem 0;
    font-weight: 500;
}

.note-import {
    background: rgba(215, 81, 64, 0.1);
    border: 1px solid rgba(215, 81, 64);
    border-radius: 6px;
    padding: 1rem;
    margin: 1.5rem 0;
    font-weight: 500;
}

h3 {
    color: #3182ce;
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.h3-bg {
    color: #16a085;
    background-color: #16a0842b;
    display: inline;
    border-radius: 4px;
    padding: 4px;
    font-style: italic;
}
        
.contact {
    background: rgba(83, 157, 84, 0.1);
    border: 1px solid rgba(83, 157, 84);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.table th,
.table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.table th {
    background-color: #f2f2f2;
    color: #2c3e50;
}

.table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.check2-list {
    list-style: none;
}

.check2-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

/* .check2-list li::before {
    content: "• ";
    margin-right: 0.5rem;
} */

.check2 {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 3px;
    margin-right: 10px;
    flex-shrink: 0;
    cursor: pointer;
    background: white;
    margin-top: auto;
    margin-bottom: auto;
}

.check2.active {
    background: #3498db;
    border-color: #3498db;
    position: relative;
}

.check2.active::after {
    content: "✓";
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .btn-consult {
        font-size: 16px;
    }

    h3 {
        font-size: 16px;
    }
}