
.banner-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.banner-content{
    margin-top: -35vw;
    padding: 10vw 5%;
    width: 100%;
    position: relative;
}

.banner-title{
    font-size: 8vw;
    line-height: 6.5vw;
    font-family: var(--extra-bold-font);
    margin: 0;
    color: var(--secondary-font-color);
    text-align: center;
    position: relative;
}

.banner-p{
    font-size: 3.8vw;
    line-height: 5vw;
    margin: 7vw 5vw;
    color: var(--secondary-font-color);
    text-align: center;
}

.banner-a{
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    font-size: 3.75vw;
    border-radius: 2vw;
    text-align: center;
    padding: 1.75vw 0;
    display: block;
    width: 100%;
}

.intro-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-content{
    width: 100%;
    padding: 0rem 7.5%;
}

.intro-title{
    text-align: center;
    font-size: 1.5rem;
    font-family: var(--black-font);
    position: relative;
    padding: 0 1.5rem;
    margin-bottom: 4rem;
}

.intro-title::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1.8rem;
    height: 1.5rem;
    background-image: url('/res/img/home/1122-19-1-subrayado-banner.svg'); 
    background-repeat: no-repeat;
    background-size: contain;
}

.intro-p{
    text-align: center;
    font-size: 1rem;
}

.intro-img{
    width: 100vw;
    margin: 2rem 0 3rem -7.5vw;
}

.plans-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 5%;
}

.plans-title{
    font-size: 1.5rem;
    text-align: center;
    color: var(--secondary-font-color);
}

.plans-content{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.plan{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
    height: 90vw;
    border-radius: 10vw;
    overflow: hidden;
}

.plan-title{
    font-size: 1.05rem;
    font-family: var(--semi-bold-font);
    margin: 0;
    padding: 0.4rem 7.5%;
    color: white;
    background-color: var(--primary-color);
    width: 100%;
}

.plan-p{
    width: 100%;
    padding: 1rem 7.5%;
    margin: 0;
    font-size: 1.2rem;
    position: relative;
    border-bottom: solid 1px var(--light-font-color);
}

.plan-p::before{
    content: '-';
    position: absolute;
    left: 3%;
    right: 0;
    top: 1.2rem;
    font-size: 1rem;
    font-family: var(--semi-bold-font);
}

.plan-price{
    font-size: 3rem;
    padding: 0.5rem 7.5%;
    margin: 0;
    font-family: var(--semi-bold-font);
}

.plan-btn{
    font-size: 1.1rem;
    margin: 2rem 7.5%;
    padding: 0.3rem 1.5rem;
    width: 85%;
    color: white;
    font-family: var(--semi-bold-font);
    text-align: left;
    background-color: var(--primary-color);
    border: none;
    border-radius: 0.75rem;
}

.plans-subtitle{
    font-size: 1.75rem;
    text-align: center;
    color: var(--secondary-font-color);
    padding-top: 1rem;
}

.plans-btn{
    font-size: 1rem;
    margin: 0rem 7.5%;
    padding: 0.4rem 2.5rem;
    color: white;
    font-family: var(--semi-bold-font);
    text-align: center;
    background-color: var(--primary-color);
    border: none;
    border-radius: 0.5rem;
}

.for-container{
    width: 100%;
}

.cats{
    padding: 3rem 0 0;
}

.dogs{
    padding: 0 0 3rem;
}

.for-content{
    width: 100%;
}

.for-list {
    padding: 2rem 7.5%;
}

.for-list li {
    margin-bottom: 3rem;
    padding-left: 7.5%;
    position: relative;
}

.for-list li::before {
    content: "";
    position: absolute;
    left: -0.5rem;
    top: 1.2rem;
    width: 0.8rem;
    height: 0.8rem;
    background-image: url('/res/img/plans/1122-19-1-puntito.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.for-list h3 {
    color: var(--primary-color);
    font-family: var(--extra-bold-font);
    font-size: 2rem;
    margin: 0;
}

.for-list p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.8rem;
}

.newsletter{
    display: flex;
    flex-flow: column-reverse;
    align-items: center;
    width: 100%;
    position: relative;
}

.newsletter-line{
    position: absolute;
    right: 0;
    top: -10rem;
    width: 20%;
    z-index: -1;
}

.newsletter-form{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem 5%;
}

.newsletter-title{
    font-size: 1.8rem;
    font-family: var(--black-font);
    text-align: center;
    margin: 0 0 1.5rem;
}

.newsletter-form > label{
    font-size: 1.05rem;
    padding-left: 2rem;
    margin: 0.8rem 0 0.3rem;
    font-family: var(--medium-font);
}

.newsletter-form > input{
    background-color: var(--light-font-color);
    border: none;
    border-radius: 0.5rem;
    font-size: 1.05rem;
    padding: 0.5rem 2rem;
}

.newsletter-form > textarea{
    resize: none;
    max-width: 100%;
    background-color: var(--light-font-color);
    border: none;
    border-radius: 0.5rem;
    font-size: 1.05rem;
    padding: 0.5rem 2rem;
    height: 8rem;
}

.newsletter-form > button{
    display: block;
    width: fit-content;
    margin: 3rem auto 0;
    font-weight: bold;
    color: white;
    background-color: var(--primary-color);
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
}

.newsletter-img{
    padding-right: 10%;
}

@media (width >= 1024px) {
    .banner-container{
        z-index: 1;
        position: relative;
        width: 100%;
    }

    .banner-content {
        position: absolute;
        bottom: 0;
        right: 5%;
        margin-top: 0;
        padding: 1vw 5%;
        width: 45%;
    }

    .banner-title {
        font-size: 4vw;
        line-height: 4vw;
        text-align: left;
    }

    .banner-p {
        font-size: 1.4vw;
        line-height: 1.8vw;
        margin: 1.5vw 0;
        text-align: left;
    }

    .banner-a {
        font-size: 1.25vw;
        border-radius: 0.75vw;
        padding: 0.75vw 2.5vw;
        width: fit-content;
    }

    .intro-container {
        flex-direction: row;
        padding: 2.5rem 0;
    }

    .intro-content {
        width: 50%;
        padding: 0 2.5% 0 7.5%;
    }

    .intro-title {
        text-align: left;
        font-size: 2rem;
        padding: 0;
        margin-bottom: 4rem;
        width: fit-content;
    }

    .intro-p {
        text-align: left;
        font-size: 1.2rem;
    }

    .intro-title::after {
        left: -5%;
        right: -5%;
        bottom: -1.2rem;
        height: 1.2rem;
        background-size: cover;
    }

    .intro-img {
        width: 50%;
        margin: 0;
    }

    .plans-container {
        padding: 2rem 5%;
    }

    .plans-title {
        font-size: 2.5rem;
    }

    .plans-content {
        flex-direction: row;
        gap: 2%;
    }

    .plan {
        box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.3);
        height: unset;
        aspect-ratio: 9 / 10;
        border-radius: 2vw;
        max-width: 25rem;
    }

    .plans-subtitle {
        font-size: 2.5rem;
    }

    .plans-btn {
        font-size: 1.5rem;
        padding: 0.5rem 3rem;
        border-radius: 0.75rem;
    }

    .for-container {
        display: flex;
        align-items: center;
    }

    .dogs{
        flex-flow: row-reverse;
        padding: 5rem 0 3rem;
    }

    .for-img{
        width: 55%;
    }

    .for-content {
        width: 45%;
        padding: 0 5%;
    }

    .newsletter {
        display: flex;
        flex-direction: row;
        align-items: end;
        width: 100%;
        padding-top: 3rem;
        overflow: hidden;
    }

    .newsletter-line {
        right: -1vw;
        top: unset;
        bottom: -4.1vw;
        width: 5%;
        transform: rotate(75deg);
        z-index: -1;
    }

    .newsletter-form {
        padding: 1rem 10% 1rem 5%;
    }

    .newsletter-title {
        font-size: 2rem;
        text-align: left;
        margin: 0 0 1rem;
    }

    .newsletter-form > label {
        font-size: 1.1rem;
        padding-left: 1rem;
        margin: 1rem 0 0.5rem;
    }

    .newsletter-form > input {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }

    .newsletter-form > textarea {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        height: 10rem;
    }

    .newsletter-form > button {
        margin: 3rem 0 0;
    }

    .newsletter-img {
        width: 50%;
        padding-left: 0;
    }
}

#otto-care-microsite-container{
    height: 3950px;
}
@media (width > 320px) {
    #otto-care-microsite-container{
        height: 3700px;
    }
}
@media (width > 375px) {
    #otto-care-microsite-container{
        height: 3500px;
    }
}
@media (width > 425px) {
    #otto-care-microsite-container{
        height: 3400px;
    }
}
@media (width > 768px) {
    #otto-care-microsite-container{
        height: 3400px;
    }
}
@media (width > 990px) {
    #otto-care-microsite-container{
        height: 2500px;
    }
}
@media (width > 1280px) {
    #otto-care-microsite-container{
        height: 2400px;
    }
}