/* css/property.css */
.property-details {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
.property-main {
    width: 100%;
    max-width: 780px;
    border-radius: 40px;
    border: 1px solid #e0e0e0;
    padding: 40px;
    box-sizing: border-box;
    background-color: #fff;
}
.property-summary {
    width: 330px;
    position: sticky;
    top: 20px;
    border-radius: 40px;
    border: 1px solid #e0e0e0;
    padding: 30px;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.summary-costs {
    margin-bottom: 20px;
}
.cost-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #555;
    font-size: 15px;
}
.total-row {
    font-weight: bold;
    color: #333;
    font-size: 18px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 5px;
}
.link-action {
    color: #007bff;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: bold;
}
.link-action:hover {
    text-decoration: underline;
}
.btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: background-color 0.2s;
}
.btn-primary:hover {
    background-color: #0056b3;
}
.btn-secondary {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background-color 0.2s;
}
.btn-secondary:hover {
    background-color: #e2e6ea;
}
.evaluation-box {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.btn-outline {
    background-color: transparent;
    color: #007bff;
    border: 1px solid #007bff;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}
.btn-outline:hover {
    background-color: #007bff;
    color: white;
}
.evaluation-box p {
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.4;
}
.action-icons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.btn-icon {
    flex: 1;
    background-color: transparent;
    border: 1px solid #ccc;
    color: #333;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.2s;
}
.btn-icon:hover {
    background-color: #f8f9fa;
}

/* NOVAS CLASSES DO CONTEÚDO PRINCIPAL */
.breadcrumb {
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
}
.breadcrumb a {
    color: #666;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
    color: #007bff;
}
.breadcrumb span {
    margin: 0 5px;
    color: #999;
}
.property-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0 0 5px 0;
}
.property-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0 0 30px 0;
}
.property-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.feature-tag {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.property-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
    margin-bottom: 25px;
}
.property-description-section {
    margin-bottom: 30px;
}
.property-description-section h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}
.property-description-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0 0 15px 0;
}
.owner-description {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #007bff;
}
.owner-description h3 {
    font-size: 16px;
    color: #333;
    margin: 0 0 10px 0;
}
.owner-description p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-style: italic;
}

@media (max-width: 900px) {
    .property-details {
        flex-direction: column;
    }
    .property-main, .property-summary {
        width: 100%;
        max-width: 100%;
    }
    .property-summary {
        position: static;
    }
}

/* ADICIONE ISSO NO FINAL DO SEU css/property.css */
.property-items-section {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 40px;
    padding-top: 10px;
}
.items-column {
    flex: 1;
}
.items-column h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}
.items-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.items-list li {
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}
.items-available li {
    color: #333;
}
.items-available li::before {
    content: \'✓\';
    color: #28a745;
    font-weight: bold;
    font-size: 16px;
}
.items-unavailable li {
    color: #999;
    text-decoration: line-through;
}
.items-unavailable li::before {
    content: \'✕\';
    color: #dc3545;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
}
@media (max-width: 768px) {
    .property-items-section {
        flex-direction: row; /* Forçando lado a lado mesmo no mobile, como o comandante ordenou */
        gap: 20px;
    }
    .items-column h3 {
        font-size: 16px;
    }
    .items-list li {
        font-size: 13px;
    }
}
