    :root {
            --primary: #9E1F21;
            --secondary: #1A5276;
            --accent: #F39C12;
            --light: #F8F9FA;
            --dark: #2C3E50;
            --text: #333333;
            --white: #FFFFFF;
            --gray: #6C757D;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text);
            overflow-x: hidden;
    
            background: linear-gradient(to bottom, #003087 0%, /* Azul oscuro superior */ #003087 40%, #ffffff 40%, /* Blanco */ #ffffff 50%, #003087 50%, /* Rojo */ #003087 60%, #003087 60%, /* Azul inferior */ #003087 100%);
  color: 003087 100%;
        }
    a {
        text-decoration: none;
        color: rgb(255, 255, 255);
    }
        h1, h2, h3, h4 {
            font-weight: 700;
            margin-bottom: 1rem;
        }

    .justify{
        text-align: justify;
        text-indent: 50px;
     }   
        .container {
            width: 90%;
            max-width: 1700px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color: var(--white);
            color: #003087;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-outline {
            background-color: #003087;
            border: 2px solid var(--white);
            color: var(--white);
        }
        
        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary);
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            color: var(--primary);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent);
        }
        
        section {
            padding: 5rem 0;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: #012d7d;          
/*
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.466); 
*/
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 10px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        /*    padding: 0.5vw 0 0.1vw 0; */
        }
        
        .logo img {
                margin-top: 6px;
                        height: 4vw;
        }
        
        .nav-menu {
            display: flex;
        }
        
        .nav-menu li {
            margin: 0 15px;
        }
        
        .nav-menu a {
            font-weight: 600;
            position: relative;
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover:after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
        }
        li {
            color: #ffffff;
        }
        /* Hero Section con Slideshow */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        .hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-1 {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../imgs/slides/araucaria.jpg') no-repeat right center/cover;
        }
        
        .slide-2 {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../imgs/slides/nevado.jpg') no-repeat right center/cover;
        }
        
        .slide-3 {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../imgs/slides/plaza.jpg') no-repeat right center/cover;
        }
        .slide-4 {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../imgs/slides/puente.jpg') no-repeat right center/cover;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            height: 37.5vw;
            display: flex;
            align-items: center;
            color: var(--white);
            text-align: center;
        }
        
        .hero-text {
            max-width: 90vw;
            margin: 0 auto;
            animation: fadeInUp 1s ease;
        }
        
        .hero h1 {
            font-size: 2.9vw;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: #000 2px 1px 3px;
        }
        
        .hero p {
            font-size: 1.37vw;
            margin-bottom: 2rem;                                     
            text-shadow: #000 2px 2px 1px;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 2rem;
        }
        
        .slide-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .slogan {
            font-size: 1.3em;
        }
        .vida, .libertad, .propiedad {
            display: inline-block;
            font-size: 1.5em;
            margin: 0 10px;
            padding: 1px 7px;
            border-radius: 3px;
            color: rgb(0, 0, 0);
        }

        .vida { background-color: #ffc446; }
        .libertad { background-color: #4276e4; }
        .propiedad { background-color: #cc2e2e; }
        .separador_b { display: inline-block; font-size: 1.5em; margin: 0 10px; }

        .kastMartinez{
            opacity: 0;
            position: absolute;
            bottom: 0vw;
            right: 4vw;
            width: 31vw;
            height: 33.9vw;
            z-index: 1;

            background-image: url('../imgs/logos/equipo.png');
            background-size: contain;
            background-position: center center;
            background-repeat: no-repeat;
        }
        .felipemartinez {
            opacity: 0;
            position: absolute;
            bottom: 0vw;
            left: 4vw;
            width: 31vw;
            height: 36vw;
            z-index: 1;

            background-image: url('../imgs/fotosdecampaa1/felipemartinez.png');
            background-size: contain;
            background-position: center center;
            background-repeat: no-repeat;
        }
        .show {
            opacity: 1;
            transition: opacity 1s ease-in-out;
        }
        .comilla{

        content: "“"; /* comilla de apertura elegante */
        font-size: 2rem;
        color: #ffffff;
        margin-right: 5px;
    }

    .comillas::before {

      content: "“"; /* comilla de apertura elegante */
      font-size: 2rem;
      color: #ffffff;
      margin-right: 5px;
    }

    .comillas::after {
      content: "”"; /* comilla de cierre elegante */
      font-size: 2rem;
      vertical-align: text-top;
      color: #ffffff;
      margin-left: 5px;
    }

    .indicator.active {
        background-color: var(--white);
        transform: scale(1.3);
    }
        
        /* Banderas Section */
    .banderas {
            background-color: var(--light);
        }
        
    .banderas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(253px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
    .bandera-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            text-align: center;
        }
        
    .bandera-card:hover {
            transform: translateY(-10px);
        }
        
    .bandera-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* Propuestas Section */
    .propuestas-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
            gap: 10px;
        }
        
    .propuesta-tab {
            padding: 12px 25px;
            background-color: var(--light);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
    .propuesta-tab.active {
            background-color: var(--primary);
            color: var(--white);
        }
        
    .propuestas-content {
            margin-top: 30px;
        }
        
    .propuesta-category {
            display: none;
        }
        
    .propuesta-category.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
    .propuesta-item {
            background-color: var(--white);
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        /* Distritos Section */
    .distritos {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://live.staticflickr.com/704/22576361126_e4e0f96493_k.jpg') no-repeat center center/cover;
           
            color: var(--white);
            text-align: center;
        }
        
    .distritos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
    .distrito-item {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 8px;
            backdrop-filter: blur(5px);
        }
        
        /* Eventos Section */
        .events-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .event-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .event-card:hover {
            transform: translateY(-10px);
        }
        
        .event-image {
            height: 200px;
            overflow: hidden;
        }
        
        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .event-card:hover .event-image img {
            transform: scale(1.1);
        }
        
        .event-info {
            padding: 20px;
        }
        
        .event-date {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        /* Contacto Section */
        .contact {
            background-color: var(--light);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: #122b4e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            border: 4px solid #ffffff;
            outline: 4px solid #a31d1e;
        }
        
        .contact-form {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
             background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));

            color: var(--white);
            padding: 50px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-logo img {
            height: 60px;
            margin-bottom: 15px;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }
        
        .footer-links h3, .footer-newsletter h3 {
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer-links h3:after, .footer-newsletter h3:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 4px 0 0 4px;
        }
        
        .newsletter-btn {
            padding: 0 15px;
            background-color: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Animaciones */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                background-color: var(--white);
                width: 80%;
                height: calc(100vh - 70px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
                box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .propuestas-nav {
                flex-direction: column;
                align-items: center;
            }
        }
        /*sdfsd*/
        .toggle-content .text {
  max-height: 100px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.toggle-content[data-expanded="true"] .text {
  max-height: 1000px;
}

.toggle-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 8px;
}
/*
.footer-ajust {
    height: 36vw;
}
*/