@charset "utf-8";
/* CSS Document */
        * {
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        body {
            margin: 0;
            background: #a43f5f; /* fondo general */
        }

        .page {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px;
        }

        /* ===== PORTADA ===== */
        .card {
            width: 100%;
            max-width: 1100px;
            background: #8b0d3f;
            color: #ffffff;
            padding: 60px;
            border-radius: 6px 6px 0 0;
        }

        .card h1 {
            margin: 0;
            font-size: 36px;
            font-weight: 600;
        }

        .date {
            margin-top: 30px;
            font-weight: bold;
        }

        .description {
            margin-top: 20px;
            max-width: 650px;
            line-height: 1.6;
            font-size: 15px;
        }

        .white-strip {
            width: 100%;
            max-width: 1100px;
            background: #ffffff;
            padding: 30px 60px;
            display: flex;
            justify-content: flex-end;
            border-radius: 0 0 6px 6px;
        }

        .btn {
            background: #8b0d3f;
            color: #ffffff;
            border: none;
            padding: 14px 28px;
            font-size: 15px;
            border-radius: 6px;
            cursor: pointer;
        }

        .btn:hover {
            background: #a00040;
        }

        /* ===== FORMULARIO ===== */
        .form-container {
            display: none; /* 🔴 IMPORTANTE */
            width: 100%;
            max-width: 800px;
            background: #ffffff;
            padding: 50px;
            border-radius: 6px;
        }

        .form-container h2 {
            margin-top: 0;
            color: #333;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: bold;
            color: #333;
        }

        .form-group input,
		.form-group select{
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .card,
            .white-strip,
            .form-container {
                padding: 30px 25px;
            }

            .card h1 {
                font-size: 28px;
            }

            .white-strip {
                justify-content: center;
            }
        }
	.logo-header {
		width: 100%;
		padding: 20px 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.logo-header img {
		max-height: 70px; /* ajusta según tu logo */
		max-width: 90%;
	}
	span {
		color: red;
		}
	/* Texto seleccionado */
	.select2-container--default .select2-selection--single .select2-selection__rendered {
		color: #000 !important;
	}

	/* Texto dentro del desplegable */
	.select2-container--default .select2-results__option {
		color: #000 !important;
	}

	/* Opción resaltada al pasar el mouse */
	.select2-container--default .select2-results__option--highlighted {
		color: #000 !important;
		background-color: #f2f2f2;
	}
	.radio-group {
		display: flex;
		justify-content: flex-start; /* ⬅️ izquierda */
		align-items: center;
		gap: 20px;
		margin-top: 8px;
	}

	.radio-group label {
		display: flex;
		align-items: center;
		gap: 6px;
		cursor: pointer;
	}		