#patio-calculator-container, #calculation-explanation-container {
    font-family: inherit; /* Herda a fonte principal do site */
    background-color: #f7f7f7;
    padding: 25px;
    border-radius: var(--border-radius); /* Reutiliza o estilo do projeto */
    border: 1px solid #e0e0e0;
    max-width: 500px;
    margin: 20px auto;
}
#patio-calculator-container h3, #calculation-explanation-container h3 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--primary-color); /* Reutiliza a cor principal do projeto */
}
.calculator-form-group {
    margin-bottom: 15px;
}
.calculator-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--text-color); /* Reutiliza a cor de texto do projeto */
    text-align: left;
}
.calculator-form-group input,
.calculator-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.calculator-button {
    width: 100%;
    padding: 12px;
    background-color: var(--secondary-color); /* Reutiliza a cor secundária do projeto */
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.calculator-button:hover {
    background-color: var(--secondary-hover-color); /* Reutiliza a cor de hover do projeto */
}
#calculator-result {
    margin-top: 20px;
    padding: 15px;
    background-color: #e9f5ff;
    border: 1px solid #b3d7ff;
    border-radius: var(--border-radius);
    display: none;
}
#calculator-result p { margin: 5px 0; font-size: 16px; }
#calculator-result .price-range {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}
.result-disclaimer {
    font-size: 13px;
    font-style: italic;
    color: var(--text-color);
    margin-top: 20px;
    text-align: center;
}
.quote-link { font-size: 14px; font-weight: bold; color: var(--secondary-color); text-decoration: none; }
.quote-link:hover { text-decoration: underline; }

#explanation-toggle-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f0f0f0;
    cursor: pointer;
    font-weight: bold;
    color: var(--primary-color);
}
#explanation-content {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    display: none;
}
#explanation-content h4 { color: var(--primary-color); margin-top: 15px; margin-bottom: 5px; }
#explanation-content p, #explanation-content li { color: var(--text-color); line-height: 1.6; }

#message-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    z-index: 1000;
}
#message-box button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
#message-box button:hover {
    background-color: var(--secondary-hover-color);
}
    
#progress-container-2 {
    display: none;
    text-align: center;
    padding: 20px 0;
}
.progress-bar {
    width: 80%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin: 10px auto 0;
}
.progress-bar-fill {
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    animation: progress-animation 1.5s forwards;
}

.hot-lead-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.hot-lead-btn:hover {
    background-color: #0d1a30; /* Azul escuro no hover */
}

#hot-lead-form-container {
    padding: 20px 0;
}
#hot-lead-form-container .calculator-form-group {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
#hot-lead-form-container .calculator-form-group label {
    text-align: left;
}
#hot-lead-form-container hr {
    margin-top: 20px;
    margin-bottom: 20px;
}
#hot-lead-form-container h4 {
    text-align: center;
}

#final-success-message {
    display: none;
    text-align: center;
    padding: 30px;
    background-color: #e6ffe6;
    border: 1px solid #a3e6a3;
    border-radius: var(--border-radius);
    margin-top: 20px;
}
#final-success-message h4 {
    color: #007f00;
    margin-bottom: 10px;
}
#final-success-message p {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 20px;
}
.calculator-page-section {
    padding-top: 80px;
    padding-bottom: 80px;
}