.elementor-17371 .elementor-element.elementor-element-a22ed9b{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-17371 .elementor-element.elementor-element-a22ed9b{--content-width:2000px;}}/* Start custom CSS */.elementor img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: inherit;
    max-width: 100%;
}


/* ========================================
   GENERAL LANDING PAGE STYLES
   ======================================== */

/* Variables */
:root {
    --primary-color: #000000;
    --accent-color: #FDFE00;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #4a5568;
    --text-secondary: #2d3748;
    --bg-light: #FFFFFF;
    --bg-gray: #f8f9fa;
    --border-color: #e2e8f0;
    --success-color: #16a34a;
    --error-color: #dc2626;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--accent-color);
    z-index: 1001;
    transition: width 0.25s ease;
}

/* ========================================
   HERO GENERAL SECTION
   ======================================== */
p.hero-subtitle-2 {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    text-align: center;
    color: white;
    margin-bottom: 46px;
    font-style: italic;
    font-size: 1.4em;
}
.hero-general {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 8rem 1rem 4rem;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-bg.loaded,
.hero-bg[src] {
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-content-general {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hero-logo-general {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.hero-logo-general img {
    width: 100%;
    max-width: 300px;
    height: auto;
    opacity: 0.95;
}

.hero-title-general {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-subtitle-general {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.hero-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.7s backwards;
}

.location-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.location-tag:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.9s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-cta-general {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.1s backwards;
}

.btn-primary-general,
.btn-secondary-general {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    box-shadow: var(--shadow-lg);
}

.btn-primary-general {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary-general:hover {
    background: #e6e500;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(253, 254, 0, 0.4);
}

.btn-secondary-general {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-general:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   BENEFITS GENERAL SECTION
   ======================================== */

.benefits-general-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.benefits-general-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-general-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.benefit-general-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-color);
}

.benefit-general-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon-large {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-general-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-general-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* ========================================
   BUILDINGS SECTION
   ======================================== */

.buildings-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.buildings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.building-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.building-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.building-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.building-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.building-card:hover .building-image img {
    transform: scale(1.08);
}

.building-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.building-badge.disponible {
    background: var(--success-color);
    color: white;
}

.building-badge.ultimos {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    animation: pulse 2s infinite;
}

.building-badge.nuevo {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.building-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.building-card:hover .building-overlay {
    opacity: 1;
}

.btn-explore {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-explore:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(253, 254, 0, 0.4);
}

.building-content {
    padding: 2rem;
}

.building-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.building-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.building-location i {
    color: var(--accent-color);
}

.building-features-mini {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.building-features-mini span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.building-features-mini i {
    color: var(--primary-color);
}

.building-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.building-amenities-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.amenity-tag {
    background: rgba(0, 0, 0, 0.05);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

/* ========================================
   COMPARISON SECTION
   ======================================== */

.comparison-section {
    padding: 6rem 0;
    background: var(--bg-gray);
}

.comparison-table-container {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table thead {
    background: var(--primary-color);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: #fffef5;
}

.style-tag {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.style-tag.premium {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.style-tag.bohemio {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.style-tag.clasico {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.style-tag.moderno {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
}

.style-tag.industrial {
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: white;
}

.style-tag.accesible {
    background: linear-gradient(135deg, #30cfd0, #330867);
    color: white;
}

.btn-table {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-table:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
}

.process-section .section-title,
.process-section .section-subtitle {
    color: white;
}

.process-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(253, 254, 0, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: white;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   TESTIMONIALS GENERAL SECTION
   ======================================== */

.testimonials-general-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.testimonials-general-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-general-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-general-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-info strong {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.author-info span {
    display: block;
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* ========================================
   CTA + FORM SECTION
   ======================================== */

.cta-form-general-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cta-form-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-text-side {
    padding: 0 1rem;
}

.section-badge-light {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.cta-title-large {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.cta-benefit-item i {
    color: var(--success-color);
    font-size: 1.3rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-badge i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.form-side-general {
    position: relative;
}

.form-card-general {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    position: relative;
}

.form-card-general::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-color);
    border-radius: 24px 24px 0 0;
}

.form-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-card-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-card-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ========================================
   FAQ GENERAL SECTION
   ======================================== */

.faq-general-section {
    padding: 6rem 0;
    background: var(--bg-gray);
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.faq-question:hover {
    background: var(--bg-gray);
}

.faq-question i {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   FOOTER GENERAL
   ======================================== */

.footer-general {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content-general {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo-general {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

/* ========================================
   COMMON SECTION STYLES
   ======================================== */

.section-container {
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   LAZY LOADING
   ======================================== */

.lazy-img {
    opacity: 1;
    transition: opacity 0.3s ease;
    background-color: #f3f4f6;
}

.lazy-img.loaded {
    opacity: 1;
}

/* ========================================
   HUBSPOT FORM STYLES
   ======================================== */
/* Form Styles HubSpot - OPTIMIZADOS */
.hbspt-form {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.hs-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
    width: 100% !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.hs-form-field {
    margin-bottom: 0 !important;
    width: 100% !important;
}

.hs-form-field label {
    display: block !important;
    color: var(--text-dark) !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    font-size: 0.95rem !important;
}

.hs-input {
    width: 100% !important;
    padding: 14px 18px !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    background: white !important;
    color: var(--text-dark) !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    min-height: 52px !important;
}

.hs-input:focus {
    outline: none !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 3px rgba(253, 254, 0, 0.15) !important;
    transform: translateY(-1px) !important;
}

.hs-input:hover {
    border-color: #bbb !important;
    transform: translateY(-1px) !important;
}

.hs-button.primary {
    width: 100% !important;
    background: linear-gradient(135deg, var(--primary-color), #333) !important;
    color: white !important;
    border: none !important;
    padding: 16px 24px !important;
    border-radius: 50px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    min-height: 52px !important;
}

.hs-button.primary:hover {
    background: linear-gradient(135deg, #333, var(--primary-color)) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.hero-form .hs-button.primary {
    background: var(--accent-color) !important;
    color: var(--primary-color) !important;
}

.hero-form .hs-button.primary:hover {
    background: #e6e500 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(253, 254, 0, 0.4) !important;
}

.hs-error-msgs {
    background: rgba(239, 68, 68, 0.1) !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
    color: #dc2626 !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    margin-top: 8px !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Legal consent styles */
.hs-form-booleancheckbox-display {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    color: var(--text-dark) !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    padding: 12px !important;
    background: rgba(0, 0, 0, 0.05) !important;
    border-radius: 8px !important;
    border: 1px solid var(--border-color) !important;
    margin: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hs-form-booleancheckbox input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    margin-top: 2px !important;
    accent-color: var(--accent-color) !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 480px) {
    .hero-title-general {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-general {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title-large {
        font-size: 2rem;
    }
    
    .hero-logo-general img {
        max-width: 220px;
    }
    
    .building-name {
        font-size: 1.6rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .benefits-general-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .buildings-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-general-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title-general {
        font-size: 3.5rem;
    }
}

@media (min-width: 769px) {
    .hero-logo-general img {
        max-width: 400px;
    }
    
    .hero-title-general {
        font-size: 4.5rem;
    }
    
    .hero-subtitle-general {
        font-size: 1.6rem;
    }
    
    .benefits-general-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .buildings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-general-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-form-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .benefits-general-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .buildings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-general-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-stats {
        gap: 3rem;
    }
}

@media (min-width: 1200px) {
    .buildings-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* ========================================
   HERO FORM SECTION (Formulario #1)
   ======================================== */

.hero-form-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FDFE00" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-form-wrapper {
    position: relative;
    z-index: 2;
}

.hero-form-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-form-text {
    color: white;
    padding: 0 1rem;
}

.hero-form-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -1px;
}

.hero-form-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.hero-form-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
}

.hero-form-benefit i {
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hero-form-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(253, 254, 0, 0.3);
    position: relative;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent-color);
    border-radius: 24px 24px 0 0;
}

.hero-form-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-form-card-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-form-card-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ========================================
   FOOTER CTA FORM SECTION (Formulario #2)
   ======================================== */

.footer-cta-form-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 5px solid var(--accent-color);
}

.footer-cta-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-cta-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-cta-text {
    padding: 0 1rem;
}

.footer-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.footer-cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.footer-cta-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-cta-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.footer-cta-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-content strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.feature-content span {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

.footer-cta-form-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    position: relative;
}

.footer-cta-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 24px 24px 0 0;
}

.footer-cta-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-cta-form-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer-cta-form-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ========================================
   RESPONSIVE DESIGN - FORMS
   ======================================== */

@media (min-width: 769px) {
    .hero-form-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .footer-cta-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }
    
    .hero-form-title {
        font-size: 3.5rem;
    }
    
    .footer-cta-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-form-content {
        gap: 5rem;
    }
    
    .footer-cta-content {
        gap: 5rem;
    }
}

@media (max-width: 480px) {
    .hero-form-title {
        font-size: 2rem;
    }
    
    .footer-cta-title {
        font-size: 2rem;
    }
    
    .hero-form-card,
    .footer-cta-form-card {
        padding: 2rem 1.5rem;
    }
}
/* ========================================
   HERO FORM SECTION MEJORADO
   ======================================== */

.hero-form-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

/* Elementos decorativos de fondo animados */
.hero-form-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 254, 0, 0.08) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.bg-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    animation-delay: 5s;
}

.bg-circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-form-wrapper {
    position: relative;
    z-index: 2;
}

.hero-form-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

/* Lado izquierdo mejorado */
.hero-form-text {
    color: white;
    padding: 0 1rem;
}

.hero-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253, 254, 0, 0.15);
    border: 1px solid rgba(253, 254, 0, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInLeft 0.8s ease-out;
}

.hero-form-badge i {
    font-size: 1rem;
}

.hero-form-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -1.5px;
    animation: fadeInLeft 0.8s ease-out 0.2s backwards;
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent-color), #fff59d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-form-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 3rem;
    animation: fadeInLeft 0.8s ease-out 0.4s backwards;
}

.hero-form-description strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Benefits mejorados */
.hero-form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.hero-form-benefit {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeInLeft 0.8s ease-out backwards;
}

.hero-form-benefit:nth-child(1) { animation-delay: 0.6s; }
.hero-form-benefit:nth-child(2) { animation-delay: 0.8s; }
.hero-form-benefit:nth-child(3) { animation-delay: 1s; }

.hero-form-benefit:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(253, 254, 0, 0.3);
}

.benefit-icon-wrapper {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--accent-color), #fff59d);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(253, 254, 0, 0.3);
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.benefit-text strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.benefit-text span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Trust indicators */
.hero-form-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInLeft 0.8s ease-out 1.2s backwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Formulario mejorado */
.hero-form-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(253, 254, 0, 0.2);
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.4s backwards;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: 24px 24px 0 0;
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Badge de disponibilidad */
.form-availability-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-form-card-header {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.form-icon-top {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-form-card-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-form-card-header p {
    color: var(--text-gray);
    font-size: 1rem;
}

.hero-form-card-header p strong {
    color: var(--primary-color);
}

/* Footer del formulario */
.form-guarantee {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.85rem;
    text-align: center;
}

.form-guarantee i {
    color: var(--success-color);
}

/* Animaciones */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (min-width: 769px) {
    .hero-form-content {
        grid-template-columns: 1.1fr 1fr;
        gap: 5rem;
    }
    
    .hero-form-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-form-section {
        padding: 5rem 0;
    }
    
    .hero-form-title {
        font-size: 2.5rem;
    }
    
    .hero-form-card {
        padding: 2.5rem 2rem;
    }
    
    .bg-circle {
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .hero-form-title {
        font-size: 2rem;
    }
    
    .hero-form-description {
        font-size: 1.1rem;
    }
    
    .hero-form-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ========================================
   FACADES SECTION - CARDS 3D
   ======================================== */
/* ========================================
   FACADES SECTION - CARDS 3D
   ======================================== */

.facades-section {
    padding: 6rem 0;
    background: radial-gradient(circle at top, #111 0%, #000 45%, #050505 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.facades-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(253, 254, 0, 0.08), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

.facades-section .section-header {
    position: relative;
    z-index: 1;
}

.facades-section .section-title {
    color: #ffffff;
}

.facades-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Grid de cards */

.facades-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3.5rem;
    justify-items: center;
}

/* Card base (vertical) */

.facade-card {
    width: 100%;
    max-width: 320px;
    height: 440px; /* pensado para imágenes verticales 500x600 */
    perspective: 1400px;
    transition: transform 0.3s ease;
}

.facade-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.facade-card:hover {
    transform: translateY(-6px);
}

.facade-card:hover .facade-card-inner {
    transform: rotateY(180deg);
}

.facade-card-face {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background: #000;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.facade-card-face img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 0.8s ease;
}

.facade-card:hover .facade-card-face img {
    transform: scale(1.08);
}

/* Frente */

.facade-card-front::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0.08));
}

.facade-front-overlay {
    position: relative;
    z-index: 2;
    padding: 1.6rem 1.7rem 1.9rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.facade-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.65);
    color: #f9fafb;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.facade-tag::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent-color);
}

.facade-title {
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    max-width: 90%;
}

/* Reverso */

.facade-card-back {
    transform: rotateY(180deg);
}

.facade-card-back::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.35));
}

.facade-back-overlay {
    position: relative;
    z-index: 2;
    padding: 1.8rem 1.7rem 1.9rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

/* Chip superior */

.facade-pill {
    align-self: flex-start;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(253, 254, 0, 0.12);
    border: 1px solid rgba(253, 254, 0, 0.6);
    color: var(--accent-color);
    backdrop-filter: blur(8px);
}

/* Textos de info del edificio */

.facade-building-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
}

.facade-building-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: rgba(249, 250, 251, 0.85);
    margin: 0;
}

.facade-building-location i {
    color: var(--accent-color);
    font-size: 0.95rem;
}

/* Features: recámaras + precio */

.facade-building-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.4rem;
    margin-top: 0.4rem;
}

.facade-building-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(249, 250, 251, 0.95);
}

.facade-building-features i {
    font-size: 0.95rem;
}

/* Descripción */

.facade-building-description {
    margin: 0.6rem 0 0;
    font-size: 0.93rem;
    line-height: 1.6;
    color: rgba(249, 250, 251, 0.9);
    max-width: 95%;
}

/* ========================================
   RESPONSIVE FACADES
   ======================================== */

@media (min-width: 640px) {
    .facades-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .facades-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2.8rem;
    }

    .facade-card {
        max-width: 370px; /* tu mejora */
        height: 430px;    /* tu mejora */
    }
}

@media (max-width: 480px) {
    .facade-card {
        max-width: 260px;
        height: 400px;
    }

    .facade-title {
        font-size: 1.15rem;
    }
}


/* ========================================
   FORMULARIO FOOTER EN UNA SOLA FILA
   ======================================== */
/* ========================================
   FOOTER CTA INLINE – CENTRAR TÍTULO
   ======================================== */

.footer-cta-inline {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-inline-title {
    margin: 0;
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -1px;
    width: 100%;
    text-align: center;
}

.footer-inline-subtitle {
    margin: 0;
    font-size: 1rem;
    color: #4a5568;
}

/* Contenedor que limita el form dentro del “cajón” */
.footer-inline-form {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

#hubspot-form-footer {
    width: 100%;
}

/* ========================================
   FOOTER FORM – BASE (DESKTOP)
   ======================================== */

#hubspot-form-footer .hbspt-form {
    width: 100% !important;
    max-width: 100% !important;
}

#hubspot-form-footer .hs-form {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;   /* Permite romper en 2 filas si no cabe */
    gap: 0.75rem !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Cada campo se adapta al espacio disponible */
#hubspot-form-footer fieldset,
#hubspot-form-footer .hs-form-field {
    width: auto !important;
    flex: 1 1 160px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ocultar labels en el footer */
#hubspot-form-footer .hs-form-field label {
    display: none !important;
}

/* Inputs compactos */
#hubspot-form-footer input,
#hubspot-form-footer select {
    width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
    border-radius: 999px !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
    font-size: 0.9rem !important;
}

/* Botón */
#hubspot-form-footer .hs-button.primary {
    height: 44px !important;
    padding: 0 22px !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
    flex: 0 0 auto !important;
    font-size: 0.9rem !important;
}

/* ========================================
   ERRORES: QUE SE VEAN BIEN
   ======================================== */

#hubspot-form-footer .hs-form-field {
    position: relative !important;
}

#hubspot-form-footer .hs-error-msgs {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 6px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #dc2626 !important;
}

#hubspot-form-footer .hs-error-msgs li {
    background: #fee2e2 !important;
    padding: 6px 10px !important;
    border-radius: 8px !important;
    border: 1px solid #fecaca !important;
    list-style: none !important;
}

/* ========================================
   RESPONSIVE – TABLET
   ======================================== */

@media (max-width: 1024px) and (min-width: 769px) {
    #hubspot-form-footer .hs-form {
        justify-content: center !important;
    }

    #hubspot-form-footer fieldset,
    #hubspot-form-footer .hs-form-field {
        flex: 1 1 45% !important;   /* 2–3 columnas según espacio */
    }

    #hubspot-form-footer .hs-button.primary {
        flex-basis: 100% !important;
        width: 100% !important;
        text-align: center !important;
    }
}

/* ========================================
   RESPONSIVE – MOBILE
   ======================================== */

@media (max-width: 768px) {
    #hubspot-form-footer .hs-form {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        gap: 0.75rem !important;
    }

    #hubspot-form-footer fieldset,
    #hubspot-form-footer .hs-form-field {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    #hubspot-form-footer input,
    #hubspot-form-footer select {
        width: 100% !important;
    }

    #hubspot-form-footer .hs-button.primary {
        width: 100% !important;
    }
}


    /* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 3rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}/* End custom CSS */