: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;
    }
}
/*NOSOTROS*/
.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 2rem;
}

h1, h2, h3 {
 margin-bottom: 1.5rem;
 color: var(--secondary);
}

h1 {
 font-size: 2.5rem;
 position: relative;
 display: inline-block;
}

h1::after {
 content: '';
 position: absolute;
 bottom: -10px;
 left: 0;
 width: 80px;
 height: 4px;
 background-color: var(--accent);
}

h2 {
 font-size: 2rem;
 margin-top: 3rem;
 position: relative;
 padding-bottom: 0.5rem;
}

h2::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 60px;
 height: 3px;
 background-color: var(--primary);
}

p {
 margin-bottom: 1.5rem;
 font-size: 1.1rem;
 color: var(--gray);
}

.section {
 padding: 2rem 0;
 position: relative;
}
/*NOSOTROS*/
.section-dark {
 background-color: var(--secondary);
 color: white;
}

.section-dark h2, .section-dark h3 {
 color: var(--primary);
}

.section-dark p {
 color: var(--gray);
}

.section-dark h2::after {
 background-color: var(--light);
}

.about-content {
 display: flex;
 align-items: center;
 gap: 3rem;
 margin-bottom: 3rem;
}

.about-text {
 flex: 1;
}

.about-image {
 flex: 1;
 border-radius: 10px;
 overflow: hidden;
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 transform: translateY(50px);
 opacity: 0;
 transition: all 0.6s ease-out;
}

.about-image.animated {
 transform: translateY(0);
 opacity: 1;
}

.about-image img {
 width: 100%;
 height: auto;
 display: block;
 transition: transform 0.5s ease;
}

.about-image:hover img {
 transform: scale(1.05);
}
/*NOSOTROS */
/*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*/

