/**
 * Home Hero Block Styles
 * This CSS file is automatically loaded only when the home-hero block is present on the page.
 * No manual enqueuing required - the per-block CSS system handles it automatically.
 */

.home-hero {
    padding: 80px 0 280px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-image: url('/wp-content/uploads/2026/02/Frame-1000002222.png');
    background-image: image-set(
        url('/wp-content/uploads/2026/02/Frame-1000002222.png.webp') type('image/webp'),
        url('/wp-content/uploads/2026/02/Frame-1000002222.png') type('image/png')
    );
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    position: relative;
}

/* Mantener padding original en homepage */
body.home .home-hero {
    padding: 80px 0;
}

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

/* Left Column */
.home-hero .col-left {
    flex: 1;
    max-width: 50%;
}

.home-hero .reviews-link {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}

.home-hero .google-logo {
    height: auto;
    max-height: 40px;
    width: auto;
}

.home-hero .reviews-text {
    font-family: var(--font-content);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
}

.home-hero .hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: normal;
    color: var(--color-white);
    text-align: left;
    margin: 0 0 30px 0;
}

.home-hero .hero-content {
    font-family: var(--font-content);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    text-align: left;
    margin: 0 0 30px 0;
}

/* Right Column */
.home-hero .col-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
}

.home-hero .hero-image {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .home-hero .row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .home-hero .col-left,
    .home-hero .col-right {
        max-width: 100%;
    }

    .home-hero .col-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .home-hero .hero-title {
        text-align: center;
    }

    .home-hero .hero-content {
        text-align: center;
    }

    .home-hero .col-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 40px 0 150px 0;
        min-height: auto;
    }

    body.home .home-hero {
        padding: 40px 0;
    }

    .home-hero .hero-title {
        font-size: 36px;
    }
}
.hero-content a{
	color:#CCCCCC !important;
}