/* --- Fuentes y Estilos Generales --- */
body {
    font-family: 'Roboto', sans-serif;
    padding-top: 70px; /* Ajuste para el navbar fijo */
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Titillium Web', sans-serif;
}

.section-title {
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

/* Línea decorativa debajo de los títulos de sección */
.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: #0d6efd; /* Color primario de Bootstrap */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


/* --- Menú de Navegación --- */
.navbar {
    transition: all 0.3s ease-in-out;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.2s ease-in-out;
}

.nav-link:hover {
    color: #0d6efd !important;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    color: #ffffff;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* --- Sección de Servicios --- */
.service-card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.1);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

/* --- Sección de Productos --- */
#productos .nav-pills .nav-link {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 600;
    padding: 10px 25px;
    margin: 0 5px;
    border: 1px solid #dee2e6;
}

#productos .nav-pills .nav-link.active {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

#productos .tab-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-top: -1px;
}

/* --- Sección CTA (Call to Action) --- */
.cta-section {
    background-color: #343a40;
    color: white;
}

.cta-section a.btn-light {
    font-weight: bold;
}

/* --- Footer --- */
footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #adb5bd;
}
