﻿.inicio-home {
    background-image: url("../images/hero.webp");
    background-size: cover;
    height: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-position: bottom 0 right -400px;
}

.inicio-home .container .title {
    font-size: 1.5rem;
    max-width: 24.125rem;
    font-weight: 600;
    color: #fff;
}

.inicio-home .container .subtitle {
    font-size: 1rem;
    color: #e8e8e8;
    margin: 0.75rem 0 2.875rem;
    max-width: 31.5625rem;
}

.inicio-home .container button {
    border: 0;
    color: #fff;
    background: #c93d06;
    font-size: 1.125rem;
    height: 2.8125rem;
    padding: 0 2.375rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all .5s ease;
}

.inicio-home:after {
    content: "";
    width: 100%;
    height: 40px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: -2px;
    border-radius: 16px 16px 0 0;
}

@media (min-width: 880px) {
    .inicio-home {
        background-position: 100%;
    }

    .inicio-home .container .title{
        font-size: 2rem;
        max-width: 38.125rem;
    }
}