:root {
    --primary: #E67E22;
    --secondary: #333;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}
/* Barra de navegación */
header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
.navbar {
    background-color: var(--dark);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Menú principal */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 1.5rem;
    position: relative;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Submenú desplegable */
.dropdown-content {
    display: none;
    position: absolute;
    background: var(--light);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    top: 100%;
    left: 0;
}

.dropdown-content li {
    margin: 0;
    padding: 0.5rem 1rem;
    background-color: #333;
    border-bottom: 1px solid #000;
}

.dropdown-content a {
    color: #fff !important;
}

.dropdown-content a:hover {
    color: var(--primary) !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Menú hamburguesa (responsive) */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: #363333;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        padding: 0.5rem 2rem;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background: #222;
        display: none;
    }

    .dropdown-content li {
        padding-left: 2rem;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .hamburger {
        display: block;
    }
}
/*DISENO WEB*/

.web-design {
 max-width: 1200px;
 margin: 0 auto;
 margin-top: 90px;
}

/* Web Design Section */
.design-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background-color: var(--medium-gray);
    border: none;
    border-radius: 50px;
    margin: 0 10px 10px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:last-child {
    margin-right: 0;
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.tab-btn:hover:not(.active) {
    background-color: var(--dark-gray);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: flex;
    align-items: center;
    gap: 50px;
}

.content-left {
    flex: 1;
}

.content-right {
    flex: 1;
}

.content-left h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.content-left ul {
    margin-bottom: 30px;
}

.content-left ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.content-left ul i {
    color: var(--primary-color);
    margin-right: 10px;
}




/*MISION - VISION */
.values-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2rem;
 margin-top: 3rem;
}

.value-card {
 background: white;
 border-radius: 10px;
 padding: 1rem;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 transform: translateY(50px);
 opacity: 0;
 transition: all 0.6s ease-out;
}

.value-card.animated {
 transform: translateY(0);
 opacity: 1;
}

.value-card:nth-child(2) {
 transition-delay: 0.2s;
}

.value-card:nth-child(3) {
 transition-delay: 0.4s;
}

.value-icon {
 font-size: 2.5rem;
 color: var(--secondary);
 margin-bottom: 1.5rem;
}
/*MISION - VISION */

/*EQUIPO DE TRABAJO*/

.team-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
 margin-top: 3rem;
}

.team-member {
 background: white;
 border-radius: 10px;
 overflow: hidden;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 text-align: center;
 transform: scale(0.9);
 opacity: 0;
 transition: all 0.6s ease-out;
}

.team-member.animated {
 transform: scale(1);
 opacity: 1;
}

.team-member img {
 width: 100%;
 height: 250px;
 object-fit: cover;
}

.team-info {
 padding: 1.5rem;
}

.team-info h3 {
 margin-bottom: 0.5rem;
 color: var(--primary);
}

.team-info p {
 color: var(--gray);
 font-size: 0.9rem;
}

@media (max-width: 768px) {
 .about-content {
 flex-direction: column;
}

h1 {
 font-size: 2rem;
}

h2 {
 font-size: 1.8rem;
 }
}

/*EQUIPO DE TRABAJO*/

