    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* Header y Menú */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
           /* background: white;*/
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
		#clientes h2,#politicas h2{text-align:center;     padding: 15px;}

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
           /* padding: 1rem 5%;*/
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ff6b00;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
			     border-bottom: 2px solid #1d9f99;
    border-radius: 0px 10px 0px 10px;
    padding: 5px;
    background: #0087b2;
    color: #f7f7f7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff6b00;
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background: white;
            transition: all 0.3s ease;
        }

        /* Slider */
        .slider-container {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .slider {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }

        .slide-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
            padding: 2rem;
            animation: fadeInUp 1s ease;
        }

        .slide-content h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }

        .slide-content p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        .btn {
            padding: 1rem 2.5rem;
            background: #ff6b00;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn:hover {
            background: #ff8533;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
        }

        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 100;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: #ff6b00;
            width: 40px;
            border-radius: 10px;
        }

        /* Secciones con Parallax */
        .parallax-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }
		.btn{ padding:10px; background:black}

.parallax-section h1,.parallax-section h2, .parallax-section h3{color:white; z-index:99;}
        .parallax-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }
		.section-content2 {
    position: relative;
    z-index: 10;
    /* text-align: center; */
    /* color: white; */
    padding: 4rem 2rem;
    max-width: 1200px;
    animation: fadeIn 1s 
ease;}

        .section-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
            padding: 4rem 2rem;
            max-width: 1200px;
            animation: fadeIn 1s ease;
        }
		

        .section-content h2 {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            color: #ff6b00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .section-content p {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            transition: all 0.3s;
            border: 2px solid rgba(255, 107, 0, 0.3);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 107, 0, 0.2);
            border-color: #ff6b00;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ff6b00;
        }

        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .burger {
                display: flex;
                        background: black;
            }

            .nav-links {
                position: fixed;
                right: -100%;
                top: 70px;
                flex-direction: column;
                background: rgba(0, 0, 0, 0.95);
                width: 100%;
                padding: 2rem;
                transition: right 0.3s;
                gap: 1.5rem;
            }

            .nav-links.active {
                right: 0;
            }

            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger.active div:nth-child(2) {
                opacity: 0;
            }

            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .slide-content h1 {
                font-size: 2.5rem;
            }

            .slide-content p {
                font-size: 1.2rem;
            }

            .section-content h2 {
                font-size: 2.5rem;
            }

            .section-content p {
                font-size: 1.1rem;
            }

            .parallax-section {
                background-attachment: scroll;
            }
        }