﻿ * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --reform-primary: #13662A;
            --reform-secondary: #ff9800;
            --reform-dark: #0d3317;
            --reform-light: #f5f5dc;
            --reform-gray: #6c757d;
            --reform-beige: #f9f6f0;
        }

        /* Gov.co Banner */
        .reform-govco-banner {
            background: #3366CC;
            color: white;
            padding: 0.5rem 0;
            font-size: 0.85rem;
        }

        .reform-govco-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .reform-govco-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
        }

        .reform-govco-links {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .reform-govco-link {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .reform-govco-link:hover {
            opacity: 0.8;
            color: white;
        }

        /* Accessibility Bar */
        .reform-accessibility-bar {
            background: #f8f9fa;
            border-bottom: 1px solid #dee2e6;
            padding: 0.5rem 0;
        }

        .reform-accessibility-controls {
            display: flex;
            gap: 1rem;
            align-items: center;
            justify-content: flex-end;
            flex-wrap: wrap;
        }

        .reform-accessibility-btn {
            background: transparent;
            border: 1px solid #dee2e6;
            padding: 0.4rem 0.8rem;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .reform-accessibility-btn:hover {
            background: var(--reform-primary);
            color: white;
            border-color: var(--reform-primary);
        }

        .reform-accessibility-btn:focus {
            outline: 3px solid #ff9800;
            outline-offset: 2px;
        }

        body.reform-high-contrast {
            filter: contrast(1.5);
        }

        body.reform-font-large {
            font-size: 1.125rem;
        }

        body.reform-font-xlarge {
            font-size: 1.25rem;
        }

        body {
            font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Header */
        .reform-header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }

        .reform-logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--reform-primary);
            text-decoration: none;
        }

        .reform-logo img {
            height: 50px;
        }

        .reform-nav {
            display: flex;
            gap: 2rem;
            align-items: center;
            list-style: none;
            margin: 0;
        }

        .reform-nav-link {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .reform-nav-link:hover {
            color: var(--reform-primary);
        }

        .reform-btn-primary {
            background: var(--reform-primary);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 25px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .reform-btn-primary:hover {
            background: #e68900;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
        }

        .reform-btn-secondary {
            background: transparent;
            color: var(--reform-primary);
            padding: 0.75rem 2rem;
            border-radius: 25px;
            border: 2px solid var(--reform-primary);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .reform-btn-secondary:hover {
            background: var(--reform-primary);
            color: white;
        }

        /* Hero Section */
        .reform-hero {
            padding: 0;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .reform-hero .container {
            padding: 0;
            max-width: 100%;
        }

        .reform-hero .row {
            margin: 0;
        }

        .reform-hero-content {
            position: relative;
            z-index: 1;
        }

        .reform-hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(26, 95, 42, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--reform-primary);
            margin-bottom: 1.5rem;
        }

        .reform-hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--reform-dark);
            margin-bottom: 1rem;
        }

        .reform-hero-subtitle {
            font-size: 1.3rem;
            color: var(--reform-primary);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .reform-hero-description {
            font-size: 1.1rem;
            color: var(--reform-gray);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .reform-event-date {
            background: var(--reform-primary);
            color: white;
            padding: 1.5rem 2rem;
            border-radius: 15px;
            display: inline-block;
            margin-bottom: 2rem;
        }

        .reform-event-date-main {
            font-size: 2rem;
            font-weight: 800;
            display: block;
        }

        .reform-event-date-location {
            font-size: 1rem;
            opacity: 0.9;
        }

        .reform-hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .reform-conference-logo {
            width: 100%;
            height: auto;
            display: block;
            max-width: 100%;
        }

        /* Green Divider */
        .reform-green-divider {
            background: var(--reform-primary);
            height: 8px;
            width: 100%;
            position: relative;
        }

        .reform-green-divider::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(90deg, 
                var(--reform-primary) 0%, 
                var(--reform-secondary) 50%, 
                var(--reform-primary) 100%);
            opacity: 0.3;
        }

        /* Objectives Section */
        .reform-objectives {
            padding: 5rem 0;
            background: white;
        }

        .reform-section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .reform-section-subtitle {
            color: var(--reform-primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .reform-section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--reform-primary) !important;
            margin-bottom: 1rem;
        }

        .reform-section-description {
            color: var(--reform-gray);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .reform-objective-card {
            background: var(--reform-beige);
            padding: 2rem;
            border-radius: 15px;
            height: 100%;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .reform-objective-card:hover {
            transform: translateY(-10px);
            border-color: var(--reform-primary);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .reform-objective-number {
            width: 60px;
            height: 60px;
            background: var(--reform-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .reform-objective-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--reform-dark);
            margin-bottom: 1rem;
        }

        .reform-objective-description {
            color: var(--reform-gray);
            line-height: 1.6;
        }

        /* How It Will Be Section */
        .reform-how-section {
            padding: 5rem 0;
            background: #fff;
            color: var(--reform-gray);
        }

       #ministra{
        background: var(--reform-primary);
        color: #fff;
       }

        .reform-how-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .reform-how-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .reform-how-icon {
            width: 40px;
            height: 40px;
            background: var(--reform-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
        }

        .reform-how-text {
            line-height: 1.6;
        }

        .reform-quote-section {
            //background: rgba(255, 255, 255, 0.1);
            //padding: 2rem;
            //border-radius: 15px;
            //margin-top: 3rem;
            //border-left: 5px solid var(--reform-secondary);
        }

        .reform-quote-text {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .reform-quote-author {
            font-weight: 700;
            font-size: 1.1rem;
        }

        .reform-quote-role {
            opacity: 0.9;
        }

        /* Topics Section */
        .reform-topics {
            padding: 5rem 0;
            background: var(--reform-beige);
        }

        .reform-topic-card {
            background: var(--reform-secondary);
            padding: 3rem 2rem;
            border-radius: 15px;
            height: 100%;
            color: white;
            transition: all 0.3s;
        }

        .reform-topic-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 152, 0, 0.3);
        }

        .reform-topic-title {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .reform-topic-description {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .reform-topic-btn {
            background: white;
            color: var(--reform-dark);
            padding: 0.75rem 2rem;
            border-radius: 25px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .reform-topic-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Image Gallery */
        .reform-gallery {
            padding: 5rem 0;
            background: white;
        }

        .reform-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .reform-gallery-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .reform-gallery-item:hover {
            transform: scale(1.05);
        }

        .reform-gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        /* Social Section */
        .reform-social {
            padding: 3rem 0;
            background: var(--reform-dark);
            color: white;
            text-align: center;
        }

        .reform-social-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: white !important;
        }

        .reform-social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .reform-social-link {
            width: 60px;
            height: 60px;
            background: white;
            color: var(--reform-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.5rem;
        }

        .reform-social-link:hover {
            background: var(--reform-secondary);
            color: white;
            transform: translateY(-5px);
        }

        /* Skip Link */
        .reform-skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: var(--reform-secondary);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            font-weight: 600;
            z-index: 9999;
            transition: top 0.3s;
        }

        .reform-skip-link:focus {
            top: 0;
        }

        /* Mobile Menu */
        .reform-mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 991px) {
            .reform-mobile-toggle {
                display: block;
            }

            .reform-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }

            .reform-nav.active {
                display: flex;
            }

            .reform-hero-title {
                font-size: 2.5rem;
            }

            .reform-section-title {
                font-size: 2rem;
            }
        }

        @keyframes reform-fade-in-up {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reform-animate {
            animation: reform-fade-in-up 0.8s ease forwards;
        }
        
        
        @media (max-width: 768px) {
            .reform-hero-language-selector {
                top: 10px;
                right: 10px;
            }
            
            .reform-hero-lang-btn {
                padding: 0.4rem 1rem;
                font-size: 0.85rem;
            }
        }

        
        
  /* Language Selector on Hero */
       .reform-hero-lang-btn {
    background: transparent;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 50px; /* Cambiado de 25px a 50px */
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--reform-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.reform-hero-language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.3rem;
    border-radius: 50px; /* Cambiado de 30px a 50px */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}        
      .reform-hero-lang-btn .flag-icon {
            font-size: 1.2rem;
        }

        .reform-hero-lang-btn.active {
            background: var(--reform-primary);
            color: white;
            box-shadow: 0 2px 8px rgba(26, 95, 42, 0.3);
        }

        .reform-hero-lang-btn:hover:not(.active) {
            background: rgba(26, 95, 42, 0.1);
            color: var(--reform-primary);
        }

        .reform-hero-lang-btn:focus {
            outline: none;
        }
