        /* Reset y estilos base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Header */
        header {
            background-color: #06334B; /*#fff;*/
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 1rem 5%;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            /*font-size: 1.8rem;
            font-weight: 700;
            color: #ff5a5f;*/
        }

        .logo span {
            color: #0fd70e;
        }

        /* Menú de navegación */
        nav{
            color: #fff;
        }
        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 1.5rem;
        }

        nav ul li a:hover {
            color: #0fd70e; /*#ff5a5f;*/
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #fff;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1551632811-561732d1e306?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 1rem;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin-bottom: 2rem;
        }

        .cta-button {
            background-color: #ff5a5f;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }

        .cta-button-small {
            background-color: #ff5a5f;
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 5px;
            font-weight: 400;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            line-height: calc(0.8rem * 2 + 1rem);
        }

        .cta-button:hover {
            background-color: #e04a4f;
            transform: translateY(-2px);
        }

        /* Benefits Section */
        .benefits {
            padding: 5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .benefits h3 {
            margin-bottom: 0.6rem;
            margin-top: 0.8rem;
            color: #ff5a5f;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.2rem;
            color: #333;
        }
        .section-subtitle {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 1.4rem;
            color: #333;
            font-weight: normal;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .benefits-grid .bar-color{

        }

        .benefit-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
        }

        .benefit-card .bar-color {
            height: 30px;
            background-color: #008489;
        }

        .benefit-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }

        .benefit-content {
            padding: 1.5rem;
        }

        .bar-color + .benefit-content{
            padding-top: 0;
        }

        .benefit-content h3 {
            margin-bottom: 0.5rem;
            color: #ff5a5f;
        }
        
        /* Registration Section */
        .registration {
            background-color: #008489;
            color: white;
            padding: 5rem 5%;
            text-align: center;
        }

        .registration h2 {
            margin-bottom: 2rem;
            font-size: 2.2rem;
        }

        .registration p {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
        }

        /* Form Container */
        .form-container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        /* Service Tabs */
        .service-tabs {
            display: flex;
            background: #f5f5f5;
        }

        .service-tab {
            flex: 1;
            padding: 1.2rem;
            text-align: center;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            color: #aeaeae;
        }

        .service-tab.active {
            background: white;
            color: #ff5a5f;
            border-bottom: 3px solid #ff5a5f;
        }

        /* Form Carousel */
        .form-carousel {
            display: flex;
            transition: transform 0.5s ease;
        }

        .form-slide {
            min-width: 100%;
            padding: 2rem;
        }

        /* Progress Indicator */
        .progress-container {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .progress-steps {
            display: flex;
            gap: 1rem;
        }

        .progress-step {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #999;
            position: relative;
        }

        .progress-step.active {
            background: #ff5a5f;
            color: white;
        }

        .progress-step.completed {
            background: #008489;
            color: white;
        }

        .progress-step:not(:last-child)::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 2px;
            background: #f0f0f0;
            left: 30px;
        }

        .progress-step.completed:not(:last-child)::after {
            background: #008489;
        }

        /* Form Styles */
        .form-title {
            text-align: center;
            margin-bottom: 1.5rem;
            color: #333;
            font-size: 1.5rem;
        }

        .form-subtitle {
            text-align: center;
            margin-bottom: 2rem;
            color: #666;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #444;
        }

        .form-group .label-optional {
            font-weight: normal;
            color: #888;
            font-size: 0.9rem;
        }

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: #008489;
            box-shadow: 0 0 0 3px rgba(0, 132, 137, 0.2);
            outline: none;
        }

        .form-control::placeholder {
            color: #bbb;
        }

        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 0.7rem center;
            background-size: 1rem;
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .form-row {
            display: flex;
            gap: 1rem;
        }

        .form-row .form-group {
            flex: 1;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .checkbox-group input {
            margin-right: 0.5rem;
        }

        .radio-group {
            display: flex;
            gap: 1rem;
        }

        .radio-option {
            display: flex;
            align-items: center;
        }

        .radio-option input {
            margin-right: 0.5rem;
        }

        /* File Upload */
        .file-upload {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem;
            border: 2px dashed #ddd;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #f9f9f9;
        }

        .file-upload:hover {
            border-color: #ff5a5f;
            background: rgba(255, 90, 95, 0.05);
        }

        .file-upload i {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #ff5a5f;
        }

        .file-upload input {
            display: none;
        }

        .file-upload-text {
            text-align: center;
            color: #666;
        }

.file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.file-preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-preview-item button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    border: none;
    background: rgba(0,0,0,0.7);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 12px;
}

/* grid de servicios o cualquier elemento */
        .grid200 {
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            column-gap: 2rem;
        }

        .grid200 .checkbox-group{
            margin: 0;
            text-align: left;
        }
        .grid200 .checkbox-group label{
            font-weight: normal;
            font-size: 0.9rem;
            margin: 0;
        }

        /* Form Navigation */
        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #eee;
        }

        .form-btn {
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            min-width: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .form-btn i {
            margin-right: 0.5rem;
            margin-left: 0.5rem;
        }

        .btn-prev {
            background: #f0f0f0;
            color: #666;
        }

        .btn-prev:hover {
            background: #e0e0e0;
        }

        .btn-next {
            background: #ff5a5f;
            color: white;
        }

        .btn-next:hover {
            background: #e04a4f;
        }

        .btn-submit {
            background: #008489;
            color: white;
            width: 100%;
        }

        .btn-submit:hover {
            background: #007379;
        }

        /* Success Message */
        .success-message {
            text-align: center;
            padding: 3rem;
        }

        .success-message i {
            font-size: 1rem;
            color: #008489;
            /*margin-bottom: 1.5rem;*/
        }

        .success-message h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .success-message p {
            color: #666;
            margin-bottom: 2rem;
        }

		/* Estilos del carrusel de testimonios */
		.testimonials {
		    padding: 5rem 5%;
		    max-width: 1400px;
		    margin: 0 auto;
		    position: relative;
		}
		
		.section-title {
		    text-align: center;
		    margin-bottom: 3rem;
		    font-size: 2.2rem;
		    color: #333;
		}
		
		.testimonial-carousel-container {
		    position: relative;
		    overflow: hidden;
		    padding: 0 3rem;
		}
		
		.testimonial-carousel {
		    display: flex;
		    transition: transform 0.5s ease;
		}
		
		.testimonial-slide {
		    min-width: 100%;
		    padding: 0 1rem;
		}
		
		.testimonial-card {
		    background: white;
		    padding: 2rem;
		    border-radius: 8px;
		    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
		    max-width: 800px;
		    margin: 0 auto;
		}
		
		.testimonial-card p {
		    font-style: italic;
		    margin-bottom: 1.5rem;
		    font-size: 1.1rem;
		    line-height: 1.6;
		}
		
		.testimonial-author {
		    display: flex;
		    align-items: center;
		}
		
		.testimonial-author img {
		    width: 60px;
		    height: 60px;
		    border-radius: 50%;
		    object-fit: cover;
		    margin-right: 1rem;
		}
		
		.testimonial-author h4 {
		    margin-bottom: 0.3rem;
		    color: #333;
		}
		
		.testimonial-author span {
		    color: #666;
		    font-size: 0.9rem;
		}
		
		/* Controles del carrusel */
		.carousel-control {
		    position: absolute;
		    top: 50%;
		    transform: translateY(-50%);
		    background: white;
		    border: none;
		    width: 40px;
		    height: 40px;
		    border-radius: 50%;
		    display: flex;
		    align-items: center;
		    justify-content: center;
		    cursor: pointer;
		    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		    z-index: 10;
		    transition: all 0.3s ease;
		}
		
		.carousel-control:hover {
		    background: #ff5a5f;
		    color: white;
		}
		
		.carousel-control.prev {
		    left: 0;
		}
		
		.carousel-control.next {
		    right: 0;
		}
		
		/* Indicadores */
		.carousel-indicators {
		    display: flex;
		    justify-content: center;
		    margin-top: 2rem;
		    gap: 0.5rem;
		}
		
		.carousel-indicators .indicator {
		    width: 12px;
		    height: 12px;
		    border-radius: 50%;
		    background: #ddd;
		    cursor: pointer;
		    transition: all 0.3s ease;
		}
		
		.carousel-indicators .indicator.active {
		    background: #ff5a5f;
		    transform: scale(1.2);
		}

        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 3rem 5% 1rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .footer-column h3 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a:hover {
            color: #ff5a5f;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #444;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #ff5a5f;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid #444;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            height: 100vh;
            background: white;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            border-bottom: 1px solid #eee;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 1rem;
        }

        .mobile-menu ul li {
            margin-bottom: 1rem;
        }

        .mobile-menu ul li a {
            display: block;
            padding: 0.5rem;
            border-radius: 5px;
        }

        .mobile-menu ul li a:hover {
            background: #f5f5f5;
            color: #ff5a5f;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        /* Main Content */
        .main-content {
            padding: 3rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .page-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .page-header h1 {
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .page-header p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .section {
            margin-bottom: 3rem;
        }

        .section h2 {
            font-size: 1.8rem;
            color: #ff5a5f;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #008489;
        }

        .section p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .section ul {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }

        .section ul li {
            margin-bottom: 0.5rem;
        }

        /* Grid Layout */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .card {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .card h3 {
            color: #008489;
            margin-bottom: 1rem;
        }

        /* Formulario de Contacto */
        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #444;
        }

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: #008489;
            box-shadow: 0 0 0 3px rgba(0, 132, 137, 0.2);
            outline: none;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .btn-submit {
            background: #ff5a5f;
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            background: #e04a4f;
        }

        p.ok, p.error {
            background-color: #b7fdcf;
            margin-top: 2rem;
            padding: 1rem;
            border-radius: 6px;
            font-weight: bold;
        }
        p.error{
            background-color: #fdb7b7;
        }

        .terms-ok{
            color: #666;
            font-weight: normal;
            font-size: 0.7rem;
            text-align: center;
        }

        .benefit-card ul li {
            margin-left: 1rem;
        }

/*
        .valida {
            border: 1px solid #ddd;
            outline: none;
            transition: border-color 0.3s;
        }
        .valida:valid {
          border-color: #4CAF50;
        }
        .valida:invalid {
          border-color: #f44336;
        }

        .valida:placeholder-shown {
            border-color: #ddd;
        }
*/

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            nav ul {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .service-tabs {
                flex-direction: column;
            }

            .service-tab {
                padding: 0.8rem;
                border-bottom: none;
                border-right: 3px solid transparent;
            }

            .service-tab.active {
                border-bottom: none;
                border-right: 3px solid #ff5a5f;
            }

            .form-slide {
                padding: 1.5rem;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
		    .testimonial-carousel-container {
		        padding: 0 1rem;
		    }
		    
		    .carousel-control {
		        width: 35px;
		        height: 35px;
		    }
		    
		    .testimonial-card {
		        padding: 1.5rem;
		    }
            .page-header h1 {
                font-size: 2rem;
            }

            .section h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                height: 70vh;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .progress-steps {
                gap: 0.5rem;
            }

            .progress-step:not(:last-child)::after {
                width: 10px;
                left: 25px;
            }

            .form-btn {
                padding: 0.6rem 1rem;
                min-width: auto;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
		    .testimonial-author img {
		        width: 50px;
		        height: 50px;
		    }
		    
		    .testimonial-card p {
		        font-size: 1rem;
		    }
            .main-content {
                padding: 2rem 1rem;
            }

            .contact-form {
                padding: 1.5rem;
            }
        }