/* urbanizaciones.css */

.urba-hero {
    position: relative;
    padding: 180px 20px 100px;
    background: linear-gradient(rgba(4, 90, 60, 0.85), rgba(4, 90, 60, 0.85)), url('../assets/proyectos/urbanizacion/urba.jpg') center/cover no-repeat;
    text-align: center;
    color: white;
}

.urba-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.urba-hero-subtitle {
    color: #86efac;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.urba-hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.urba-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
}

.urba-btn {
    background-color: #ffffff;
    color: #064e3b;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.urba-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Sections */
.urba-section {
    padding: 40px 20px;
    background-color: #ffffff;
}

.container-inner {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Savings Box */
.savings-box {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    margin-bottom: 60px;
}

.savings-box h2 {
    color: #0f172a;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.savings-box h3 {
    color: #059669;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.savings-box p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Titles */
.section-title-center {
    text-align: center;
    color: #0f172a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    margin-bottom: 80px;
}

.step-card h4 {
    color: #0f172a;
    font-size: 1.3rem;
    margin: 20px 0 15px;
}

.step-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.step-icon {
    font-size: 3rem;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.result-card {
    padding-left: 25px;
    border-left: 4px solid #10b981;
}

.result-card.blue-border { border-left-color: #3b82f6; }
.result-card.light-blue-border { border-left-color: #0ea5e9; }

.result-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.result-header h4 {
    color: #0f172a;
    font-size: 1.3rem;
    margin: 0;
}

.result-icon {
    font-size: 1.5rem;
}

.result-card p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Dark */
.cta-dark {
    background-color: #0f172a;
    color: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    margin-top: 0;
}

.cta-dark h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-dark p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.btn-cta-green {
    background-color: #059669;
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-cta-green:hover {
    background-color: #047857;
}

/* Floating calc button */
.floating-calc {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #059669;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1000;
    border: none;
    transition: transform 0.3s;
}
.floating-calc:hover {
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .steps-grid, .results-grid {
        grid-template-columns: 1fr;
    }
    .urba-hero h1 { font-size: 2.8rem; }
}
