body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    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;
}

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 156px;
    padding-left: 200px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../../../img/fondos/home/fondo_seccion1.jpg') no-repeat center center/cover;
    filter: blur(4px) brightness(0.3);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: white;
}

.hero h1 {
    font-size: 70px;
    font-weight: 700;
}

.hero p {
    font-size: 25px;
    color: #cccccc;
}

.btn-orange {
    background-color: #e63900;
    border: none;
    color: #ffffff;
    font-size: 20px;
}

.btn-orange:hover {
    background-color: #cc3300;
}

/* 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;
    }
}

.seccion2 {
    background-color: #0d0d0d;
    color: white;
    padding: 60px 20px;
}

.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.cuadro h3 {
    color: #ff6600;
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: bold;
}

.cuadro p {
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 1em;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .grid-2x2 {
        grid-template-columns: 1fr;
    }
}

.seccion3 {
    background-color: #0d0d0d;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.seccion3 h2 {
    font-size: 50px;
    color: #ff6600;
    margin-bottom: 40px;
    font-weight: bold;
}

.grid-servicios {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.servicio {
    background-color: #111;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
}

.servicio:hover {
    transform: translateY(-5px);
    background-color: #1a1a1a;
}

.icono {
    font-size: 48px;
    color: #ff6600;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.servicio:hover .icono {
    color: #e63900;
}

.servicio h3 {
    font-size: 1.2rem;
    color: #ff6600;
    margin-bottom: 10px;
}

.servicio p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
    .grid-servicios {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-servicios {
        grid-template-columns: 1fr;
    }
}

.seccion4 {
    background-color: #0d0d0d;
    color: white;
    padding: 60px 20px;
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contacto-form h2,
.contacto-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contacto-form form {
    display: flex;
    flex-direction: column;
}

.contacto-form input,
.contacto-form textarea {
    background-color: #111;
    border: 1px solid #333;
    color: white;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.contacto-form textarea {
    resize: none;
    height: 120px;
}

.contacto-form button {
    background-color: #e63900;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-end;
}

.contacto-form button:hover {
    background-color: #cc3300;
}

.contacto-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contacto-info a {
    color: #ff6600;
    text-decoration: none;
}

.contacto-info a:hover {
    text-decoration: underline;
}

.social-icons a {
    color: #ff6600;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #e63900;
}

/* Responsive */
@media (max-width: 768px) {
    .contacto-grid {
        grid-template-columns: 1fr;
    }

    .contacto-form button {
        align-self: stretch;
    }
}

.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: #e63900;
}

.creator {
    font-size: 0.9rem;
    color: #ccc;
}

.creator a {
    color: #ff6600;
    text-decoration: none;
}

.creator a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto 20px auto;
    }

    .footer-menu ul li {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}


.fundador-section {
    background-color: #0d0d0d;
    border-radius: 12px;
}

.text-orange {
    color: #e63900;
    font-weight: 900;
}

.fundador-img {
    max-width: 500px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.fundador-img:hover {
    transform: scale(1.05);
}