/* Estilos específicos para a página de Orçamento */
.texture-overlay {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.package-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    border: 1px solid rgba(210, 192, 168, 0.3);
    padding: 2rem;
    transition: all 0.3s ease-out;
    position: relative;
    overflow: hidden;
    height: 100%; /* Ensure equal height in grid */
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(107, 59, 36, 0.1);
}

.package-card-highlight {
    background: #FFFBF7;
    border: 2px solid #AE7C50;
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(174, 124, 80, 0.15);
    z-index: 10; /* Ensure it stays on top */
}

.package-card-highlight:hover {
    transform: scale(1.02) translateY(-4px);
}

@media (min-width: 768px) {
    .package-card-highlight {
        transform: scale(1.05);
    }

    .package-card-highlight:hover {
        transform: scale(1.05) translateY(-4px);
    }
}

.premium-card {
    background: linear-gradient(135deg, rgba(48, 78, 84, 0.95), rgba(48, 78, 84, 0.85));
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.economic-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    border: 1px solid rgba(210, 192, 168, 0.2);
    padding: 1.5rem;
    transition: all 0.3s ease-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.economic-card:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(107, 59, 36, 0.08);
}

.feature-list {
    flex-grow: 1; /* Push CTA to bottom */
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: #6B3B24;
}

.price-main {
    font-family: 'Merriweather', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #6B3B24;
    line-height: 1;
}

.price-installment {
    font-size: 0.875rem;
    color: #AE7C50;
    font-weight: 500;
}

.price-note {
    font-size: 0.7rem;
    color: #6B3B24;
    opacity: 0.7;
    margin-top: -4px;
    display: block;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #AE7C50, #D4A574);
    border-radius: 2px;
    margin: 0 auto;
}
