 :root{
    --verde-oscuro:#097633;
    --verde-claro:#3eab35;
    --color-naranja:#f18c0f;
    --color-amarillo:#fddb04;
    --gris-oscuro:#bdbfc1;
    --gris-claro:#d1d0ce;


 }



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        /* Estilos generales */
        body {
            overflow-x: hidden;
        }

        section {
            padding: 80px 0;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .col-6 {
            width: 50%;
            padding: 0 15px;
        }
        
        .col-4 {
            width: 33.33%;
            padding: 0 15px;
        }
        
        .col-3 {
            width: 25%;
            padding: 0 15px;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .text-center {
            text-align: center;
        }
        
        .section-title {
            font-size: 36px;
            margin-bottom: 30px;
            color: #333;
        }
        


        /* Estilos de la portada */
        .portada {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

/* Estilos del menú */
        .menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .menu-bg {
            background-color: rgba(0, 0, 0, 0.8);
        }

       .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 40px; /* Ajusta el tamaño según necesites */
            width: auto;
            max-width: 100%;
        }

        .menu-items {
            display: flex;
            list-style: none;
        }

        .menu-items li {
            margin-left: 20px;
        }

        .menu-items li a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        .menu-items li a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #f5a623;
            transition: width 0.3s ease;
        }

        .menu-items li a:hover:after {
            width: 100%;
        }

        .menu-items li a:hover {
            color: #f5a623;
        }

        .menu-toggle {
            display: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
        }

        /* Estilos del slider */
        .slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            overflow: hidden;
        }

        .slide-bg {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: all 0.5s ease;
        }

        .slide.active {
            opacity: 1;
        }

        /* Efecto de zoom para la primera imagen */
        .slide:nth-child(1).active .slide-bg {
            animation: zoomEffect 5s forwards;
        }

         /* Efecto de temblor para la segunda imagen */
        .slide:nth-child(2).active .slide-bg {
            animation: zoomEffect 5s forwards;
        }

        
        /* Efecto de giro para la tercera imagen */
        .slide:nth-child(3).active .slide-bg {
            animation: zoomEffect 5s forwards;
        }

        @keyframes zoomEffect {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.1);
            }
        }

       

        
        /* Estilos de las flechas de navegación */
        .slide-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            font-size: 24px;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            z-index: 100;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }

        .slide-arrow:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .slide-arrow.prev {
            left: 20px;
        }

        .slide-arrow.next {
            right: 20px;
        }

        /* Estilos de los indicadores de slide */
        .slide-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 100;
        }

        .slide-indicator {
            width: 12px;
            height: 12px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slide-indicator.active {
            background-color: #fff;
            transform: scale(1.2);
        }

        /* Estilos del contenido de la portada */
        .portada-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #fff;
            z-index: 100;
            width: 80%;
            max-width: 800px;
            transition: opacity 0.5s ease;
            opacity: 0;
        }

        .portada-content.active {
            opacity: 1;
        }

        .portada-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .portada-content p {
            font-size: 18px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .btn {
            display: inline-block;
            background-color: #f5a623;
            color: #fff;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background-color: #fff;
            color: #f5a623;
        }

        /* Overlay para mejorar visibilidad del texto */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        /* Botón para cambiar imagen en móvil */
        .change-image-btn {
            display: none;
            position: absolute;
            bottom: 70px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            z-index: 200;
        }

        /* Media queries para responsividad */
        @media (max-width: 768px) {
            .menu-items {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.95);
                padding: 80px 0 30px;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                z-index: 999;
                transition: all 0.3s ease;
            }

            .menu-items.active {
                display: flex;
            }

            .menu-items li {
                margin: 15px 0;
            }

            .menu-items li a {
                font-size: 18px;
            }

            .menu-toggle {
                display: block;
            }

            .portada-content h1 {
                font-size: 32px;
            }

            .portada-content p {
                font-size: 16px;
            }

            .slide-arrow {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            
            .change-image-btn {
                display: block;
            }
        }
