/* Folha de Estilos Principal — Clone Plantas de Casas (Design Premium Dark) */

:root {
    --bg-dark-primary: #121212;
    --bg-dark-secondary: #1a1a1a;
    --bg-dark-accent: #242424;
    --text-light-primary: #f5f5f5;
    --text-light-secondary: #cccccc;
    --text-muted: #888888;
    --accent-color: #c5a880; /* Dourado / Bronze de Arquitetura */
    --accent-hover: #d8be99;
    --bg-body: #ffffff;
    --text-body: #222222;
    --border-color: #e0e0e0;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-body);
    color: var(--text-body);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* 1. CABEÇALHO (SITE HEADER) */

.site-header {
    background-color: var(--bg-dark-primary);
    color: var(--text-light-primary);
    padding: 20px 0;
    border-bottom: 2px solid var(--accent-color);
}

.header-top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.title-area {
    display: flex;
    align-items: center;
}

.site-title-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light-primary);
    gap: 10px;
}

.logo-icon {
    color: var(--accent-color);
    display: flex;
    align-items: center;
}

.logo-icon img {
    display: block;
    max-height: 120px;
    width: auto;
}

.site-title-text {
    display: none;
}

.header-widget-area {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.header-widget {
    font-size: 13px;
}

.contact-widget a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    background: #25d366;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 15px;
    transition: background 0.3s, transform 0.2s;
}

.contact-widget a:hover {
    background: #20bd5a;
    transform: scale(1.04);
}

.whatsapp-label strong {
    font-size: 16px;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--bg-dark-accent);
    padding: 6px 12px;
    border-radius: 4px;
    color: #4cd137; /* Verde segurança */
}

/* 2. MENU DE NAVEGAÇÃO */

.nav-primary {
    background-color: var(--bg-dark-secondary);
    color: var(--text-light-primary);
    position: relative;
    z-index: 100;
}

.navigation-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.genesis-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.genesis-nav-menu > li {
    position: relative;
}

.genesis-nav-menu li a {
    display: block;
    color: var(--text-light-primary);
    text-decoration: none;
    padding: 15px 20px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background-color 0.2s, color 0.2s;
}

.genesis-nav-menu li a:hover {
    background-color: var(--bg-dark-primary);
    color: var(--accent-color);
}

/* Dropdown Menu */
.genesis-nav-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-dark-secondary);
    border-top: 2px solid var(--accent-color);
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 200;
}

.genesis-nav-menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.genesis-nav-menu li ul li {
    position: relative;
}

.genesis-nav-menu li ul li a {
    padding: 12px 20px;
    font-size: 13px;
    border-bottom: 1px solid #292929;
}

.genesis-nav-menu li ul li a:hover {
    background-color: var(--bg-dark-accent);
}

/* Sub-submenu */
.genesis-nav-menu li ul li ul {
    top: 0;
    left: 100%;
}

.responsive-menu-toggle {
    display: none;
}

/* 3. BANNER PRINCIPAL DA HOME */

.home-featured {
    background-color: #f7f7f7;
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
}

.featured-banner-section h1 {
    font-size: 32px;
    margin: 0 0 20px;
    color: #111;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

.featured-banner-section h1 strong {
    font-weight: 700;
    color: var(--bg-dark-primary);
}

/* 4. BARRA DE BUSCA AVANÇADA */

.property-search-widget {
    background-color: var(--bg-dark-primary);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    max-width: 1000px;
    margin: 0 auto;
}

.property-search-widget form {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr auto;
    gap: 10px;
    align-items: center;
}

.property-search-widget form input[type="text"] {
    background-color: var(--bg-dark-secondary);
    border: 1px solid #333;
    border-radius: 4px;
    padding: 12px;
    color: #fff;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.property-search-widget form select {
    background-color: var(--bg-dark-secondary);
    border: 1px solid #333;
    border-radius: 4px;
    padding: 12px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
}

.property-search-widget form input[type="submit"] {
    background-color: var(--accent-color);
    color: #111;
    border: none;
    border-radius: 4px;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

.property-search-widget form input[type="submit"]:hover {
    background-color: var(--accent-hover);
}

/* 5. GRID DE PROJETOS (CATÁLOGO) */

.site-inner {
    padding: 40px 0;
}

.featured-listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.listing-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.listing-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.listing-image-container {
    position: relative;
    height: 220px;
    background-color: #eaeaea;
}

.listing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.listing-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(18, 18, 18, 0.85);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid var(--accent-color);
    letter-spacing: 0.5px;
}

.listing-card-body {
    padding: 20px;
}

.listing-price-label {
    font-size: 14px;
    color: var(--text-muted);
}

.listing-price-val {
    font-size: 26px;
    font-weight: 700;
    color: var(--bg-dark-primary);
    margin: 5px 0;
    display: inline-block;
}

.listing-installments {
    font-size: 13px;
    color: #444;
    margin-bottom: 15px;
}

.listing-specs-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid var(--border-color);
    margin-top: 10px;
}

.listing-specs-table td {
    padding: 10px 5px;
    text-align: center;
    width: 25%;
    border-right: 1px solid var(--border-color);
}

.listing-specs-table td:last-child {
    border-right: none;
}

.spec-icon {
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
}

.spec-val {
    font-size: 12px;
    color: #555;
    line-height: 1.2;
}

.search-results-info {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.search-results-info h2 {
    margin: 0 0 5px;
}

.no-projects-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    color: var(--text-muted);
}

/* 6. DETALHES DO PROJETO */

#breadcrumbs {
    font-size: 13px;
    color: var(--text-muted);
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 30px;
}

#breadcrumbs a {
    color: var(--text-body);
    text-decoration: none;
}

#breadcrumbs a:hover {
    color: var(--accent-color);
}

.project-details-container {
    background-color: #fff;
}

.project-columns-flex {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.project-media-col {
    flex: 2;
    min-width: 0; /* Impede quebra de layout */
}

.project-purchase-sidebar {
    flex: 1;
    min-width: 300px;
}

.main-image-viewer {
    width: 100%;
    height: 450px;
    background-color: #f0f0f0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.main-image-viewer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-thumbnails-row {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.thumb-item {
    width: 100px;
    height: 65px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
}

.thumb-item.active, .thumb-item:hover {
    border-color: var(--accent-color);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tabela de Specs Técnicas */
.technical-specs-box {
    margin-bottom: 30px;
}

.specs-title {
    font-size: 18px;
    font-weight: 700;
    background-color: var(--bg-dark-primary);
    color: var(--text-light-primary);
    padding: 12px 15px;
    margin: 0;
    border-radius: 4px 4px 0 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border-color);
}

.specs-table th {
    background-color: #f7f7f7;
    font-weight: 700;
    text-align: center;
    padding: 12px;
    font-size: 13px;
    border: 1px solid var(--border-color);
    color: #444;
}

.specs-table td {
    padding: 15px;
    text-align: center;
    font-size: 14px;
    border: 1px solid var(--border-color);
}

.project-description-text {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 40px;
}

.blueprint-section {
    margin-bottom: 40px;
}

.section-subtitle-bar {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 2px solid var(--bg-dark-primary);
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.blueprint-image-wrapper {
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    background-color: #fdfdfd;
}

.blueprint-image-wrapper img {
    max-width: 100%;
    height: auto;
}

/* Lateral Box de Compra */
.purchase-box-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 20px;
}

.secure-checkout-badge-box {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #27ae60;
    margin-bottom: 15px;
    font-weight: 700;
}

.purchase-title {
    font-size: 20px;
    margin: 0 0 10px;
    color: #111;
}

.purchase-base-price {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
}

.purchase-base-price .base-val {
    font-size: 28px;
    color: var(--bg-dark-primary);
    font-weight: 700;
    margin-left: 5px;
}

.purchase-divider {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 20px 0;
}

.options-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.option-checkbox-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* Custom Checkbox */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ddd;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--bg-dark-primary);
    border-color: var(--bg-dark-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 4px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.option-price {
    font-size: 13px;
    font-weight: 700;
    color: #444;
}

.option-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.info-badge {
    font-size: 11px;
    background-color: #eee;
    color: #666;
    padding: 2px 8px;
    border-radius: 10px;
}

.purchase-total-price-box {
    margin-bottom: 20px;
}

.total-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
}

.total-val {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

.total-installments {
    font-size: 14px;
    color: #555;
}

.btn-buy-project {
    width: 100%;
    background-color: var(--bg-dark-primary);
    color: #fff;
    border: 1px solid #111;
    border-radius: 4px;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-buy-project:hover {
    background-color: #2a2a2a;
}

.payment-logos-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 11px;
    color: var(--text-muted);
}

/* 7. SEÇÃO DE MODIFICAÇÃO (LEAD FORM) */

.modification-request-section {
    background-color: #f9f9f9;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    margin: 50px 0;
}

.modification-form-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
}

.mod-title {
    font-size: 22px;
    margin: 0 0 10px;
    font-family: 'Lato', sans-serif;
    color: #111;
}

.mod-subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
}

.form-field-group {
    margin-bottom: 20px;
}

.form-field-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.form-field-group input[type="text"],
.form-field-group input[type="email"],
.form-field-group textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 12px;
    box-sizing: border-box;
    font-size: 14px;
}

.form-field-group input:focus,
.form-field-group textarea:focus {
    outline: none;
    border-color: var(--bg-dark-primary);
}

.form-row-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-container {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-mark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 50%;
}

.radio-container:hover input ~ .radio-mark {
    background-color: #ddd;
}

.radio-container input:checked ~ .radio-mark {
    background-color: var(--bg-dark-primary);
    border-color: var(--bg-dark-primary);
}

.radio-mark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked ~ .radio-mark:after {
    display: block;
}

.radio-container .radio-mark:after {
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}

.btn-submit-modification {
    background-color: #27ae60; /* Verde conversão */
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.2);
}

.btn-submit-modification:hover {
    background-color: #219653;
}

/* O que inclui a lista */
.included-items-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.included-items-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.item-text strong {
    display: block;
    font-size: 15px;
    color: #222;
    margin-bottom: 4px;
}

.item-text span {
    display: block;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Tags de Categorias */
.project-tags-section {
    margin-bottom: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.project-tags-section h4 {
    margin: 0 0 15px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-link {
    background-color: #eee;
    color: #333;
    text-decoration: none;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.tag-link:hover {
    background-color: var(--accent-color);
    color: #111;
}

/* 8. COMENTÁRIOS */

.comments-section {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    margin-top: 40px;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 40px;
}

.comment-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.comment-item.staff-reply {
    margin-left: 50px;
    background-color: #faf5ee;
    border-color: #e6dccf;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f1f1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #555;
    flex-shrink: 0;
}

.comment-item.staff-reply .comment-avatar {
    background-color: var(--accent-color);
    color: var(--bg-dark-primary);
}

.comment-meta {
    font-size: 13px;
    margin-bottom: 8px;
}

.comment-meta strong {
    color: #111;
}

.comment-date {
    color: var(--text-muted);
    margin-left: 10px;
}

.comment-text {
    font-size: 14px;
    margin: 0;
}

.add-comment-form-box {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
}

.add-comment-form-box h4 {
    margin: 0 0 20px;
}

.btn-submit-comment {
    background-color: var(--bg-dark-primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit-comment:hover {
    background-color: #2a2a2a;
}

/* 9. PROJETOS RELACIONADOS */

.related-projects-section {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    margin-top: 40px;
}

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

.related-card {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.related-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.related-card-info {
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.related-code {
    font-size: 13px;
    font-weight: 700;
}

.related-price {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 700;
}

/* 10. CHECKOUT */

.checkout-container-box {
    max-width: 1000px;
    margin: 0 auto;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    margin-top: 30px;
}

.checkout-form-column {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.checkout-summary-column {
    position: sticky;
    top: 20px;
}

.summary-card {
    background-color: #f9f9f9;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
}

.summary-project-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.summary-thumb {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.summary-code {
    font-size: 12px;
    color: var(--accent-color);
    font-weight: 700;
}

.summary-name {
    font-size: 14px;
    margin: 0;
    font-family: 'Lato', sans-serif;
    line-height: 1.3;
}

.summary-divider {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 15px 0;
}

.summary-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-item-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 10px;
    color: #444;
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-total-row span {
    font-size: 14px;
    font-weight: 700;
}

.summary-total-row strong {
    font-size: 24px;
    color: var(--accent-color);
}

.summary-installments {
    text-align: right;
    font-size: 12px;
    color: var(--text-muted);
}

.checkout-payment-info-alert {
    background-color: #f4f9f4;
    border-left: 4px solid #27ae60;
    padding: 15px;
    border-radius: 0 4px 4px 0;
    margin: 20px 0;
    font-size: 13px;
}

.checkout-payment-info-alert p {
    margin: 0 0 5px;
}

.checkout-payment-info-alert p:last-child {
    margin: 0;
}

.btn-checkout-submit {
    width: 100%;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-checkout-submit:hover {
    background-color: #219653;
}

/* 11. SUCESSO DO PEDIDO */

.success-page-container {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
}

.success-icon-badge {
    font-size: 60px;
    margin-bottom: 20px;
}

.success-title {
    font-size: 26px;
    margin: 0 0 10px;
}

.success-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
}

.order-reference-box {
    background-color: #f7f7f7;
    border: 1px dashed #ccc;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.order-reference-box span {
    display: block;
    font-size: 13px;
    color: #666;
}

.order-reference-box strong {
    font-size: 28px;
    color: var(--bg-dark-primary);
    letter-spacing: 1px;
}

.success-details-card {
    text-align: left;
    background-color: #fafafa;
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.success-details-card h3 {
    margin: 0 0 10px;
    font-size: 15px;
}

.success-details-card p {
    font-size: 13px;
    margin: 5px 0;
    color: #444;
}

.success-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.success-next-steps h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.success-next-steps ol {
    padding-left: 20px;
    font-size: 14px;
    color: #444;
}

.success-next-steps li {
    margin-bottom: 10px;
}

.success-actions-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-whatsapp-action {
    display: block;
    background-color: #27ae60;
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    transition: background-color 0.2s;
}

.btn-whatsapp-action:hover {
    background-color: #219653;
}

.btn-back-home {
    display: block;
    background-color: #eee;
    color: #333;
    text-decoration: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    transition: background-color 0.2s;
}

.btn-back-home:hover {
    background-color: #ddd;
}

/* 12. PÁGINAS ESTÁTICAS E INSTITUCIONAIS */

.static-page-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.page-main-title {
    font-size: 32px;
    margin: 0 0 15px;
    font-family: 'Lato', sans-serif;
    color: #111;
}

.page-intro-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

.static-page-rich-text h2 {
    font-size: 20px;
    margin-top: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.static-page-rich-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

.static-page-rich-text ul {
    padding-left: 20px;
    font-size: 15px;
    color: #444;
}

.static-page-rich-text li {
    margin-bottom: 8px;
}

.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 14px;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Contato Grid */
.static-page-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 65px;
    margin-top: 20px;
}

.contact-methods-list {
    margin-top: 30px;
}

.contact-method-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}

.method-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg-dark-accent);
    color: var(--accent-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.method-details strong {
    display: block;
    font-size: 14px;
    color: #111;
}

.method-details span {
    font-size: 15px;
    color: #555;
}

.business-hours-box {
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    font-size: 13px;
    color: var(--text-muted);
}

.form-container-card {
    background-color: #fcfcfc;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
}

.form-container-card h3 {
    margin: 0 0 5px;
}

.form-container-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-send-contact {
    background-color: var(--bg-dark-primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-send-contact:hover {
    background-color: #2a2a2a;
}

/* Modificar Projetos Steps */
.steps-modification-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.step-card {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 25px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    line-height: 1;
}

.step-card h3 {
    margin: 0 0 10px;
    font-size: 17px;
}

.step-card p {
    font-size: 13px;
    color: #555;
    margin: 0;
}

.modification-examples-section {
    margin: 40px 0;
}

.mod-examples-list {
    padding-left: 20px;
    font-size: 14px;
}

.mod-examples-list li {
    margin-bottom: 12px;
}

.call-to-action-dark-box {
    background-color: var(--bg-dark-primary);
    color: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.call-to-action-dark-box h2 {
    color: var(--accent-color);
    margin: 0 0 10px;
}

.btn-cta-premium-dark {
    display: inline-block;
    background-color: var(--accent-color);
    color: #111;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    margin-top: 15px;
    transition: background-color 0.2s;
}

.btn-cta-premium-dark:hover {
    background-color: var(--accent-hover);
}

/* Personalizados */
.personalizados-grid-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    margin-top: 30px;
}

.custom-process-timeline {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.custom-process-timeline li {
    margin-bottom: 25px;
}

.custom-process-timeline strong {
    display: block;
    font-size: 15px;
    color: #111;
    margin-bottom: 5px;
}

.custom-process-timeline p {
    font-size: 13px;
    color: #555;
    margin: 0;
}

/* Galeria de Fotos */
.photos-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.gallery-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.gallery-image-wrapper {
    height: 200px;
    background-color: #eee;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card-body {
    padding: 20px;
}

.gallery-card-body h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

.gallery-card-body p {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
}

.btn-view-gallery-project {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-view-gallery-project:hover {
    background-color: var(--accent-color);
    color: #111;
}

.gallery-footer-banner {
    background-color: #faf5ee;
    border: 1px solid #e6dccf;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
}

/* Decoração */
.decoration-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.tip-article-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.tip-placeholder-img {
    height: 160px;
    background-color: var(--bg-dark-primary);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.tip-card-body {
    padding: 20px;
}

.tip-card-body h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

.tip-card-body p {
    font-size: 13px;
    color: #555;
    margin: 0;
}

/* 404 */
.error-404-container {
    text-align: center;
    padding: 80px 20px;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    color: #ccc;
    line-height: 1;
    margin-bottom: 20px;
}

.error-title {
    font-size: 32px;
    margin: 0 0 10px;
}

.error-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
}

/* 13. RODAPÉ */

.site-footer {
    background-color: var(--bg-dark-primary);
    color: var(--text-light-primary);
    border-top: 4px solid var(--accent-color);
    padding: 60px 0 0;
    margin-top: 60px;
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 0 20px;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.5px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: var(--text-light-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-menu li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    background-color: #0b0b0b;
    padding: 25px 0;
    border-top: 1px solid #1f1f1f;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #777;
}

/* 14. WHATSAPP FLUTUANTE */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #25d366, #128c7e);
    padding: 12px 20px 12px 14px;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: wa-float-in 0.6s ease-out 0.3s both;
}

@keyframes wa-float-in {
    0% { opacity: 0; transform: translateY(40px) scale(0.8); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-float:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.wa-float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.wa-float:hover .wa-float-icon {
    animation: wa-shake 0.4s ease;
}

@keyframes wa-shake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
    75% { transform: rotate(-5deg); }
}

.wa-float-text {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* 15. RESPONSIVIDADE (MOBILE BREAKPOINTS) */

@media (max-width: 1024px) {
    .featured-listings-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-top-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .header-widget-area {
        justify-content: center;
    }
    
    .responsive-menu-toggle {
        display: block;
        background: none;
        border: none;
        padding: 15px;
        cursor: pointer;
    }
    
    .responsive-menu-toggle .toggle-bar {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 5px 0;
        transition: 0.4s;
    }
    
    .genesis-nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        background-color: var(--bg-dark-secondary);
    }
    
    .genesis-nav-menu.open {
        display: flex;
    }
    
    .genesis-nav-menu > li {
        width: 100%;
    }
    
    .genesis-nav-menu li a {
        padding: 15px;
        border-bottom: 1px solid #292929;
    }
    
    .genesis-nav-menu li ul {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .genesis-nav-menu li.open-submenu > ul {
        display: block;
    }

    .genesis-nav-menu li ul li ul {
        left: 0;
    }
    
    .property-search-widget form {
        grid-template-columns: 1fr;
    }
    
    .project-columns-flex {
        flex-direction: column;
    }
    
    .project-purchase-sidebar {
        width: 100%;
        position: static;
    }
    
    .modification-form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-widgets-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .static-page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-modification-grid,
    .photos-gallery-grid,
    .decoration-tips-grid,
    .personalizados-grid-content {
        grid-template-columns: 1fr;
    }

    .wa-float {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px 10px 12px;
    }

    .wa-float-icon {
        width: 36px;
        height: 36px;
    }

    .wa-float-text {
        font-size: 13px;
    }
}

/* 15. SEÇÃO DE ADICIONAIS HOME E ÍCONES */
.listing-spec-icon-img {
    display: block;
    margin: 0 auto 6px;
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.home-middle-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.home-middle-title {
    font-family: 'Lato', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--bg-dark-primary);
    display: block;
    margin-bottom: 10px;
}

.home-middle-intro {
    font-size: 15px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

#incluidos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.incluido-card {
    background-color: #fcfcfc;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.incluido-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
    background-color: #eee;
}

.incluido-card .chamadas {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    display: block;
}

.incluido-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.specs-table th img {
    max-width: 32px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 768px) {
    #incluidos-grid {
        grid-template-columns: 1fr;
    }
}

/* 16. CAMADA VISUAL PREMIUM - identidade grafite, branco e bronze */
:root {
    --bg-dark-primary: #12120f;
    --bg-dark-secondary: #1b1a16;
    --bg-dark-accent: #2a261e;
    --text-light-primary: #fffaf0;
    --text-light-secondary: #d8d0bf;
    --text-muted: #7d7569;
    --accent-color: #b8935f;
    --accent-hover: #d7b77d;
    --bg-body: #f6f2ea;
    --text-body: #24211d;
    --border-color: #e7dece;
    --surface: #fffdf8;
    --surface-soft: #fbf7ef;
    --surface-strong: #efe6d6;
    --success: #198754;
    --success-hover: #147146;
    --shadow-sm: 0 10px 30px rgba(39, 31, 20, 0.08);
    --shadow-md: 0 18px 50px rgba(31, 25, 18, 0.14);
    --shadow-lg: 0 28px 80px rgba(18, 18, 15, 0.18);
    --radius-sm: 6px;
    --radius-md: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(246, 242, 234, 0.98) 48%, rgba(255, 253, 248, 0.98) 100%),
        radial-gradient(circle at 12% 2%, rgba(184, 147, 95, 0.13), transparent 28%);
    color: var(--text-body);
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.wrap {
    max-width: 1240px;
    padding: 0 24px;
}

.site-container {
    overflow-x: hidden;
}

.site-header {
    background:
        linear-gradient(135deg, rgba(18, 18, 15, 0.98) 0%, rgba(36, 31, 23, 0.98) 100%);
    border-bottom: 1px solid rgba(184, 147, 95, 0.34);
    box-shadow: 0 16px 44px rgba(18, 18, 15, 0.24);
    padding: 14px 0;
    position: relative;
}

.site-header::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215, 183, 125, 0.75), transparent);
}

.header-top-flex {
    gap: 24px;
}

.logo-icon img,
.footer-logo-area img {
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
}

.header-widget-area {
    gap: 14px;
}

.contact-widget a,
.footer-whatsapp-btn,
.btn-submit-modification,
.btn-checkout-submit,
.btn-whatsapp-action {
    background: linear-gradient(135deg, #23c461 0%, #128c56 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 28px rgba(18, 140, 86, 0.28);
    transform: translateZ(0);
}

.contact-widget a {
    padding: 11px 18px;
}

.contact-widget a:hover,
.btn-submit-modification:hover,
.btn-checkout-submit:hover,
.btn-whatsapp-action:hover {
    background: linear-gradient(135deg, #2bd16b 0%, var(--success-hover) 100%);
    transform: translateY(-2px);
}

.secure-badge {
    background: rgba(255, 250, 240, 0.08);
    border: 1px solid rgba(215, 183, 125, 0.28);
    border-radius: 999px;
    color: #d7b77d;
    padding: 9px 14px;
}

.nav-primary {
    background: rgba(27, 26, 22, 0.97);
    border-bottom: 1px solid rgba(184, 147, 95, 0.18);
    box-shadow: 0 10px 30px rgba(18, 18, 15, 0.12);
}

.navigation-flex {
    min-height: 52px;
}

.genesis-nav-menu {
    gap: 3px;
}

.genesis-nav-menu li a {
    border-radius: var(--radius-sm);
    color: var(--text-light-secondary);
    font-size: 12px;
    letter-spacing: 0.04em;
    padding: 17px 16px;
    text-transform: uppercase;
}

.genesis-nav-menu li a:hover {
    background: rgba(184, 147, 95, 0.13);
    color: var(--accent-hover);
}

.genesis-nav-menu li ul {
    background: rgba(24, 23, 19, 0.98);
    border: 1px solid rgba(184, 147, 95, 0.24);
    border-top: 2px solid var(--accent-color);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 230px;
    padding: 8px;
}

.genesis-nav-menu li ul li a {
    border-bottom: 0;
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}

.home-featured {
    background:
        linear-gradient(135deg, rgba(18, 18, 15, 0.92), rgba(36, 31, 23, 0.84)),
        linear-gradient(45deg, #211c15, #746247);
    border-bottom: 0;
    color: var(--text-light-primary);
    overflow: hidden;
    padding: 54px 0 42px;
    position: relative;
    text-align: left;
}

.home-featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 88%);
    pointer-events: none;
}

.home-featured .wrap {
    position: relative;
    z-index: 1;
}

.featured-banner-section h1 {
    color: var(--text-light-primary);
    font-family: 'Lato', Arial, sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.08;
    margin: 0 auto 28px;
    max-width: 930px;
    text-align: center;
}

.featured-banner-section h1 strong {
    color: #fff8e8;
    font-weight: 700;
}

.property-search-widget {
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(215, 183, 125, 0.28);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 1080px;
    padding: 16px;
}

.property-search-widget form {
    gap: 12px;
}

.property-search-widget form input[type="text"],
.property-search-widget form select,
.form-field-group input[type="text"],
.form-field-group input[type="email"],
.form-field-group textarea {
    background-color: #fffdf8;
    border: 1px solid #ddd0bb;
    border-radius: var(--radius-sm);
    color: var(--text-body);
    min-height: 46px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.property-search-widget form input[type="text"]::placeholder {
    color: #948777;
}

.property-search-widget form input:focus,
.property-search-widget form select:focus,
.form-field-group input:focus,
.form-field-group textarea:focus {
    background-color: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(184, 147, 95, 0.14);
    outline: none;
}

.property-search-widget form input[type="submit"],
.btn-buy-project,
.btn-submit-comment,
.btn-send-contact,
.btn-cta-premium-dark {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-color) 100%);
    border: 1px solid rgba(100, 73, 35, 0.2);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 24px rgba(184, 147, 95, 0.28);
    color: #17140f;
    min-height: 46px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.property-search-widget form input[type="submit"]:hover,
.btn-buy-project:hover,
.btn-submit-comment:hover,
.btn-send-contact:hover,
.btn-cta-premium-dark:hover {
    background: linear-gradient(135deg, #ead09a 0%, #bd9356 100%);
    box-shadow: 0 16px 34px rgba(184, 147, 95, 0.36);
    transform: translateY(-2px);
}

.site-inner {
    padding: 54px 0;
}

.featured-listings-grid {
    gap: 28px;
}

.listing-card,
.purchase-box-card,
.checkout-form-column,
.summary-card,
.success-page-container,
.success-details-card,
.form-container-card,
.gallery-card,
.tip-article-card,
.step-card,
.incluido-card,
.related-card,
.comment-item,
.add-comment-form-box {
    background: var(--surface);
    border: 1px solid rgba(184, 147, 95, 0.18);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.listing-card {
    overflow: hidden;
}

.listing-card:hover,
.gallery-card:hover,
.tip-article-card:hover,
.related-card:hover,
.incluido-card:hover,
.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.listing-image-container {
    background: #ddd3c2;
    height: 238px;
    overflow: hidden;
}

.listing-image {
    transform: scale(1.01);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.listing-card:hover .listing-image {
    filter: saturate(1.04) contrast(1.03);
    transform: scale(1.055);
}

.listing-image-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(18, 18, 15, 0.5) 100%);
    pointer-events: none;
}

.listing-text {
    backdrop-filter: blur(10px);
    background: rgba(18, 18, 15, 0.78);
    border: 1px solid rgba(215, 183, 125, 0.58);
    border-radius: 999px;
    color: #f0d59b;
    z-index: 1;
}

.listing-card-body {
    padding: 22px;
}

.listing-price-label {
    color: #756a5a;
    font-size: 13px;
}

.listing-price-val,
.purchase-base-price .base-val,
.order-reference-box strong {
    color: #17140f;
    font-family: 'Lato', Arial, sans-serif;
    letter-spacing: 0;
}

.listing-installments,
.summary-item-row,
.static-page-rich-text p,
.static-page-rich-text ul,
.step-card p,
.custom-process-timeline p,
.gallery-card-body p,
.tip-card-body p,
.incluido-card p {
    color: #5f5649;
}

.listing-specs-table {
    border-top-color: var(--border-color);
}

.listing-specs-table td {
    border-right-color: var(--border-color);
}

.listing-spec-icon-img {
    filter: sepia(0.28) saturate(0.75);
    opacity: 0.8;
}

.spec-val {
    color: #4d463d;
    font-weight: 700;
}

.search-results-info {
    background: rgba(255, 253, 248, 0.74);
    border: 1px solid rgba(184, 147, 95, 0.18);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 20px 24px;
}

.no-projects-found {
    background: rgba(255, 253, 248, 0.78);
    border-color: rgba(184, 147, 95, 0.35);
}

#breadcrumbs {
    background: rgba(255, 253, 248, 0.88);
    border: 1px solid rgba(184, 147, 95, 0.16);
    border-radius: var(--radius-md);
}

.main-image-viewer,
.blueprint-image-wrapper,
.thumb-item {
    background: var(--surface-soft);
    border-color: rgba(184, 147, 95, 0.22);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.thumb-item.active,
.thumb-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(184, 147, 95, 0.14);
}

.specs-title,
.call-to-action-dark-box {
    background:
        linear-gradient(135deg, rgba(18, 18, 15, 0.98), rgba(42, 38, 30, 0.98));
    border: 1px solid rgba(184, 147, 95, 0.24);
    color: var(--text-light-primary);
}

.specs-title,
.section-subtitle-bar,
.home-middle-title,
.page-main-title,
.mod-title,
.success-title,
.error-title {
    font-family: 'Lato', Arial, sans-serif;
    letter-spacing: 0;
}

.section-subtitle-bar {
    border-bottom-color: rgba(184, 147, 95, 0.45);
}

.specs-table {
    border-color: var(--border-color);
}

.specs-table th {
    background: var(--surface-soft);
    border-color: var(--border-color);
    color: #52483c;
}

.specs-table td {
    border-color: var(--border-color);
}

.purchase-box-card {
    padding: 26px;
    top: 24px;
}

.secure-checkout-badge-box {
    color: var(--success);
}

.purchase-title,
.options-title,
.item-text strong,
.comment-meta strong,
.method-details strong,
.custom-process-timeline strong,
.gallery-card-body h3,
.tip-card-body h3,
.incluido-card .chamadas {
    color: #17140f;
}

.purchase-divider,
.summary-divider {
    border-top-color: var(--border-color);
}

.checkmark,
.radio-mark {
    background: #fffdf8;
    border-color: #d8c8ad;
}

.checkbox-container input:checked ~ .checkmark,
.radio-container input:checked ~ .radio-mark {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.total-val,
.summary-total-row strong,
.summary-code,
.related-price,
.step-number {
    color: var(--accent-color);
}

.modification-request-section,
.gallery-footer-banner,
.order-reference-box {
    background: linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(239, 230, 214, 0.78));
    border: 1px solid rgba(184, 147, 95, 0.2);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.included-items-list li,
.contact-method-item {
    align-items: flex-start;
}

.item-icon,
.method-icon {
    background: rgba(184, 147, 95, 0.12);
    border: 1px solid rgba(184, 147, 95, 0.22);
    border-radius: var(--radius-sm);
    color: var(--accent-color);
}

.tag-link,
.info-badge,
.btn-back-home {
    background: var(--surface-strong);
    border: 1px solid rgba(184, 147, 95, 0.18);
    border-radius: 999px;
    color: #52483c;
}

.tag-link:hover,
.btn-back-home:hover {
    background: var(--accent-color);
    color: #17140f;
}

.comment-item.staff-reply {
    background: #fbf3e5;
    border-color: #dfcda8;
}

.checkout-payment-info-alert {
    background: #eef8f1;
    border-left-color: var(--success);
}

.alert {
    border-radius: var(--radius-md);
}

.alert-success {
    background: #eef8f1;
    border-color: #b8dfc5;
    color: #155f36;
}

.alert-error {
    background: #fff0ee;
    border-color: #efc4bd;
    color: #8d2d22;
}

.static-page-content-wrapper {
    background: rgba(255, 253, 248, 0.72);
    border: 1px solid rgba(184, 147, 95, 0.12);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: clamp(24px, 4vw, 42px);
}

.static-page-rich-text h2 {
    border-bottom-color: rgba(184, 147, 95, 0.34);
    color: #17140f;
}

.tip-placeholder-img {
    background:
        linear-gradient(135deg, rgba(18, 18, 15, 0.96), rgba(65, 55, 40, 0.96));
    color: #ead09a;
}

.site-footer {
    background:
        linear-gradient(135deg, #12120f 0%, #211d16 100%);
    border-top: 1px solid rgba(215, 183, 125, 0.55);
    box-shadow: 0 -18px 50px rgba(18, 18, 15, 0.16);
}

.widget-title {
    color: #e6c68a;
}

.footer-menu li a {
    color: #d8d0bf;
}

.footer-menu li a:hover {
    color: #fff7e8;
    text-decoration: none;
}

.footer-whatsapp-cta {
    background:
        linear-gradient(135deg, rgba(18, 70, 44, 0.98), rgba(10, 42, 28, 0.98));
    border-bottom: 1px solid rgba(35, 196, 97, 0.38);
    border-top: 1px solid rgba(35, 196, 97, 0.38);
}

.wa-text span {
    color: #bdeacb;
}

.footer-bottom {
    background: rgba(7, 7, 6, 0.48);
    border-top-color: rgba(215, 183, 125, 0.12);
}

@media (max-width: 1024px) {
    .property-search-widget form {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .featured-listings-grid,
    .photos-gallery-grid,
    .decoration-tips-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .wrap {
        padding: 0 18px;
    }

    .site-header {
        padding: 16px 0;
    }

    .logo-icon img {
        max-height: 92px;
    }

    .header-widget-area {
        width: 100%;
    }

    .contact-widget,
    .protected-widget {
        width: 100%;
    }

    .contact-widget a,
    .secure-badge {
        justify-content: center;
        width: 100%;
    }

    .responsive-menu-toggle {
        background: rgba(255, 250, 240, 0.08);
        border: 1px solid rgba(215, 183, 125, 0.24);
        border-radius: var(--radius-sm);
        margin: 10px 0;
    }

    .genesis-nav-menu {
        background: rgba(27, 26, 22, 0.98);
        border: 1px solid rgba(184, 147, 95, 0.18);
        border-radius: var(--radius-md);
        padding: 8px;
    }

    .genesis-nav-menu li a {
        border-bottom: 0;
        padding: 13px 14px;
    }

    .genesis-nav-menu li ul {
        background: rgba(255, 250, 240, 0.04);
        border: 0;
        border-radius: var(--radius-sm);
        box-shadow: none;
        padding: 4px 0 4px 12px;
    }

    .home-featured {
        padding: 38px 0 30px;
    }

    .featured-banner-section h1 {
        font-size: 31px;
        text-align: left;
    }

    .property-search-widget,
    .static-page-content-wrapper,
    .modification-request-section,
    .call-to-action-dark-box,
    .success-page-container {
        padding: 18px;
    }

    .property-search-widget form,
    .featured-listings-grid,
    .photos-gallery-grid,
    .decoration-tips-grid,
    .footer-widgets-grid,
    #incluidos-grid {
        grid-template-columns: 1fr;
    }

    .listing-image-container,
    .gallery-image-wrapper {
        height: 215px;
    }

    .main-image-viewer {
        height: 320px;
    }

    .project-thumbnails-row {
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .thumb-item {
        flex: 0 0 92px;
    }

    .footer-whatsapp-btn {
        align-items: center;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .wa-text {
        align-items: center;
    }

    .wa-text strong {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .wrap {
        padding: 0 14px;
    }

    .featured-banner-section h1 {
        font-size: 28px;
    }

    .listing-card-body,
    .checkout-form-column,
    .summary-card,
    .purchase-box-card,
    .form-container-card {
        padding: 18px;
    }

    .listing-price-val,
    .purchase-base-price .base-val,
    .total-val {
        font-size: 25px;
    }

    .form-row-two-cols {
        grid-template-columns: 1fr;
    }
}

/* 17. WHATSAPP FLUTUANTE PREMIUM */
.wa-float {
    align-items: center;
    animation: wa-float-enter 0.7s cubic-bezier(0.2, 0.9, 0.25, 1.15) 0.25s both, wa-float-breathe 3.2s ease-in-out 1.2s infinite;
    background:
        linear-gradient(135deg, rgba(45, 219, 104, 0.98) 0%, rgba(18, 140, 86, 0.98) 58%, rgba(8, 104, 73, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    bottom: 26px;
    box-shadow:
        0 18px 45px rgba(18, 140, 86, 0.36),
        0 6px 16px rgba(18, 18, 15, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
    color: #fff;
    display: inline-flex;
    gap: 12px;
    isolation: isolate;
    min-height: 66px;
    overflow: hidden;
    padding: 10px 19px 10px 10px;
    position: fixed;
    right: 26px;
    text-decoration: none;
    transform-origin: right bottom;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    z-index: 9999;
}

.wa-float::before {
    animation: wa-float-glow 2.4s ease-in-out infinite;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 34%);
    border-radius: inherit;
    content: "";
    inset: 0;
    opacity: 0.55;
    position: absolute;
    z-index: -1;
}

.wa-float::after {
    background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.38) 42%, transparent 64%);
    border-radius: inherit;
    content: "";
    inset: 0;
    opacity: 0.75;
    position: absolute;
    transform: translateX(-125%);
    transition: transform 0.8s ease;
    z-index: 0;
}

.wa-float:hover {
    animation-play-state: paused;
    box-shadow:
        0 24px 60px rgba(18, 140, 86, 0.46),
        0 10px 26px rgba(18, 18, 15, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.38);
    filter: saturate(1.08);
    transform: translateY(-5px) scale(1.03);
}

.wa-float:hover::after {
    transform: translateX(125%);
}

.wa-float-icon,
.wa-float-text {
    position: relative;
    z-index: 1;
}

.wa-float-icon {
    align-items: center;
    animation: wa-icon-pulse-premium 2s ease-out infinite;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 50%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #fff;
    display: inline-flex;
    flex: 0 0 48px;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.wa-float:hover .wa-float-icon {
    animation: wa-icon-pulse-premium 1.3s ease-out infinite, wa-icon-wiggle 0.55s ease;
}

.wa-float-text {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    font-family: 'Lato', Arial, sans-serif;
    gap: 2px;
    line-height: 1.1;
    min-width: 0;
    white-space: nowrap;
}

.wa-float-text strong {
    color: #fff;
    display: block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
}

.wa-float-text small {
    align-items: center;
    color: rgba(255, 255, 255, 0.86);
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    gap: 6px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.wa-float-text small::before {
    animation: wa-status-blink 1.4s ease-in-out infinite;
    background: #d7ff87;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(215, 255, 135, 0.16);
    content: "";
    display: inline-block;
    height: 7px;
    width: 7px;
}

@keyframes wa-float-enter {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.86);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes wa-float-breathe {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.015);
    }
}

@keyframes wa-float-glow {
    0%, 100% {
        opacity: 0.36;
        transform: scale(1);
    }
    50% {
        opacity: 0.72;
        transform: scale(1.04);
    }
}

@keyframes wa-icon-pulse-premium {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    72%, 100% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

@keyframes wa-icon-wiggle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    20% { transform: rotate(-10deg) scale(1.08); }
    45% { transform: rotate(8deg) scale(1.04); }
    70% { transform: rotate(-5deg) scale(1.06); }
}

@keyframes wa-status-blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.62;
        transform: scale(0.82);
    }
}

@media (max-width: 768px) {
    .wa-float {
        bottom: 18px;
        min-height: 58px;
        padding: 8px 14px 8px 8px;
        right: 16px;
    }

    .wa-float-icon {
        flex-basis: 42px;
        height: 42px;
        width: 42px;
    }

    .wa-float-icon svg {
        height: 26px;
        width: 26px;
    }

    .wa-float-text strong {
        font-size: 13px;
    }

    .wa-float-text small {
        font-size: 9px;
    }
}

@media (max-width: 420px) {
    .wa-float {
        border-radius: 50%;
        bottom: 16px;
        min-height: 58px;
        padding: 8px;
        right: 14px;
    }

    .wa-float-text {
        display: none;
    }
}
