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: #000;
    padding-top: 80px;
    padding-bottom: 80px;
    color: #fff;
}

.seccion1 .text-orange {
    color: #ff6600;
}

.seccion1 h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

.seccion1 p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ddd;
}

.seccion1 .fundador-img {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .seccion1 .fundador-img {
        margin-bottom: 20px;
    }
}

.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;
}