/* Estilos para la sección central */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

.header-spacing {
    height: 150px; /* Ajusta este valor según sea necesario */
}

.main-content {
    background-color: #fff;
    min-height: 500px;
}

.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb p {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.services-section h1 {
    color: #333;
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
}

.services-section h1:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #E74C3C;
    margin-top: 10px;
}

.services-description {
    margin-bottom: 40px;
    line-height: 1.6;
}

.services-description p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

.service-guarantee {
    font-weight: 500;
    font-size: 18px !important;
    color: #444 !important;
}

.protection-image {
    text-align: center;
    margin: 30px 0;
}

.protection-image img {
    max-width: 70%; /* Limita el ancho máximo al 80% del contenedor */
    height: auto; /* Mantiene las proporciones de la imagen */
    max-height: 350px; /* Limita la altura máxima para que no sea demasiado alta */
    border-radius: 8px; /* Bordes redondeados */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra para un diseño más atractivo */
}

.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}

.feature {
    width: 30%;
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    color: #E74C3C;
    margin-bottom: 15px;
    font-size: 20px;
}

.feature p {
    color: #666;
    line-height: 1.5;
}

.more-info-button-container {
    text-align: center;
    margin: 30px 0 50px;
}

.more-info-button {
    display: inline-block;
    background-color: #E74C3C; /* Color de fondo inicial */
    color: #fff; /* Color del texto */
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px; /* Bordes completamente redondeados */
    transition: all 0.3s ease;
    border: 2px solid #E74C3C;
    letter-spacing: 1px;
}

.more-info-button:hover {
    background-color: #c0392b; /* Color más oscuro al pasar el cursor */
    color: #fff; /* Mantiene el texto blanco */
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3); /* Sombra más intensa */
}

/* Responsive */
@media (max-width: 768px) {
    .service-features {
        flex-direction: column;
    }
    
    .feature {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .services-section h1 {
        font-size: 24px;
    }
    
    .service-guarantee {
        font-size: 16px !important;
    }
    .more-info-button {
        padding: 10px 25px;
        font-size: 15px;
    }
}