
        /* Ajustes para desktop - tamaño óptimo */
        body {
            min-width: 320px;
        }
        .container {
            max-width: 1400px;
        }

        * {
            font-family: 'Poppins', sans-serif;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #099397 0%, #3db6aa 50%, #afd962 100%);
        }
        
        /* Animaciones y efectos */
        .service-card {
            transition: all 0.3s ease;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(9, 147, 151, 0.15);
        }
        
        .btn-hover-effect {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .btn-hover-effect:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease-in;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Hero con parallax */
        .hero-parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        /* Tabs de servicios */
        .service-tabs {
            border-bottom: 2px solid #e5e7eb;
        }
        .tab-button {
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }
        .tab-button.active {
            border-bottom-color: #099397;
            color: #099397;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease-in;
        }
        
        /* Proceso paso a paso */
        .process-step {
            position: relative;
        }
        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -20px;
            width: 40px;
            height: 2px;
            background: linear-gradient(to right, #099397, #3db6aa);
            transform: translateY(-50%);
        }
        .process-step:last-child::after {
            display: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-parallax {
                background-attachment: scroll;
            }
            .process-step::after {
                display: none;
            }
        }
         /* Selector de idiomas */
                .translate-wrapper {
              display: inline-block;
              padding: 8px 16px;
              background-color: #e1e653;
              color: #ffffff;
              font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
              font-size: 16px;
              font-weight: 500;
              border-radius: 10px;
              box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
              transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
              cursor: pointer;
              text-align: center;
              text-decoration: none;
            }

            .translate-wrapper:hover {
              background-color: #3DC6B0;
              transform: translateY(-3px);
              box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
            }
             /* para que no aparezca mal el boton de google*/
            .goog-logo-link,
           .goog-te-gadget span {
             display: none !important;
           }
           

           
