.camila-services {
    min-height: 90vh;
}

.camila-services-box-container {
    gap: 32px;
    height: 80%;
    overflow-y: hidden;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.camila-services-hidden-element {
    display: none;
    width: 0%;
    height: 0%;
}

.camila-services-title {
    font-family: milk_and_honeyregular;
    text-align: center;
    font-size: 56px;
    font-weight: 400;
    color: #ffaa3c;
    margin-bottom: 80px;
}

.camila-services-box {
    background-image: url('../assets/img/blue_background.png');
    height: 100%;
    min-height: 700px;
    width: 30%;
    border-radius: 20px;
    opacity: 1;
    transform: rotateY(0deg) scale(1);
    transition: all 0.4s ease-in-out;
}

.camila-services-box-back {
    padding-top: 20px;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 40px;
    overflow-y: auto;
}

.camila-services-box-title {
    margin-top: 40px;
}

.camila-services-box-subtitle {
    color: white;
    padding-left: 36px;
    padding-right: 36px;
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    line-height: 32px;
}

.camila-services-box-text {
    color: white;
    padding-left: 36px;
    padding-right: 36px;
    text-align: justify;
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
}

.camila-services-box-text-petsitter {
    font-size: 14px !important;
    text-align: center; 
}

.camila-services-box-items {
    padding-left: 32px;
    margin-top: 16px;
    font-size: 12px !important;
    text-align: start;
}

.camila-services-box-more {
    cursor: pointer;
    font-family: milk_and_honeyregular;
    min-height: 40px;
    min-width: 200px;
    border-radius: 20px;
    background-color: #ffaa3c;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    transform: scale(1);
    transition: all 0.15s ease-in;
}

.camila-services-box-more-front:after {
    content: 'Saiba mais';
}

.camila-services-box-more-back:after {
    content: 'Ok, entendi';
}

.camila-services-box-more:hover {
    transform: scale(1.3);
    box-shadow: 0px 0px 20px 0px #ffaa3c;
}

.camila-services-box-hidden {
    transform: rotateY(90deg) scale(0.95);
}

.camila-services-box-inactive {
    opacity: 0.3;
}

@media screen and (max-width: 1380px) {
    .camila-services-box-title {
        margin-top: 10px;
        transform: scale(0.8);
    }

    .camila-services-box-title-petsitter {
        margin-top: 40px !important;
    }

    .camila-services-box-picture {
        height: 200px;
        transform: scale(0.8) translateY(32px);
    }

    .camila-services-box-subtitle { 
        font-size: 16px;
        line-height: 28px;
    }

    .camila-services-box-more {
        min-height: 28px;
        font-size: 20px;
    }

    .camila-services-box-text {
        font-size: 16px;
    }
    
}

@media screen and (max-height: 800px) {
    .camila-services-box {
        min-height: 600px;
    }
}


/* Responsive mobile */
@media screen and (max-width: 768px) {
    .camila-services-box-container {
        gap: 32px;
        height: 80%;
        overflow-y: hidden;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .camila-services-box {
        width: 90%;
        min-height: 600px;
        overflow-y: hidden;
    }

    .camila-services-box-text {
        padding-left: 16px;
        padding-right: 16px;
        margin-bottom: 32px;
    }

    .camila-services-box-more {
        height: 48px;
    }

    .camila-services-box-more:hover {
        transform: scale(1);
        box-shadow: none;
    }
}

@media screen and (min-width: 768px) {
}