* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Navbar */
        nav {
            background: linear-gradient(135deg, #FF9933, #0066CC);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            height: 55px;
            filter: brightness(1.1) contrast(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s;
        }

        .nav-links a:hover {
            opacity: 0.8;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            transition: 0.3s;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Sections */
        section {
            padding: 100px 2rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .container {
            max-width: 1200px;
            width: 100%;
        }

        h1 {
            font-size: 3rem;
            color: #0066CC;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: 2.5rem;
            color: #0066CC;
            margin-bottom: 2rem;
            text-align: center;
        }

        /* Home Section */
        #home {
            background: linear-gradient(135deg, rgba(0,102,204,0.05), rgba(255,153,51,0.05));
        }

        .home-content {
            text-align: center;
        }

        .home-content p {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Quienes Somos Section */
        #quienes-somos {
            background: white;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
        }

        .about-card {
            background: linear-gradient(135deg, #0066CC, #FF9933);
            padding: 2rem;
            border-radius: 15px;
            color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .about-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        /* Nosotros Section */
        #nosotros {
            background: white;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 2rem;
        }

        .team-member {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,102,204,0.2);
        }

        .team-photo {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #0066CC, #FF9933);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
            font-weight: bold;
        }

        .team-info {
            padding: 2rem;
        }

        .team-info h3 {
            color: #0066CC;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .team-info .role {
            color: #FF9933;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .team-info p {
            color: #666;
            line-height: 1.6;
        }

        /* Ferias Section */
        #ferias {
            background: linear-gradient(135deg, rgba(0,102,204,0.05), rgba(255,153,51,0.05));
        }

        .ferias-container {
            display: grid;
            grid-template-columns: 45% 55%;
            gap: 3rem;
            margin-top: 2rem;
            align-items: start;
        }

        .peru-map {
            position: relative;
            width: 100%;
            height: 600px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            padding: 2rem;
        }

        .map-svg {
            width: 100%;
            height: 100%;
        }

        .province {
            fill: #0066CC;
            stroke: #003d7a;
            stroke-width: 1.5;
            cursor: pointer;
            transition: fill 0.3s, stroke 0.3s;
            opacity: 0.7;
        }

        .province:hover {
            opacity: 0.9;
            fill: #FFB366;
        }

        .province.active {
            fill: #FF9933;
            stroke: #cc7a29;
            stroke-width: 2;
            opacity: 1;
        }

        .feria-carousel {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            min-height: 500px;
        }

        .feria-slide {
            display: none;
        }

        .feria-slide.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .feria-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #0066CC, #FF9933);
            border-radius: 10px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            font-weight: bold;
        }

        .feria-info h3 {
            color: #0066CC;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .feria-date {
            color: #FF9933;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .feria-description {
            color: #666;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .province-name {
            text-align: center;
            color: #0066CC;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 1.5rem;
        }

        .indicator-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d4d4d4;
            transition: background 0.3s;
        }

        .indicator-dot.active {
            background: #FF9933;
        }

        /* Historia Section */
        #historia {
            background: linear-gradient(135deg, rgba(0,102,204,0.05), rgba(255,153,51,0.05));
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #0066CC, #FF9933);
        }

        .timeline-item {
            margin-bottom: 3rem;
            position: relative;
        }

        .timeline-content {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            width: 45%;
            position: relative;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: 55%;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-right: 55%;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: #FF9933;
            border: 4px solid white;
            border-radius: 50%;
            top: 20px;
        }

        .timeline-year {
            font-size: 1.5rem;
            font-weight: bold;
            color: #0066CC;
            margin-bottom: 0.5rem;
        }

        /* Descargas Section */
        #descargas {
            background: white;
        }

        .download-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 2rem;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 400px;
            background: #f5f5f5;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .carousel-item {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0066CC, #FF9933);
            color: white;
            font-size: 2rem;
        }

        .carousel-item.active {
            opacity: 1;
        }

        .carousel-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background 0.3s;
        }

        .carousel-dot.active {
            background: white;
        }

        .download-description {
            padding: 2rem;
        }

        .download-description h3 {
            color: #0066CC;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .download-btn {
            display: inline-block;
            background: linear-gradient(135deg, #0066CC, #FF9933);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 1rem;
            transition: transform 0.3s;
        }

        .download-btn:hover {
            transform: scale(1.05);
        }

        /* Contacto Section */
        #contacto {
            background: linear-gradient(135deg, rgba(0,102,204,0.05), rgba(255,153,51,0.05));
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #0066CC;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #0066CC;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #0066CC, #FF9933);
            color: white;
            padding: 1rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
            width: 100%;
        }

        .submit-btn:hover {
            transform: scale(1.02);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #0066CC, #FF9933);
                flex-direction: column;
                padding: 1rem 2rem;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-out;
            }

            .nav-links.active {
                max-height: 400px;
            }

            .nav-links li {
                padding: 0.8rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            .about-grid,
            .download-container,
            .team-grid {
                grid-template-columns: 1fr;
            }

            .ferias-container {
                grid-template-columns: 1fr;
            }

            .peru-map {
                height: 400px;
            }

            .timeline::before {
                left: 30px;
            }

            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 80px;
                margin-right: 0;
                width: calc(100% - 80px);
            }

            .timeline-dot {
                left: 30px;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.8rem;
            }
        }
