/* Estilos específicos para página Servicios Adicionales */
.logo img {
    height: 50px; /* Tamaño reducido del logo */
    width: auto; /* Mantiene la proporción */
    margin-right: 10px; /* Espacio entre el logo y el texto */
}

.additional-main {
    margin-top: 80px;
}

.additional-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 51, 102, 0.4), rgba(0, 180, 216, 0.3)),
                url('../../img/servicios/servicios_a/sr_adicional.jpg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.8rem;
    font-weight: 300;
}

.additional-detail {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

.additional-overview {
    text-align: center;
    margin-bottom: 4rem;
}

.additional-overview h2 {
    color: #003366;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.additional-overview img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.additional-services {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.additional-service {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.additional-service:hover {
    transform: translateY(-5px);
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    color: #003366;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-info p {
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .additional-hero {
        height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .additional-services {
        grid-template-columns: 1fr;
    }
}