/* servicios-styles.css */
.services-detail-content {
    padding: 140px 0 50px;
    min-height: 70vh;
}

.services-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.services-detail-content h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #59621d;
    padding-top: 10px;
}

.services-detail-content h2 {
    color: #97d700;
    margin: 30px 0 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.service-image {
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-gallery img:hover {
    transform: scale(1.03);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service-feature {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #97d700;
}

.service-feature h3 {
    color: #59621d;
    margin-bottom: 10px;
}

.back-to-services {
    background-color: #97d700;
    color: white !important;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: 2px solid #97d700;
    text-align: center;
}

.back-to-services:hover {
    background-color: #7ab300;
    border-color: #7ab300;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.back-to-services i {
    margin-right: 8px;
}

body {
    scroll-padding-top: 100px;
}


.coming-soon {
    background-color: #97d700;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-left: 10px;
    vertical-align: middle;
}

.coming-soon-banner {
    background-color: #f8f9fa;
    border-left: 4px solid #97d700;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coming-soon-banner i {
    color: #97d700;
    font-size: 1.2em;
}

.interest-form {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #59621d;
}

.interest-form h3 {
    color: #59621d;
    margin-bottom: 10px;
}

.interest-form p {
    margin-bottom: 20px;
}

.interest-form .form-group {
    margin-bottom: 15px;
}

.interest-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.interest-form input:focus {
    outline: none;
    border-color: #97d700;
    box-shadow: 0 0 0 2px rgba(151, 215, 0, 0.2);
}

@media (max-width: 768px) {
    .services-container {
        padding: 20px;
    }
    
    .service-gallery {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .coming-soon {
        display: block;
        margin-left: 0;
        margin-top: 10px;
        width: fit-content;
        margin: 10px auto 0;
    }
    
    .interest-form {
        padding: 20px;
    }
}