.banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/stumpgrinding.webp") no-repeat center;
    
}
.conten__tittle p {
    line-height: 1.4em;
}
.conten__tittle h1 {
    color: var(--yellow-color);
    padding-bottom: 10px;
    margin: 15px 0;
}
.content {
    margin-top: 20px;
    padding: var(--padding-content);
    max-width: var(--max-width-content);
    margin: auto;
}
.content_inf h2{
    color: var(--black-color);
    margin-bottom: 30px;
}

.subcontent {
    font-weight: bold;
}
.content_inf p {
    line-height: var(--space-line);
    margin: 20px 0;
}
.menu_services img{
    width: 100%;
    border-radius: 40px;
}
.keyword {
    color: var(--black-color);
    font-weight: bold
}
.keyword:hover {
    border-bottom: 2px solid var(--black-color);
    transition: all 0.5s;
}
.tips {
    margin: 40px 0;
    
}
.tips_content {
    display: flex;
    background: var(--black-color);
    padding: 15px;
    color: #fff;
    cursor: pointer;
    border-radius: 7px;
    align-items: center;
}

.tips_content p {
    margin: 0;
    line-height: normal;
}
#text_1, #text_2, #text_3, #text_4 {
    display: none;
}

/* Flechas */
.arrow_1, .arrow_2 {
    font-size: 30px;
    padding-right: 15px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.arrow_1 {
    opacity: 0; /* Flecha 1 empieza oculta */
    width: 0;
    padding: 0;
}

.arrow_2 {
    opacity: 1; /* Flecha 2 empieza visible */
}

/* Flecha cuando está visible */
.arrow_1.visible {
    opacity: 1;
    transform: rotate(0); /* Rotar para que apunte hacia arriba */
}

.arrow_2.hidden {
    opacity: 0;
}

/* Contenido */
.text {
    line-height: var(--space-line);
    text-align: justify;
    padding: 0 15px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.text.show {
    max-height: 300px; /* Ajusta según tu contenido */
    opacity: 1;
} 

.text_4 {
    display: grid;
}
.text_4 a{
    color: #000;
    margin: 5px 0;
} 
.section_services {
    margin-top: 30px;
    margin-bottom: 30px;
}
.text_4 a:hover {
    text-decoration: underline;
}
.starnow {
    background: var(--yellow-color);
    height: 200px;
    display: flex;
}
.starnow a {
    margin: auto;
    color: #fff;
    font-weight: bold;
    font-size: 25px;
    padding: 15px;
    background: rgba(0,0,0,0.8);
    border-radius: 10px;
    
}
.starnow a:hover {
    background: var(--black-color);
    transition: all 0.2s;
}
.why_section {
    padding: var(--padding-content);
}
.whysection {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px auto;
    max-width: 1000px
}
.whyus {
    width: 47%;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.6);
    margin: 15px 0;
    border-radius: 15px;
    padding: 20px;
    
}
.whyus h4 {
    margin-bottom: 10px
}
.titulo_why {
    max-width: 1100px;
    margin: auto;
}
@media screen and (min-width: 800px) {
    .content {
        display: flex;
        justify-content: space-between;
    }
    .content_inf {
        width: 60%;
    }
    .menu_services {
        width: 35%;
    }
}