 :root {
            --primary-color: #000000;
            --secondary-dark: #006400;
            --secondary-light: #32CD32;
        }
        
        body {
            padding-top: 180px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        /* Navbar fija con efecto al hacer scroll */
        .navbar {
            background-color: black;
            transition: background-color 0.4s ease;
            padding: 10px 0;
        }
        
        
        .navbar.scrolled {
            background-color: black;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand img {
            height: 130px;
            transition: transform 0.3s ease; /* Transición suave */
        }

        .navbar-brand:hover img {
            transform: scale(1.1); /* Aumenta el tamaño en un 10% */
        }

        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
            color: white !important;
        }
        
        .nav-link:hover {
            transform: scale(1.05);
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #32CD32;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
/* Botón de hamburguesa con color verde */
.navbar-toggler {
    border-color: #32CD32 !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2332CD32' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(50, 205, 50, 0.25) !important;
}

        /* Sección Nosotros */
        .about-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .about-image-container {
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }
        
        .about-image-container:hover {
            transform: translateY(-10px);
        }
        
        .about-image-container img {
            transition: transform 0.5s ease;
            width: 100%;
            height: auto;
        }
        
        .about-image-container:hover img {
            transform: scale(1.05);
        }
        
        .experience-badge {
            border-left: 4px solid var(--secondary-light);
            backdrop-filter: blur(10px);
            background-color: rgba(0, 0, 0, 0.9) !important;
        }
        
        .experience-badge h3 {
            font-size: 2rem;
            color: var(--secondary-light);
        }
        
        .icon-box {
            transition: all 0.3s ease;
            min-width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .icon-box:hover {
            transform: rotate(10deg) scale(1.1);
        }
        
        .btn-secondary-light {
            background-color: var(--secondary-light);
            border-color: var(--secondary-light);
        }
        
        .btn-secondary-light:hover {
            background-color: var(--secondary-dark);
            border-color: var(--secondary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(50, 205, 50, 0.2);
        }
        
        .btn-outline-dark:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
    body {
        padding-top: 150px; /* Más espacio en pantallas pequeñas */
    }
}
        
        /* Responsive */
        @media (max-width: 768px) {
            .about-section {
                padding-top: 40px;
                padding-bottom: 40px;
            }
            
            .display-5 {
                font-size: 2.5rem;
            }
            
            .experience-badge {
                padding: 15px !important;
            }
            
            .experience-badge h3 {
                font-size: 1.5rem;
            }
        }
        
        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .about-content {
            animation: fadeInUp 0.8s ease-out;
        }



                /* Footer */
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-logo {
            height: 60px;
            margin-bottom: 20px;
        }
        
        .footer-title {
            color: var(--secondary-light);
            position: relative;
            margin-bottom: 25px;
            padding-bottom: 10px;
        }
        
        .footer-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-dark), var(--secondary-light));
        }
        
        .footer-links a {
            display: block;
            color: #ddd;
            margin-bottom: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary-light);
            padding-left: 5px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        /*
        .social-icons a:hover {
            background-color: var(--secondary-light);
            transform: translateY(-5px);
        }
        */
        .footer-bottom {
            background-color: rgba(0, 0, 0, 0.7);
            padding: 20px 0;
            margin-top: 40px;
        }
        
        .highlight {
            color: var(--secondary-light);
        }
        
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-light));
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 100, 0, 0.3);
        }

                .copyright {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

        /* Botón de WhatsApp flotante */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

/* Animación de latido */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 0.6s ease-in-out;
}

/* Estado inicial del botón */
.whatsapp-btn {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
        