/*
    1) Colores web:
    Naranja: #DE5A00;
    Naranja chillón: #FD5E29;
    Naranja terroso: #cc6633;
    Gris flojo: #f0f0f0;
    Gris titulos: #d3d3d3;
    Gris oscuro menú: #3a3a3a;
    Azúl marino: #02122D;

*/

html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
a {
    color: #DE5A00;
}
.fc-orange{
    color: #DE5A00 !important;
}
.fc-gris{
    color: #d3d3d3 !important;
}
.fc-gris-claro{
    color: #f0f0f0 !important;
}
.fc-gris-oscuro{
    color: #3a3a3a;
}
.logo-nav{
    font-weight: bold; 
    color: #f0f0f0;
    font-size: 20px;
}
/* Menu nav-top */
.style-nav-top{
    font-weight: 600;
}
.style-nav-top .nav-link {
    color: #d3d3d3 !important;
}
.style-nav-top .nav-link:hover {
    color: #ffffff !important; 
    background-color: #DE5A00 !important;
}
/* Limitar el ancho del texto en el banner principal para que sea más legible */
.max-width-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
/* Espaciado elegante para textos pequeños de introducción */
.tracking-wider {
    letter-spacing: 2px;
}
/* Efecto sutil de zoom al pasar el cursor sobre las imágenes (opcional, queda muy pro) */
#servicios img {
    transition: transform 0.3s ease;
}
#servicios img:hover {
    transform: scale(1.02);
}

/* Estilos para el texto de pilares corporativos */
.italic-subtitle {
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Personalización de la lista para sustituir los puntos feos por un guion elegante */
.custom-corporate-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #DE5A00;
    font-weight: bold;
}

/* Botón corporativo personalizado */
.btn-custom-corporate {
    color: #DE5A00; 
    background-color: #ffffff;
    border-color: #DE5A00; 
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: background-color 0.2s ease;
}

.btn-custom-corporate:hover {
    color: #ffffff;
    background-color: #DE5A00; 
    border-color: #DE5A00; 
}
/* Boton de subir al top */
#btn-subir {
    transition: all 0.6s ease;
}
#btn-subir:hover {
    transform: translateY(-5px); 
    box-shadow: 0 6px 12px rgba(0,0,0,0.2) !important;
}
/* footer */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.social-icons a {
    text-decoration: none !important;
}
.icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #3b5998; /* Ejemplo Facebook */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}
.icon.yt { background-color: #cc181e; }
.icon.in { background-color: #0077b5; }
.icon.web { background-color: #333; }
/**/
/* Fondo de pantalla con foto y bloques blancos translucidos */
.fondo-pantalla-completa {
    width: 100%;
    min-height: 100vh; 
    background-image: url('../img/IMG_8815.jpg'); /* cambiar en cada pagina */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    display: block;
    overflow: hidden;
}
/* caja blanca para que tenga un toque "glass" (cristal) */
.fondo-pantalla-completa .container {
    background-color: rgba(255, 255, 255, 0.94) !important; 
    backdrop-filter: blur(5px); /* Desenfoca ligeramente lo que hay detrás de la caja */
}