/* Estilos generales */
body {
    font-family: sans-serif;
    padding-top: 56px; /* Ajuste para el navbar fijo de Bootstrap */
}

/* Estilo para el logo y el eslogan en el navbar */
.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50; /* Color verde de SEND-GO */
}

.slogan-text {
    font-size: 1rem;
    color: #fff;
}

/* Estilo para la sección Hero (Encabezado) - Simula el Carrusel */
.carousel-section {
    min-height: 40vh;
    background-color: #1a1a1a; /* Fondo oscuro similar al de algunas páginas del PDF */
    background-image: url('images/slide1.jpg'); /* Se recomienda usar una imagen de fondo real */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 0;
}

.carousel-section h1 {
    color: #4CAF50; /* Verde */
}

/* Estilos de la estructura flexible (Para secciones Quienes Somos, Valores, etc.) */
.flex-container {
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos se envuelvan en pantallas pequeñas */
    align-items: center;
    padding: 30px 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.flex-item-left,
.flex-item-right {
    flex: 1 1 100%; /* Por defecto, ocupan todo el ancho en móviles */
    padding: 15px;
}

.flex-container img, .image-placeholder {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

/* Media query para pantallas de escritorio (a partir de 768px) */
@media (min-width: 768px) {
    .flex-item-left,
    .flex-item-right {
        flex: 1 1 50%; /* Ocupan la mitad del ancho en escritorio */
    }

    /* Orden para la sección Quienes Somos (reverse) */
    .flex-container.reverse .flex-item-left {
        order: 2;
    }
    .flex-container.reverse .flex-item-right {
        order: 1;
    }
}

/* Estilos específicos para contenido */
h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    border-bottom: 3px solid #4CAF50; /* Línea verde */
    display: inline-block;
    padding-bottom: 5px;
}

.service-box {
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-section h4 {
    color: #333;
    margin-top: 15px;
}

/* Placeholder de imagen simple para las secciones */
.image-placeholder {
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    color: #666;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 8px;
}

/* Ajustes de tipografía para el contenido del PDF */
#mision-vision ul,
#valores ul {
    list-style: none;
    padding-left: 0;
}

#mision-vision li::before {
    content: "✔️";
    margin-right: 8px;
    color: #4CAF50; /* Icono de check verde */
}

#valores li {
    font-weight: bold;
    margin-bottom: 8px;
}

#valores li::before {
    content: "⭐";
    margin-right: 8px;
}