body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #000;
    padding: 20px;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    margin-right: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #e63900 !important;
    border: 2px solid #e63900;
    border-radius: 6px;
    padding: 6px 12px;
}

.nav-link.active {
    color: #e63900 !important;
    border: 2px solid #e63900;
    border-radius: 6px;
    padding: 6px 12px;
}

/* MEGA MENU */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #111;
    padding: 40px 80px;
    display: none;
    z-index: 999;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 20px;
}

.mega-menu.active {
    display: flex !important;
}

.mega-menu .column {
    color: white;
    min-width: 200px;
    flex: 1 1 calc(20% - 20px);
}

.mega-menu .column h6 {
    font-weight: bold;
    margin-bottom: 10px;
    color: #f5f5f5;
}

.mega-menu .column ul {
    list-style: none;
    padding: 0;
}

.mega-menu .column ul li {
    margin-bottom: 10px;
}

.mega-menu .column ul li a {
    color: #ccc;
    text-decoration: none;
}

.mega-menu .column ul li a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .mega-menu {
        display: none !important;
    }
}

.seccion1 {
    background-color: #000000;
    font-family: 'Inter', sans-serif;
}

.titulo-politica {
    font-weight: bold;
    font-size: 2.5rem;
    color: #ff6600;
    line-height: 1.3;
}

.seccion1 p {
    font-size: 1.1rem;
    color: #cccccc;
}

.candado-img {
    max-width: 500px;
    filter: drop-shadow(0 0 10px #ff6600);
}

.seccion2 {
    background-color: #000;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 50px auto;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.item-datos {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.item-datos img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    flex-shrink: 0;
}

.item-datos h5 {
    color: #ff6600;
    font-weight: 700;
    margin-bottom: 10px;
}

.item-datos p,
.item-datos ul {
    color: #ccc;
    font-size: 1rem;
    margin: 0;
}

.item-datos ul {
    padding-left: 20px;
}

.btn-orange {
    background-color: #ff6600;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-orange:hover {
    background-color: #e69500;
}

.footer {
    background-color: #000000;
    color: #fff;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

.footer-logo .nit {
    color: #ff6600;
    font-weight: bold;
    margin-top: 10px;
}

.footer-menu h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    margin-bottom: 10px;
    position: relative;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-menu a:hover {
    color: #ff6600;
}

.footer-menu .arrow {
    font-size: 15px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* SUBMENU */
.submenu {
    display: none;
    padding-left: 15px;
    margin-top: 10px;
}

.has-submenu:hover .submenu {
    display: block;
}

.has-submenu:hover .arrow {
    transform: rotate(180deg);
}

/* SOCIAL */
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    color: #ff6600;
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff6600;
}