        :root {
            --primary-blue: #2A4D69;
            --creative-magenta: #B50A70;
            --hover-magenta: #8A0A50;
            --secondary-gray: #ECEFF1;
            --dark-gray: #333333;
            --light-text: #F8F9FA;
            --dark-text: #212529;
            --white: #FFFFFF;
            --hover-blue: #3E7C9D;
            --spacing-unit: 1rem;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--dark-text);
            background-color: var(--white);
            scroll-behavior: smooth;
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* --- ESTILOS REUTILIZADOS DEL INDEX.HTML (Header y Footer) --- */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing-unit); }
        .btn { display: inline-block; padding: 0.8rem 1.8rem; border-radius: 50px; text-decoration: none; font-weight: 500; transition: all 0.3s ease; cursor: pointer; font-size: 1rem; }
        .btn-primary { background-color: var(--primary-blue); color: var(--light-text); border: 2px solid var(--primary-blue); }
        .btn-primary:hover { background-color: var(--hover-blue); border-color: var(--hover-blue); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
        .cta-header .btn-primary { background: linear-gradient(45deg, var(--primary-blue), var(--creative-magenta)); border: none; }
        .cta-header .btn-primary:hover { background: linear-gradient(45deg, var(--hover-blue), var(--hover-magenta)); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
        h1, h2, h3 { font-weight: 600; line-height: 1.2; color: var(--dark-gray); }
        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.8rem; }
        @media (max-width: 768px) { h1 { font-size: 2.8rem; } h2 { font-size: 2rem; } h3 { font-size: 1.5rem; } }

        .header { position: fixed; width: 100%; top: 0; left: 0; z-index: 1000; background-color: rgba(255, 255, 255, 0.9); padding: 1rem 0; transition: background-color 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
        .header.scrolled { background-color: var(--white); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
        .header .container { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 1.8rem; font-weight: 700; color: var(--primary-blue); text-decoration: none; display: flex; align-items: center; }
        .logo img { height: 40px; margin-right: 8px; }
        .nav-menu ul { list-style: none; display: flex; gap: 2rem; }
        .nav-menu ul li a { color: var(--dark-text); text-decoration: none; font-weight: 500; position: relative; transition: color 0.3s ease; }
        .nav-menu ul li a::after { content: ''; position: absolute; width: 0; height: 2px; background-color: var(--primary-blue); left: 0; bottom: -5px; transition: width 0.3s ease; }
        .nav-menu ul li a:hover::after, .nav-menu ul li a.active::after { width: 100%; }
        .nav-menu ul li a:hover, .nav-menu ul li a.active { color: var(--primary-blue); }
        .cta-header .btn { padding: 0.7rem 1.5rem; }
        .menu-toggle { display: none; font-size: 1.8rem; color: var(--primary-blue); cursor: pointer; }
        @media (max-width: 992px) { .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--white); box-shadow: 0 4px 10px rgba(0,0,0,0.1); padding: 1rem 0; } .nav-menu.active { display: flex; } .nav-menu ul { flex-direction: column; gap: 1rem; align-items: center; } .nav-menu ul li { width: 100%; text-align: center; } .cta-header { display: none; } .menu-toggle { display: block; } }

        .footer { background-color: var(--dark-gray); color: var(--secondary-gray); padding: 4rem 0 1.5rem; font-size: 0.9rem; }
        .footer .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem; }
        .footer-col h4 { color: var(--light-text); margin-bottom: 1.5rem; font-size: 1.2rem; }
        .footer-col .logo { font-size: 1.5rem; color: var(--light-text); margin-bottom: 0.5rem; }
        .footer-col .slogan { font-style: italic; margin-bottom: 1rem; opacity: 0.8; }
        .social-icons a { color: var(--secondary-gray); font-size: 1.5rem; margin-right: 1rem; transition: color 0.3s ease; }
        .social-icons a:hover { color: var(--primary-blue); }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 0.8rem; }
        .footer-col ul li a { color: var(--secondary-gray); text-decoration: none; transition: color 0.3s ease; }
        .footer-col ul li a:hover { color: var(--primary-blue); }
        .footer-col p { margin-bottom: 0.8rem; opacity: 0.9; }
        .footer-bottom { text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.8rem; opacity: 0.7; }
        @media (max-width: 768px) { .footer .container { grid-template-columns: 1fr; text-align: center; } .social-icons { margin-top: 1rem; } .social-icons a { margin: 0 0.5rem; } }

        /* --- NUEVOS ESTILOS PARA LA PÁGINA "NUESTRA HISTORIA" --- */

        .main-content {
            padding-top: 80px; /* Espacio para el header fijo */
        }

        .story-hero {
            text-align: center;
            padding: 4rem 0;
            background-color: var(--secondary-gray);
        }

        .story-hero h1 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .story-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 300;
        }

        .story-section {
            padding: 5rem 0;
            border-bottom: 1px solid var(--secondary-gray);
        }

        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .story-content.reverse {
             grid-template-columns: 1fr 1fr;
        }
         @media (max-width: 768px) {
            .story-content, .story-content.reverse {
                grid-template-columns: 1fr;
             }
         }

        .story-text h2 {
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
        }
        .story-text p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .story-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .team-section {
            padding: 5rem 0;
            text-align: center;
        }
        .team-section h2 {
            margin-bottom: 3rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .team-grid {
                grid-template-columns: 1fr;
            }
        }
        .team-member {
            background: var(--secondary-gray);
            padding: 2rem;
            border-radius: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }
        .team-member img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1.5rem;
            border: 4px solid var(--white);
        }
        .team-member h3 {
            font-size: 1.5rem;
            color: var(--creative-magenta);
            margin-bottom: 0.5rem;
        }
        .team-member .role {
            font-weight: 500;
            color: var(--dark-text);
            margin-bottom: 1rem;
        }
        .team-member p {
            font-size: 0.9rem;
            font-style: italic;
        }

        .cta-final-section {
            padding: 5rem 0;
            background-color: var(--primary-blue);
            color: var(--light-text);
            text-align: center;
        }
        .cta-final-section h2 {
            color: var(--light-text);
            margin-bottom: 1.5rem;
        }
        .cta-final-section p {
            max-width: 600px;
            margin: 0 auto 2.5rem;
            opacity: 0.9;
        }
        .cta-final-section .btn-secondary {
            color: var(--white);
            border-color: var(--white);
        }
        .cta-final-section .btn-secondary:hover {
            background-color: var(--white);
            color: var(--primary-blue);
        }

        .cta-final-section .btn-secondary {
            color: var(--primary-blue);
        }

        /* Breadcrumb */
        .breadcrumb-nav {
            background-color: var(--secondary-gray);
            padding: 1rem 0;
        }
        .breadcrumb {
            background: none;
            margin: 0;
            padding: 0;
        }
        .breadcrumb-item a {
            color: var(--primary-blue);
        }
        .breadcrumb-item.active {
            color: var(--dark-text);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .modal-content {
            background-color: var(--white);
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 500px;
            border-radius: 15px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover,
        .close:focus {
            color: #000;
            text-decoration: none;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }

        .contact-btn {
            margin-right: 10px;
            padding: 8px 16px;
            border: 1px solid #ccc;
            background: var(--white);
            cursor: pointer;
            border-radius: 5px;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }

        .contact-btn.active {
            background-color: var(--primary-blue);
            color: var(--light-text);
            border-color: var(--primary-blue);
        }

        .modal-content h2 {
            margin-bottom: 20px;
            color: var(--primary-blue);
        }