* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #f5f2eb;
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
        }

        /* Header mejorado */
        .header-top {
            background: linear-gradient(135deg, #1a1f27, #2c3e50);
            color: white;
            padding: 8px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 40px;
            align-items: center;
            font-size: 14px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-item img {
            width: 16px;
            height: 16px;
        }

        .main-header {
            background: linear-gradient(to right, #1a1f27, #f6e5bb);
            padding: 12px 0;
            position: fixed;
            top: 38px;
            width: 100%;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            font-family: 'Lobster', cursive;
            font-size: 2.5rem;
            color: #efb810;
            font-weight: bold;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            color: #1a1f27;
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
            padding: 10px 15px;
        }

        .nav-menu a:hover {
            color: #936b0a;
            transform: translateY(-2px);
        }

        .nav-menu a.active {
            color: #936b0a;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: #efb810;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

        /* Iconos sociales flotantes */
        .social-icons {
            position: fixed;
            top: 50%;
            left: 30px;
            transform: translateY(-50%);
            z-index: 1000;
            transition: left 0.3s ease;
        }

        .social-icons:hover {
            left: 10px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            margin: 10px 0;
            background: linear-gradient(135deg, #efb810, #936b0a);
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .social-icons a img {
            width: 24px;
            height: 24px;
            filter: brightness(0) invert(1);
        }

        /* Contenido principal */
        .main-content {
            margin-top: 100px;
            padding: 40px 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-title {
            text-align: center;
            font-size: 2.5rem;
            color: #1a1f27;
            margin-bottom: 20px;
            position: relative;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #efb810, #936b0a);
            border-radius: 2px;
        }

        .page-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.5;
        }

        /* Formulario */
        .form-container {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .form-section {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid #f0f0f0;
        }

        .form-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .section-title {
            font-size: 1.5rem;
            color: #1a1f27;
            margin-bottom: 25px;
            text-align: center;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, #efb810, #936b0a);
            border-radius: 2px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .form-grid-full {
            grid-column: 1 / -1;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-weight: 500;
            color: #1a1f27;
            font-size: 14px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #efb810;
            background: white;
            box-shadow: 0 0 0 3px rgba(239, 184, 16, 0.1);
        }

        .form-group input.error,
        .form-group select.error {
            border-color: #e74c3c;
            background: #fdf2f2;
        }

        .error-message {
            color: #e74c3c;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }

        .required {
            color: #e74c3c;
        }

        /* Progreso del formulario */
        .progress-bar {
            background: #f0f0f0;
            height: 6px;
            border-radius: 3px;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .progress-fill {
            background: linear-gradient(to right, #efb810, #936b0a);
            height: 100%;
            width: 25%;
            border-radius: 3px;
            transition: width 0.3s ease;
        }

        .step-indicator {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .step {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #999;
            font-size: 14px;
        }

        .step.active {
            color: #efb810;
            font-weight: 600;
        }

        .step.completed {
            color: #28a745;
        }

        .step-number {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 12px;
        }

        .step.active .step-number {
            background: #efb810;
            color: white;
        }

        .step.completed .step-number {
            background: #28a745;
            color: white;
        }

        /* Botones de navegación */
        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            gap: 20px;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #efb810, #936b0a);
            color: white;
            flex: 1;
            justify-content: center;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .btn-secondary {
            background: #6c757d;
            color: white;
            flex: 1;
            justify-content: center;
        }

        .btn-secondary:hover {
            background: #5a6268;
        }

        .btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Información adicional */
        .info-box {
            background: linear-gradient(135deg, #f6e5bb, #f5f2eb);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 30px;
            border-left: 5px solid #efb810;
        }

        .info-box h3 {
            color: #1a1f27;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .info-box p {
            color: #666;
            margin-bottom: 10px;
        }

        .info-box ul {
            color: #666;
            margin-left: 20px;
        }

        /* Footer igual al resto */
        footer {
            background: linear-gradient(135deg, #1a1f27, #2c3e50);
            color: white;
            padding: 60px 0 20px;
            margin-top: 80px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
        }

        .footer-logo {
            font-family: 'Lobster', cursive;
            font-size: 2rem;
            color: #efb810;
            margin-bottom: 20px;
        }

        .footer-description {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-section h3 {
            color: #efb810;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

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

        .footer-section ul li {
            margin-bottom: 10px;
            color: #ccc;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #efb810;
        }

        .footer-bottom {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #ccc;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 20px;
            }

            .nav-menu {
                gap: 15px;
            }

            .nav-menu a {
                font-size: 16px;
            }

            .contact-info {
                flex-direction: column;
                gap: 10px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-icons {
                left: 10px;
            }

            .form-container {
                padding: 25px;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .form-navigation {
                flex-direction: column;
            }

            .step-indicator {
                flex-wrap: wrap;
                gap: 10px;
            }
        }